/* AI Content Academy Styles */

/* Reset and Base */
@font-face {
    font-family: 'Montserratarm'; /* Choose any name you like */
    src: url('/resources/fonts/Montserratarm-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Controls how the font renders while loading */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserratarm', -apple-system, Roboto, Helvetica, sans-serif;
    color: #FFFFFF;
    background: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a {
    color: #ea580c;
  }
  
  .academy-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  
  /* Header */
  .academy-header {
    width: 100%;
    height: 100px;
    padding: 31px 60px;
    background: rgba(5, 5, 5, 0.10);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  /* Desktop header - always at top */
  .academy-header-desktop {
    display: block;
  }
  
  /* Mobile header - hidden by default, shown after hero on mobile */
  .academy-header-mobile {
    display: none;
    z-index: 999999 !important;
    position: fixed !important;
    isolation: isolate !important;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .header-logo {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 50px;
  }
  
  .nav-link {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 12px;
    font-weight: 700;
    line-height: 16.5px;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    opacity: 0.7;
  }
  
  .header-btn {
    padding: 10px 34px;
    border-radius: 14px;
    background: #ea580c;
    box-shadow: 0 6px 66px 0 rgba(0, 0, 0, 0.25);
    /* color: #000000; */
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
  }
  
  .header-btn:hover {
    background: #ea580c;
    color: #FFFFFF;
  }
  
  /* Hero Section */
  .academy-hero-section {
    position: relative;
    width: 100%;
    min-height: 739px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.25) 100%), 
                linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.22) 100%), 
                url('main.png') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  .academy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
  }
  
  .academy-students-badge {
    position: absolute;
    top: 140px;
    left: 60px;
    right: auto;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 11px;
    border-radius: 999px;
    border: 1px solid rgba(221, 221, 221, 0.10);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(5px);
    z-index: 2;
  }
  
  .academy-stars {
    display: flex;
    align-items: center;
  }
  
  .academy-students-text {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .academy-hero-content {
    position: absolute;
    left: 60px;
    top: 218px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 500px;
    z-index: 2;
  }
  
  .academy-hero-title {
    /* color: rgba(255, 255, 255, 0.92); */
    font-size: 40px;
    font-weight: 400;
    /* line-height: 90.64px; */
    letter-spacing: -3.52px;
    text-transform: uppercase;
  }
  
  .academy-hero-subtitle {
    color: #FFF;
    
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .academy-hero-description {
    color: #FFF;
   
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
  }
  
  /* Hide hero header on desktop - only show on mobile */
  .academy-hero-header {
    display: none;
  }
  
  .academy-hero-cta {
    padding: 16px 62px;
    border-radius: 999px;
    background: #ea580c;
    border: none;
    /* color: #000000; */
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s, color 0.3s;
    width: fit-content;
  }
  
  .academy-hero-cta:hover {
    background: #ea580c;
    color: #FFFFFF;
    transform: translateY(-2px);
  }
  
  /* Course Content Section */
  .academy-content-section {
    width: 100%;
    padding: 60px 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%), 
                url('section2.png') lightgray 50% 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-content-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 38px;
    border-radius: 56px;
    border: 1px solid rgba(221, 221, 221, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
  }
  
  .academy-section-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-family: 'Montserratarm';
    font-size: 52px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -2.56px;
    text-transform: uppercase;
    margin-bottom: 42px;
  }
  
  .academy-course-topics {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .academy-topic-item {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
  }
  
  .academy-topic-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  
  .academy-topic-header {
    display: flex;
    padding: 24px 20px;
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }
  
  .academy-topic-item.active .academy-topic-header {
    background: rgba(255, 255, 255, 0.08);
  }
  
  .academy-topic-icon {
    width: 55.968px;
    height: 52px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 0.8px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .academy-topic-text {
    flex: 1;
    color: #FFF;
    font-family: 'Montserratarm', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .academy-topic-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  
  .academy-topic-item.active .academy-topic-arrow {
    transform: rotate(180deg);
  }
  
  .academy-topic-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    will-change: max-height;
  }
  
  .academy-topic-item.active .academy-topic-content {
    max-height: 1000px;
    padding: 0 20px 24px 20px;
  }
  
  .academy-topic-content-text {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 75px;
  }
  
  .academy-topic-description {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserratarm';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 77px;
    margin-top: 30px;
  }
  
  /* Who is this for Section */
  .academy-who-section {
    width: 100%;
    padding: 64px 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%), 
                url('section3.png') lightgray 50% 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-who-inner {
   max-width: 1440px;
    margin: 0 auto;
    padding: 48px 20px;
    border-radius: 56px;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    backdrop-filter: none;
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
  }
  
  .academy-who-header {
    margin-bottom: 32px;
    text-align: center;
    position: relative;
  }
  
  .academy-who-title {
    text-align: center;
    margin-bottom: 0;
  }
  
  .academy-carousel-nav {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
  }
  
  .academy-nav-btn {
    width: 50px;
    height: 46px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .academy-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
  }
  
  .academy-who-cards {
    display: flex;
    gap: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  
  .academy-who-cards-container {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  
  /* Medium screens (tablets): show 2 cards */
  @media (min-width: 769px) and (max-width: 1250px) {
    .academy-who-cards {
        width: calc((386px * 2) + (10px * 1));
        max-width: calc((386px * 2) + (10px * 1));
    }
  }

  /* Large desktop: show 3 cards - JS will set exact width */
  @media (min-width: 1251px) {
    .academy-who-cards {
        width: calc((386px * 3) + (10px * 2));
        max-width: calc((386px * 3) + (10px * 2));
    }
  }
  
  .academy-who-card {
    width: 386px;
    height: auto;
    min-height: 500px;
    border-radius: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(52, 71, 178, 0.4) 0%, rgba(79, 70, 178, 0.5) 50%, rgba(52, 71, 178, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    flex-direction: column;
  }

  .academy-who-card-overlay {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  .academy-who-card-title {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserratarm';
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    text-align: left;
    order: 1;
  }

  .academy-who-card-images {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    position: relative;
    flex-shrink: 0;
    order: 2;
  }

  .academy-who-card-img {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
  }

  .academy-who-card-img-1 {
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 1;
  }

  .academy-who-card-img-2 {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
  }

  .academy-who-card-number {
    display: none;
  }

  .academy-who-card-desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserratarm';
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    order: 3;
    flex: 1;
  }
  
  /* Instructor Section */
  .academy-instructor-section {
    width: 100%;
    padding: 64px 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%), 
                url('section4.png') lightgray 50% 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-instructor-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 38px 48px 20px;
    border-radius: 56px;
    border: 1px solid rgba(221, 221, 221, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
  }
  
  .academy-instructor-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
  }
  
  .academy-instructor-content {
    display: flex;
    gap: 84px;
    align-items: flex-start;
  }
  
  .academy-instructor-images {
    display: flex;
    flex-direction: column;
    width: 415px;
    height: 422px;
    position: relative;
    flex-shrink: 0;
  }
  
  .academy-instructor-img {
    width: 286px;
    height: 330px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
  }
  
  .academy-instructor-img-1 {
    position: absolute;
    left: 10px;
    bottom: 80px;
    z-index: 1;
  }
  
  .academy-instructor-img-2 {
    width: 286px;
    height: 330px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
  }
  
  .academy-instructor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 10px;
  }
  
  .academy-instructor-name {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .academy-instructor-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .academy-instructor-stat {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }
  
  .academy-instructor-desc,
  .academy-instructor-note {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }
  
  /* How it Works Section */
  .academy-how-section {
    position: relative;
    width: 100%;
    padding: 60px 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%), 
                url('section5.png') lightgray 50% 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-how-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.22;
    z-index: 1;
  }
  
  .academy-how-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: stretch;
  }
  
  .academy-how-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .academy-how-left .academy-section-title {
    text-align: left;
    margin-bottom: 0;
  }
  
  .academy-how-desc {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 29.7px;
    padding-top: 30px;
  }
  
  .academy-how-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
  }
  
    .academy-how-feature {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding-top: 30px;
    }
    
    @media (max-width: 768px) {
        .academy-how-feature {
            gap: 12px;
        }
        
        .academy-how-feature-icon {
            width: 44px;
            height: 44px;
            padding: 10px;
            flex-shrink: 0;
        }
        
        .academy-how-feature-label {
            font-size: 11px;
            line-height: 16px;
        }
        
        .academy-how-feature-text {
            font-size: 12px;
            line-height: 18px;
        }
    }
  
  .academy-how-feature-icon {
    width: 59.9px;
    height: 56px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 0.8px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .academy-how-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .academy-how-feature-label {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 1.04px;
    text-transform: uppercase;
  }
  
  .academy-how-feature-text {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 21.45px;
  }
  
  .academy-how-right {
    width: 531px;
    display: flex;
    flex-direction: column;
  }
  
  .academy-outcome-card {
    width: 100%;
    padding: 35px 37px;
    border-radius: 48px;
    border: 0.8px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 22px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
  }
  
  .academy-outcome-card::before {
    content: '';
    position: absolute;
    top: -110px;
    left: -105px;
    width: 742px;
    height: 778px;
    opacity: 0.9;
    background: radial-gradient(50% 50% at 30% 20%, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.00) 55%), 
                radial-gradient(50% 50% at 80% 30%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.00) 60%);
    filter: blur(9px);
    pointer-events: none;
  }
  
  .academy-outcome-title {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserratarm';
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .academy-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.08);
    flex: 1;
  }
  
  .academy-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 23px;
  }
  
  .academy-outcome-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .academy-outcome-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .academy-outcome-name {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserratarm';
    font-size: 16px;
    font-weight: 900;
    line-height: 24px;
  }
  
  .academy-outcome-desc {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 21.45px;
  }
  
  .academy-outcome-stats {
    display: flex;
    align-items: center;
    gap: 17.114px;
  }
  
  .academy-outcome-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .academy-stat-number {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 63px;
    letter-spacing: -1.26px;
  }
  
  .academy-stat-label {
    color: rgba(255, 255, 255, 0.48);
    font-family: 'Montserratarm';
    font-size: 10px;
    font-weight: 900;
    line-height: 15px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  .academy-stat-divider {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, 0.10);
  }
  
  /* Reviews Section */
  .academy-reviews-section {
    position: relative;
    width: 100%;
    padding: 64px 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.06) 50%, rgba(0, 0, 0, 0.50) 100%), 
                linear-gradient(180deg, rgba(5, 5, 5, 0.00) 0%, rgba(5, 5, 5, 0.65) 100%), 
                url('section6.png') lightgray -711px -437px / 160.583% 199.516% no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .academy-reviews-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 8px 56px;
    border-radius: 56px;
    border: 1px solid rgba(221, 221, 221, 0.10);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
  }
  
  .academy-reviews-header {
    text-align: center;
    margin-bottom: 54px;
    position: relative;
  }
  
  .academy-reviews-header > div {
    text-align: center;
  }
  
  .academy-reviews-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: 12px;
  }
  
  .academy-reviews-subtitle {
    color: #FFF;
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
  }
  
  .academy-reviews-grid {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    max-width: 1440px;
    margin: 0 auto 24px;
    width: 100%;
  }
  
  /* Medium screens (tablets): show 2 cards */
  @media (min-width: 769px) and (max-width: 1250px) {
    .academy-reviews-grid {
        width: calc((380px * 2) + (10px * 1));
        max-width: calc((380px * 2) + (10px * 1));
    }
  }

  /* Large desktop: show 3 cards */
  @media (min-width: 1251px) {
    .academy-reviews-grid {
        width: calc((387px * 3) + (10px * 2));
        max-width: calc((387px * 3) + (10px * 2));
    }
  }
  
  .academy-reviews-grid-container {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  
  .academy-review-card {
    min-width: 387px;
    width: 387px;
    height: 262px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .academy-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .academy-review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D9D9D9;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .academy-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .academy-review-user {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .academy-review-name {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .academy-review-stars {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .academy-review-text {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
  }
  
  /* Student Work Section */
  .academy-work-section {
    position: relative;
    width: 100%;
    padding: 64px 120px;
    background-size: cover;
    background-position: center;
  }
  
  .academy-work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .academy-work-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 35px;
  }
  
  .academy-work-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: 12px;
  }
  
  .academy-work-subtitle {
    color: #FFF;
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
  }
  
  .academy-work-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    overflow: hidden;
    width: 100%;
  }
  
  .academy-work-grid-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  
  .academy-work-card {
    position: relative;
    min-width: 334px;
    width: 334px;
    height: 520px;
    border-radius: 22px;
    border: 1px solid #FFF;
    background: #130E25;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .academy-work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(19, 14, 37, 0.00) 62.59%, #130E25 93.39%, #130E25 99.15%);
    z-index: 1;
  }
  
  .academy-work-play {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 80px;
    border: 1.129px solid rgba(255, 255, 255, 0.10);
    background: rgba(3, 0, 30, 0.30);
    backdrop-filter: blur(24.839px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
  }
  
  .academy-work-play:hover {
    background: rgba(3, 0, 30, 0.50);
    transform: scale(1.1);
  }
  
  .academy-work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px 20px;
    z-index: 2;
  }
  
  .academy-work-name {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
  }
  
  /* Welcome Section */
  .academy-welcome-section {
    position: relative;
    width: 100%;
    padding: 64px 60px;
    background-size: cover;
    background-position: center;
  }
  
  .academy-welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .academy-welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 35px;
  }
  
  .academy-welcome-content > div {
    text-align: center;
  }
  
  .academy-welcome-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    letter-spacing: -2.56px;
    margin-bottom: 12px;
  }
  
  .academy-welcome-subtitle {
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }
  
  .academy-welcome-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto 24px;
    width: 100%;
  }
  
  /* Medium screens (tablets): show 2 cards */
  /* Medium screens (tablets): show 2 cards */
  @media (min-width: 769px) and (max-width: 1250px) {
    .academy-welcome-grid {
        width: calc((386px * 2) + (10px * 1));
        max-width: calc((386px * 2) + (10px * 1));
    }
  }

  /* Large desktop: show 3 cards */
  @media (min-width: 1251px) {
    .academy-welcome-grid {
        width: calc((392px * 3) + (10px * 2));
        max-width: calc((392px * 3) + (10px * 2));
    }
  }
  
  .academy-welcome-grid-container {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  
  .academy-welcome-card {
    position: relative;
    min-width: 392px;
    width: 392px;
    height: 496px;
    padding: 0;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .academy-welcome-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 59.68%, rgba(0, 0, 0, 0.66) 100%);
    z-index: 1;
  }
  
    .academy-welcome-card-number {
        position: absolute;
        top: auto;
        bottom: 80px;
        right: 20px;
        color: rgba(255, 255, 255, 0.50);
        font-family: 'Montserratarm', Arial, sans-serif;
        font-size: 56px;
        font-weight: 300;
        line-height: 56px;
        letter-spacing: -1px;
        z-index: 2;
    }
  
  .academy-welcome-card-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .academy-welcome-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
  }
  
  .academy-welcome-card-title {
    position: absolute;
    bottom: 60px;
    left: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.3px;
    z-index: 2;
  }
  
  .academy-welcome-card-desc {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.80);
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    z-index: 2;
  }
  
  /* Pricing Section */
  .academy-pricing-section {
    position: relative;
    width: 100%;
    padding: 64px 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.70) 100%), 
                linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.62) 100%), 
                url('section8.png') lightgray -106px -63px / 120.568% 106.296% no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .academy-pricing-content {
    position: relative;
    z-index: 2;
  }
  
  .academy-pricing-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-family: 'Montserratarm';
    font-size: 64px;
    font-weight: 400;
    line-height: 66px;
    letter-spacing: -2.56px;
    text-transform: uppercase;
    margin-bottom: 42px;
  }
  
  .academy-pricing-grid {
    display: flex;
    gap: 71px;
    justify-content: center;
    align-items: stretch;
  }
  
  .academy-pricing-card {
    width: 468px;
    padding: 0 1px;
    border-radius: 56px;
    border: 0.8px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 22px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .academy-pricing-card-inner {
    width: 100%;
    height: 100%;
    padding: 35px 30px;
    opacity: 0.95;
    background: radial-gradient(50% 50% at 20% 15%, rgba(70, 214, 255, 0.12) 0%, rgba(0, 0, 0, 0.00) 60%), 
                radial-gradient(50% 50% at 85% 35%, rgba(160, 110, 255, 0.12) 0%, rgba(0, 0, 0, 0.00) 62%), 
                linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.12) 100%);
    display: flex;
    flex-direction: column;
  }
  
  .academy-pricing-name {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-family: 'Montserratarm';
    font-size: 26px;
    font-weight: 400;
    line-height: 28.6px;
    letter-spacing: -0.52px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .academy-pricing-label {
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-family: 'Montserratarm';
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .academy-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
    min-height: 0;
  }
  
  .academy-pricing-item {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
  }
  
  .academy-pricing-item-text {
    flex: 1;
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
  }
  
  .academy-pricing-item-text-light {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
  }
  
    .academy-pricing-deadline {
        color: #FFF;
        text-align: center;
        font-family: 'Montserratarm';
        font-size: 18px;
        font-weight: 700;
        line-height: 16px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
  
  .academy-pricing-price {
    color: #FFF;
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 42px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .academy-pricing-price-old {
    color: rgba(255, 255, 255, 0.70);
    position: relative;
  }
  
  .academy-pricing-price-old::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #FFF;
  }
  
  .academy-pricing-btn {
    width: 202px;
    height: 50px;
    padding: 16px 62px;
    border-radius: 999px;
    background: #ea580c;
    border: none;
    /* color: #000000; */
    text-align: center;
    font-family: 'Montserratarm', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s, color 0.3s;
    margin: 0 auto;
    display: block;
  }
  
  .academy-pricing-btn:hover {
    background: #ea580c;
    color: #FFFFFF;
    transform: translateY(-2px);
  }
  
  /* FAQ Section */
  .academy-faq-section {
    position: relative;
    width: 100%;
    padding: 64px 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.70) 100%), 
                linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.62) 100%), 
                url('287-01.png') lightgray 50% 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .academy-faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .academy-faq-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 46px 28px;
    border-radius: 56px;
    border: 0.8px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 22px 80px 0 rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
  }
  
  .academy-faq-title {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-family: 'Montserratarm';
    font-size: 64px;
    font-weight: 400;
    line-height: 66px;
    letter-spacing: -2.56px;
    text-transform: uppercase;
    margin-bottom: 42px;
  }
  
  .academy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .academy-faq-item {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
  }
  
  .academy-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  
  .academy-faq-item.active {
    background: rgba(255, 255, 255, 0.08);
  }
  
  .academy-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 10px;
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  
  .academy-faq-question svg {
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  
  .academy-faq-item.active .academy-faq-question svg {
    transform: rotate(180deg);
  }
  
  .academy-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 10px;
    will-change: max-height;
  }
  
  .academy-faq-item.active .academy-faq-answer {
    max-height: 1000px;
    padding: 0 10px 22px 10px;
  }
  
  .academy-faq-answer-text {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserratarm';
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 30px;
  }
  
  /* Dots */
  .academy-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  
  .academy-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0.8px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
  }
  
  .academy-dot-active {
    width: 28px;
    border: 0.8px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(70, 214, 255, 0.85) 0%, rgba(160, 110, 255, 0.75) 100%);
  }
  
  /* Footer */
  .academy-footer {
    width: 100%;
    height: 100px;
    padding: 32px 60px;
    background: rgba(0, 0, 0, 0.00);
  }
  
  .academy-footer-text {
    color: #FFF;
    font-family: 'Montserratarm';
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  /* Responsive Design */
  /* Tablet/Desktop - carousel button positioning */
  @media (min-width: 769px) {
    .academy-who-header,
    .academy-reviews-header,
    .academy-welcome-content {
        padding-bottom: 60px;
    }
  }
  
  /* Medium screens (tablets): 2 cards - adjust button position */
  @media (min-width: 769px) and (max-width: 1250px) {
    .academy-who-header .academy-carousel-nav {
        position: absolute;
        right: calc(50% - 396px);
        bottom: 0;
    }
    
    .academy-reviews-header .academy-carousel-nav {
        position: absolute;
        right: calc(50% - 390px);
        bottom: 0;
    }
    
    .academy-welcome-content .academy-carousel-nav {
        position: absolute;
        right: calc(50% - 396px);
        bottom: 0;
    }
  }
  
  /* Large desktop: 3 cards - original button position */
  @media (min-width: 1251px) {
    .academy-who-header .academy-carousel-nav {
        position: absolute;
        right: 121px;
        bottom: 0;
    }
    
    .academy-reviews-header .academy-carousel-nav {
        position: absolute;
        right: 122px;
        bottom: 0;
    }
    
    .academy-welcome-content .academy-carousel-nav {
        position: absolute;
        right: 121px;
        bottom: 0;
    }
  }
  
  /* Tablet responsive styles (769px - 1200px) */
  @media (min-width: 769px) and (max-width: 1200px) {
    .academy-header {
        height: 80px;
        padding: 20px 30px;
    }
    
    .header-inner {
        gap: 50px;
        padding: 0 10px;
    }
    
    .header-logo {
        font-size: 10px;
        line-height: 14px;
    }
    
    .header-nav {
        gap: 25px;
        margin-right: 15px;
    }
    
    .nav-link {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1.2px;
    }
    
    .header-btn {
        padding: 8px 24px;
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1.4px;
    }
    
    .academy-container {
        padding: 0 30px;
    }
    
    .academy-section-title {
        font-size: 42px;
        line-height: 46px;
    }
    
    .academy-pricing-title,
    .academy-faq-title {
        font-size: 48px;
        line-height: 52px;
    }
  }
  
  @media (max-width: 1200px) {
    /* Enable carousel overflow for all carousel sections */
    .academy-who-cards,
    .academy-reviews-grid,
    .academy-welcome-grid {
        overflow: hidden;
    }
    
    .academy-who-cards-container,
    .academy-reviews-grid-container,
    .academy-work-grid-container,
    .academy-welcome-grid-container {
        flex-wrap: nowrap;
    }
    
    .academy-pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .academy-how-grid {
        flex-direction: column;
    }
    
    .academy-how-right {
        width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    /* Prevent horizontal scroll */
    * {
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    .academy-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    /* Hide desktop header on mobile */
    .academy-header-desktop {
        display: none !important;
    }
    
    /* Show and style mobile header after hero CTA button */
    .academy-header-mobile {
        display: block !important;
        padding: 0;
        height: 38px;
        width: calc(100% - 32px);
        max-width: 368px;
        position: fixed !important;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 999999 !important;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 14px;
        border: 1px solid rgba(225, 234, 239, 0.2);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        will-change: transform, opacity;
        isolation: isolate;
    }
    
    .academy-header-mobile.navbar-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 999999 !important;
    }
    
    .academy-header-mobile.navbar-fixed {
        z-index: 999999 !important;
    }
    
    /* Who section carousel mobile - flexbox-based solution */
    .academy-who-cards {
        overflow: hidden;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        position: relative;
    }
    
    .academy-who-cards-container {
        display: flex;
        gap: 16px;
        padding: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
    }
    
    .academy-who-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .academy-who-title {
        font-size: 20px;
        line-height: 26px;
        margin: 0;
        font-weight: 700;
        text-align: center;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .academy-who-subtitle {
        font-size: 14px;
        line-height: 20px;
        opacity: 0.8;
        margin: 0;
    }
    
    .academy-header-mobile .header-inner {
        display: flex;
        flex-direction: row;
        gap: 6px;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        height: 38px;
        padding: 4px 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .academy-header-mobile .header-inner::-webkit-scrollbar {
        display: none;
    }
    
    .academy-header-mobile .header-logo {
        display: none; /* Hide in bottom nav bar */
    }
    
    
    .academy-header-mobile .header-nav {
        display: flex;
        gap: 12px;
        padding: 0;
        justify-content: center;
        flex: 1;
        overflow: visible;
        align-items: center;
    }
    
    .academy-header-mobile .nav-link {
        white-space: nowrap;
        font-size: 8px;
        padding: 2px 0;
        flex-shrink: 0;
        letter-spacing: 0.2px;
        font-weight: 600;
        transition: opacity 0.3s ease;
        opacity: 0.95;
        text-transform: uppercase;
        line-height: 1.1;
        color: #FFF;
        text-decoration: none;
    }
    
    .academy-header-mobile .nav-link:hover,
    .academy-header-mobile .nav-link.active {
        opacity: 0.7;
    }
    
    .academy-header-mobile .header-btn {
        padding: 8px 12px;
        font-size: 8px;
        font-weight: 700;
        border-radius: 14px;
        position: static;
        flex-shrink: 0;
        background: #ea580c;
        /* color: #000000; */
        letter-spacing: 0.2px;
        border: none;
        height: 30px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.3s, color 0.3s;
    }
    
    .academy-header-mobile .header-btn:hover {
        background: #ea580c;
        color: #FFFFFF;
    }
    
    /* Hero Section Mobile */
    .academy-hero-section {
        min-height: 300px;
        height: 596px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.25) 100%),
                    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.22) 100%),
                    url('mobile-main.png') lightgray 50% / cover no-repeat;
        background-size: cover;
        background-position: center;
        overflow: visible;
    }
    
    .academy-hero-header {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 24px;
        z-index: 2;
    }
    
    .academy-hero-logo {
        color: #FFF;
        font-family: 'Montserratarm';
        font-size: 10px;
        font-weight: 700;
        line-height: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        opacity: 0.92;
    }
    
    .academy-hero-logo br {
        display: block;
    }
    
    .academy-hero-menu-btn {
        display: none !important;
    }
    
    .academy-students-badge {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: fit-content;
        align-self: flex-start;
        margin: 0 0 16px 0;
        padding: 10px;
        gap: 11px;
        border-radius: 22px;
        border: 1px solid rgba(221, 221, 221, 0.1);
        background: rgba(255, 255, 255, 0.04);
        z-index: 2;
    }
    
    .academy-hero-content {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: left;
        z-index: 2;
        flex: 1;
        justify-content: flex-end;
        margin-top: auto;
        align-items: flex-start;
        overflow: visible;
    }
    
    .academy-hero-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.8px;
        text-align: left;
        font-weight: 700;
        margin-bottom: 4px;
        width: 100%;
    }
    
    .academy-hero-subtitle {
        font-size: 13px;
        line-height: 18px;
        text-align: left;
        margin-bottom: 0;
        width: 100%;
    }
    
    .academy-hero-description {
        font-size: 12px;
        line-height: 17px;
        text-align: left;
        margin-bottom: 0;
        width: 100%;
    }
    
    .academy-hero-cta {
        /* width: 200px; */
        max-width: 200px;
        height: 50px;
        margin-top: 10px;
        font-size: 14px;
        padding: 16px 50px;
        align-self: flex-start;
        border-radius: 25px;
        background: #ea580c;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s, color 0.3s;
    }
    
    .academy-hero-cta:hover {
        background: #ea580c;
        color: #FFFFFF;
    }
    
    /* Sections Mobile - ensure they stay below navbar */
    .academy-content-section,
    .academy-who-section,
    .academy-instructor-section,
    .academy-how-section,
    .academy-reviews-section,
    .academy-work-section,
    .academy-welcome-section {
        padding: 32px 0 80px 0;
        position: relative;
        z-index: 1 !important;
    }
    
    .academy-pricing-section,
    .academy-faq-section {
        padding: 32px 0 80px 0;
        position: relative;
        z-index: 1 !important;
    }
    
    /* Ensure mobile navbar is always on top - highest specificity */
    body .academy-header-mobile,
    html .academy-header-mobile,
    body .academy-header-mobile.navbar-visible,
    html .academy-header-mobile.navbar-visible,
    body .academy-header-mobile.navbar-fixed,
    html .academy-header-mobile.navbar-fixed {
        z-index: 999999 !important;
        position: fixed !important;
        isolation: isolate;
    }
    
    /* Ensure hero section doesn't trap navbar */
    .academy-hero-section {
        z-index: 1 !important;
        isolation: auto;
    }
    
    .academy-hero-content {
        z-index: 1 !important;
        isolation: auto;
    }
    
    .academy-footer {
        padding-bottom: 80px;
    }
    
    /* All sections use same container alignment - 10px padding to match cards */
    .academy-pricing-section .academy-container,
    .academy-faq-section .academy-container,
    .academy-content-section .academy-container,
    .academy-instructor-section .academy-container,
    .academy-how-section .academy-container,
    .academy-reviews-section .academy-container,
    .academy-welcome-section .academy-container,
    .academy-work-section .academy-container,
    .academy-who-section .academy-container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .academy-who-section {
        padding: 32px 0 80px 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .academy-content-inner,
    .academy-who-inner,
    .academy-instructor-inner,
    .academy-reviews-inner {
        padding: 24px 0;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 14px;
        border: 1px solid rgba(221, 221, 221, 0.1);
        backdrop-filter: blur(5px);
        box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .academy-who-inner {
        margin: 0;
        padding: 24px 16px 32px 16px;
        display: flex;
        flex-direction: column;
    }
    
    .academy-footer {
        padding: 32px 16px 80px 16px;
    }
    
    .academy-section-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 700;
        letter-spacing: -0.4px;
    }
    
    .academy-content-inner,
    .academy-who-inner,
    .academy-instructor-inner,
    .academy-reviews-inner {
        padding: 24px 0;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 14px;
        border: 1px solid rgba(221, 221, 221, 0.1);
        backdrop-filter: blur(5px);
        box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .academy-who-inner {
        margin: 0;
        padding: 24px 16px 32px 16px;
        display: flex;
        flex-direction: column;
    }
    
    .academy-faq-inner {
        padding: 24px 16px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 14px;
        border: 1px solid rgba(221, 221, 221, 0.1);
        backdrop-filter: blur(5px);
        box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.62);
    }
    
    .academy-who-header,
    .academy-reviews-header,
    .academy-welcome-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-bottom: 0 !important;
        padding-left: 16px;
        padding-right: 16px;
        position: relative;
    }
    
    .academy-work-section .academy-container {
        padding: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .academy-work-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .academy-who-header .academy-section-title,
    .academy-reviews-header .academy-section-title,
    .academy-welcome-content .academy-section-title,
    .academy-work-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .academy-reviews-subtitle,
    .academy-welcome-subtitle {
        width: 100%;
        text-align: center;
    }
    
    .academy-carousel-nav {
        justify-content: right;
        margin-top: 0;
        gap: 16px;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        display: flex;
    }
    
    .academy-instructor-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .academy-instructor-section .academy-container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .academy-instructor-inner {
        margin: 0;
        padding: 24px 16px 32px 16px;
        display: flex;
        flex-direction: column;
    }
    
    .academy-instructor-info {
        order: 1;
        width: 100%;
    }
    
    .academy-instructor-images {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 8px;
        gap: 16px;
    }
    
    .academy-instructor-img-1 {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 240px;
        border-radius: 12px;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .academy-instructor-img-2 {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 240px;
        border-radius: 12px;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .academy-instructor-name {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
        text-align: left;
        font-weight: 600;
    }
    
    .academy-instructor-stat {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 14px;
        font-weight: 700;
    }
    
    .academy-instructor-bio {
        gap: 14px;
        margin-bottom: 0;
    }
    
    .academy-instructor-desc {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    
    .academy-instructor-note {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
    }
    
    .academy-instructor-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
        font-weight: 700;
        text-align: center;
    }
    
    .academy-instructor-text {
        font-size: 13px;
        line-height: 20px;
        opacity: 0.85;
        margin-bottom: 16px;
    }
    
    .academy-instructor-stats {
        gap: 12px;
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .academy-instructor-stat {
        background: none;
        padding: 0;
    }
    
    .academy-instructor-stat-number {
        font-size: 28px;
        line-height: 36px;
        font-weight: 700;
        margin-bottom: 4px;
    }
    
    .academy-instructor-stat-label {
        font-size: 12px;
        line-height: 18px;
        opacity: 0.8;
    }
    
    .academy-who-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        flex-grow: 0;
        height: auto;
        min-height: 520px;
        border-radius: 32px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(58, 64, 255, 0.15) 0%, rgba(95, 56, 245, 0.25) 50%, rgba(58, 64, 255, 0.15) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .academy-who-card-overlay {
        position: static;
        padding: 0;
        background: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
    }

    .academy-who-card-number {
        display: none;
    }

    .academy-who-card-images {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 330px;
        position: relative;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .academy-who-card-img {
        width: 100%;
        height: 280px;
        border-radius: 16px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

    .academy-who-card-img-1 {
        position: absolute;
        left: 35px;
        bottom: 35px;
        z-index: 1;
        width: calc(100% - 20px);
        height: 280px;
    }

    .academy-who-card-img-2 {
        width: 100%;
        height: 280px;
        border-radius: 16px;
        position: relative;
        z-index: 2;
        display: block;
    }

    .academy-who-card-title {
        color: rgba(255, 255, 255, 0.95);
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        margin: 0;
        order: 1;
        text-align: center;
    }

    .academy-who-card-desc {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        margin: 0;
        order: 3;
        flex: 1;
    }
    
    .academy-review-card {
        min-width: 324px;
        width: 324px;
        max-width: 324px;
        flex-shrink: 0;
        flex-grow: 0;
        border-radius: 16px;
        padding: 20px;
    }
    
    .academy-work-card {
        width: 324px;
        min-width: 324px;
        max-width: 324px;
        flex-shrink: 0;
        flex-grow: 0;
        height: auto;
        min-height: 400px;
        border-radius: 16px;
    }
    
    .academy-welcome-card {
        width: 324px;
        min-width: 324px;
        max-width: 324px;
        flex-shrink: 0;
        flex-grow: 0;
        height: auto;
        min-height: 380px;
        border-radius: 24px;
    }
    
    .academy-welcome-card-img {
        border-radius: 24px;
    }
    
    /* Carousel containers - flexbox-based solution for mobile */
    .academy-reviews-grid,
    .academy-work-grid,
    .academy-welcome-grid,
    .academy-who-cards {
        overflow: hidden;
        margin: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        position: relative;
    }
    
    .academy-who-cards-container {
        display: flex;
        gap: 16px;
        padding: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
    }
    
    .academy-reviews-grid-container,
    .academy-work-grid-container,
    .academy-welcome-grid-container {
        display: flex;
        gap: 16px;
        padding-left: 6px;
        padding-right: 6px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
    }
    
    /* Reviews Section Mobile */
    .academy-reviews-section {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.06) 50%, rgba(0, 0, 0, 0.50) 100%), 
                    linear-gradient(180deg, rgba(5, 5, 5, 0.00) 0%, rgba(5, 5, 5, 0.65) 100%), 
                    url('section6mobile.png') lightgray 50% 50% / cover no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .academy-reviews-title,
    .academy-welcome-title,
    .academy-work-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .academy-reviews-subtitle,
    .academy-welcome-subtitle {
        font-size: 11px;
        line-height: 16px;
        opacity: 0.8;
        margin-bottom: 20px;
    }
    
    .academy-work-section {
        padding: 40px 0;
    }
    
    .academy-work-grid {
        margin-bottom: 24px;
    }
    
    .academy-pricing-grid {
        gap: 24px;
        flex-direction: column;
    }
    
    .academy-pricing-card {
        width: 100%;
        max-width: none;
    }
    
    .academy-pricing-card-inner {
        padding: 0;
        background: none;
    }
    
    .academy-pricing-list {
        margin: 24px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .academy-pricing-item {
        display: flex;
        gap: 12px;
    }
    
    .academy-pricing-item svg {
        flex-shrink: 0;
        margin-top: 2px;
        width: 16px !important;
        height: 16px !important;
    }
    
    .academy-pricing-item-text {
        font-size: 11px;
        line-height: 18px;
        opacity: 0.9;
    }
    
    /* Topic Items Mobile */
    .academy-topic-item {
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        overflow: hidden;
    }
    
    .academy-topic-item:first-child {
        margin-top: 0;
    }
    
    .academy-topic-header {
        padding: 18px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
    }
    
    .academy-topic-icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 10px;
        border-radius: 12px;
        border: 0.8px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .academy-topic-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .academy-topic-text {
        font-size: 13px;
        line-height: 18px;
        flex: 1;
        font-weight: 500;
    }
    
    .academy-topic-arrow {
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .academy-topic-item.active .academy-topic-arrow {
        transform: rotate(180deg);
    }
    
    .academy-topic-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: max-height;
    }
    
    .academy-topic-item.active .academy-topic-content {
        max-height: 1000px;
    }
    
    .academy-topic-content-text {
        font-size: 12px;
        line-height: 18px;
        padding: 0 16px 16px 52px;
        opacity: 0.8;
    }
    
    .academy-topic-description {
        font-size: 12px;
        line-height: 18px;
        padding: 0 16px 20px 16px;
        opacity: 0.8;
        margin-top: 30px;
    }
    
    /* How Section Mobile */
    .academy-how-section {
        background: url('287-03.png') lightgray 50% 50% / cover no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .academy-how-grid {
        gap: 24px;
        flex-direction: column;
    }
    
    .academy-how-left,
    .academy-how-right {
        width: 100%;
    }
    
    .academy-how-section .academy-container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .academy-how-desc {
        font-size: 12px;
        line-height: 18px;
    }
    
    /* Outcome Card Mobile */
    .academy-outcome-card {
        padding: 24px 20px;
        border-radius: 24px;
    }
    
    .academy-outcome-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    
    .academy-outcome-item {
        gap: 12px;
    }
    
    .academy-outcome-item svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .academy-outcome-name {
        font-size: 13px;
        line-height: 18px;
    }
    
    .academy-outcome-desc {
        font-size: 11px;
        line-height: 16px;
    }
    
    .academy-stat-number {
        font-size: 28px;
        line-height: 36px;
    }
    
    .academy-stat-label {
        font-size: 9px;
        line-height: 14px;
    }
    
    .academy-how-step {
        padding: 16px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 12px;
    }
    
    .academy-how-step-number {
        font-size: 14px;
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    
    .academy-how-step-text {
        font-size: 14px;
        line-height: 20px;
        opacity: 0.9;
    }
    
    /* FAQ Mobile */
    .academy-faq-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -1px;
        margin-bottom: 24px;
    }
    
    .academy-faq-item {
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }
    
    .academy-faq-question {
        font-size: 13px;
        line-height: 20px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
    }
    
    .academy-faq-question svg {
        flex-shrink: 0;
        transition: transform 0.3s ease;
        opacity: 0.8;
    }
    
    .academy-faq-item.active .academy-faq-question svg {
        transform: rotate(180deg);
    }
    
    .academy-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: max-height;
    }
    
    .academy-faq-item.active .academy-faq-answer {
        max-height: 1000px;
    }
    
    .academy-faq-answer-text {
        font-size: 11px;
        line-height: 17px;
        padding: 0 16px 14px 16px;
        opacity: 0.85;
        margin-top: 30px;
    }
    
    /* Pricing Mobile */
    .academy-pricing-title {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -0.8px;
        margin-bottom: 20px;
    }
    
    .academy-pricing-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .academy-pricing-card-inner {
        padding: 0;
        background: none;
    }
    
    .academy-pricing-name {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    
    .academy-pricing-price {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .academy-pricing-btn {
        padding: 14px 36px;
        font-size: 13px;
        border-radius: 30px;
        font-weight: 700;
        width: 100%;
    }
    
    /* Navigation Buttons Mobile */
    .academy-carousel-nav {
        gap: 16px;
    }
    
    .academy-nav-btn {
        width: 46px;
        height: 46px;
        padding: 11px;
        touch-action: manipulation;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(7px);
    }
    
    .academy-nav-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .academy-nav-btn:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.95);
    }
    
    /* Dots Mobile */
    .academy-dots {
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        padding: 0 20px;
    }
    
    .academy-dot {
        width: 8px;
        height: 8px;
        touch-action: manipulation;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .academy-dot-active {
        width: 24px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.92);
    }
    
    /* Footer Mobile */
    .academy-footer {
        padding: 40px 20px 30px;
    }
    
    .academy-footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .academy-footer-logo {
        font-size: 11px;
        line-height: 15px;
        max-width: 200px;
    }
    
    .academy-footer-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .academy-footer-link {
        font-size: 12px;
    }
    
    .academy-footer-socials {
        gap: 16px;
    }
    
    .academy-footer-social svg {
        width: 20px;
        height: 20px;
    }
    
    /* Card specific styles */
    .academy-work-card img,
    .academy-welcome-card img,
    .academy-who-card img {
        max-width: 100%;
        object-fit: cover;
    }
    
    .academy-who-card-content,
    .academy-work-card-content {
        padding: 20px;
    }
    
    .academy-who-card-title,
    .academy-work-card-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .academy-who-card-text,
    .academy-work-card-text {
        font-size: 13px;
        line-height: 20px;
        opacity: 0.85;
    }
    
    .academy-review-name {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .academy-review-text {
        font-size: 12px;
        line-height: 18px;
        opacity: 0.85;
    }
    
    /* Ensure no text overflow */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Section backgrounds - prevent overflow */
    .academy-hero-section,
    .academy-content-section,
    .academy-who-section,
    .academy-instructor-section,
    .academy-how-section,
    .academy-reviews-section,
    .academy-work-section,
    .academy-welcome-section,
    .academy-pricing-section,
    .academy-faq-section {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Better spacing for mobile sections */
    .academy-how-section .academy-container,
    .academy-pricing-section .academy-container,
    .academy-faq-section .academy-container {
        padding: 0 16px;
    }
    
    /* Content Section adjustments */
    .academy-content-section {
        padding: 32px 0px 80px 0px;
    }

    .academy-content-section .academy-container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }

    .academy-content-inner {
        margin: 0;
        max-width: 100%;
    }
    
    .academy-course-topics {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 6px;
        padding-right: 6px;
    }
    
    /* Improved touch targets */
    button, a, .academy-dot, .academy-nav-btn {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        user-select: none;
        -webkit-user-select: none;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hide scrollbars on carousel containers */
    .academy-who-cards-container,
    .academy-reviews-grid-container,
    .academy-work-grid-container,
    .academy-welcome-grid-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .academy-who-cards-container::-webkit-scrollbar,
    .academy-reviews-grid-container::-webkit-scrollbar,
    .academy-work-grid-container::-webkit-scrollbar,
    .academy-welcome-grid-container::-webkit-scrollbar {
        display: none;
    }
    
    /* Better button styling */
    .academy-hero-cta,
    .academy-pricing-btn,
    .header-btn {
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .academy-hero-cta:active,
    .academy-pricing-btn:active,
    .header-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* Medium mobile screens (400-768px) - maintain 324px cards centered */
  @media (min-width: 401px) and (max-width: 768px) {
    .academy-who-card {
        width: 375px;
        min-width: 375px;
        max-width: 375px;
    }
    
    .academy-review-card,
    .academy-work-card,
    .academy-welcome-card {
        width: 390px;
        min-width: 390px;
        max-width: 390px;
    }
  }
  
    /* Extra small screens - ensure content fits */
  @media (max-width: 400px) {
    .academy-container {
        padding: 0 10px;
        max-width: 100%;
    }

    .academy-header-mobile {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        height: 38px;
        top: 12px;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 14px;
        z-index: 99999 !important;
        position: fixed !important;
    }

    .academy-header-mobile.navbar-fixed {
        width: calc(100% - 32px);
        top: 12px;
        margin-top: 0;
        z-index: 99999 !important;
        position: fixed !important;
    }

    .academy-header-mobile .header-inner {
        gap: 6px;
        padding: 4px 12px;
        height: 38px;
    }

    .academy-header-mobile .header-nav {
        gap: 6px;
    }

    .academy-header-mobile .nav-link {
        font-size: 7px;
        padding: 1px 0;
        letter-spacing: 0.1px;
    }

    .academy-header-mobile .header-btn {
        font-size: 7px;
        padding: 6px 10px;
        height: 26px;
        min-width: 56px;
        border-radius: 12px;
        color: #fff;
    }
    
    /* Adjust carousel cards for very small screens */
    .academy-who-card,
    .academy-review-card,
    .academy-work-card,
    .academy-welcome-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .academy-who-cards-container {
        padding: 0;
    }
    
    .academy-reviews-grid-container,
    .academy-work-grid-container,
    .academy-welcome-grid-container {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .academy-content-inner,
    .academy-who-inner,
    .academy-instructor-inner,
    .academy-reviews-inner {
        margin: 0;
        padding: 20px 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* All sections aligned with academy-content-section */
    .academy-who-section .academy-container,
    .academy-content-section .academy-container,
    .academy-instructor-section .academy-container,
    .academy-how-section .academy-container,
    .academy-reviews-section .academy-container,
    .academy-work-section .academy-container,
    .academy-welcome-section .academy-container,
    .academy-pricing-section .academy-container,
    .academy-faq-section .academy-container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }

    .academy-section-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .academy-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
  }
  

.hidden {
    display: none;
}

.logo-slider {
  overflow: hidden;
  background: #000000; /* Цвет фона */
  padding: 20px 0;
  /* width: 100%; */
  white-space: nowrap;
  position: relative;
  display: flex; /* Важно для корректного расчета ширины JS */
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 6); /* Ширина лого * кол-во логотипов (включая дубли) */
  align-items: center;
  animation: scroll 10s linear infinite; /* Время прокрутки */
}

.logo-slide-track:hover {
  animation-play-state: paused; /* Остановка при наведении */
}

.slide {
  width: 200px; /* Ширина одного логотипа */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 150px; /* Размер логотипа */
  /* height: auto;
  margin: 0 20px; */
  height: clamp(60px, 10vw, 120px); /* Адаптивная высота: от 30px до 60px */
  margin: 0 20px; /* Ваше расстояние между лого */
  flex-shrink: 0; /* Запрещаем логотипам сжиматься */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 3)); /* Минус ширина оригинала */ }
}


#abuot-me {
  padding: 10px 20px;
  background-color: #40277b;
  color: #FFF
}

#hidden-paragraph a {
  color:#ea580c;
  font-weight: bold;
  text-decoration: none;
}