:root{
    --yellow:#ffcc00;
    --black:#050505;
    --dark:#0b0b0b;
    --card:#151515;
    --text:#fff;
    --muted:#aaa;
    --line:rgba(255,255,255,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--black);
    color:var(--text);
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:min(1180px,92%);
    margin:0 auto;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:50;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,204,0,.2);
}

.header-inner{
    height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.site-logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:900;
    text-transform:uppercase;
}

.site-logo img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.site-logo span{
    max-width:240px;
    line-height:1.1;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.site-nav a{
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
}

.nav-item{
    position:relative;
}

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#111;
    border:1px solid var(--line);
    border-radius:12px;
    padding:10px;
    display:none;
}

.dropdown a{
    display:block;
    padding:12px;
    border-radius:8px;
}

.dropdown a:hover{
    background:var(--yellow);
    color:#111;
}

.nav-item:hover .dropdown{
    display:block;
}

.menu-toggle{
    display:none;
    background:var(--yellow);
    border:0;
    color:#111;
    width:44px;
    height:44px;
    border-radius:10px;
    font-size:22px;
    font-weight:900;
}

.hero{
    min-height:100vh;
    padding-top:88px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg,rgba(0,0,0,.96),rgba(0,0,0,.65),rgba(0,0,0,.25)),
        url('../img/hero.png') center/cover no-repeat;
}

.hero-inner{
    display:flex;
    align-items:center;
}

.hero-text{
    max-width:760px;
}

.hero-text span,
.section-head span{
    color:var(--yellow);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.hero h1{
    font-size:clamp(48px,7vw,92px);
    line-height:.95;
    text-transform:uppercase;
    margin:18px 0 24px;
}

.hero p{
    color:#eee;
    font-size:22px;
    line-height:1.55;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--yellow);
    color:#111;
    padding:16px 24px;
    border-radius:10px;
    font-weight:900;
    text-transform:uppercase;
}

.btn-outline{
    background:transparent;
    border:2px solid var(--yellow);
    color:#fff;
}

.section{
    padding:90px 0;
}

.dark-section{
    background:#0d0d0d;
}

.section-head{
    text-align:center;
    margin-bottom:42px;
}

.section-head h2{
    font-size:42px;
    text-transform:uppercase;
    margin-top:10px;
}

.offer-grid,
.news-grid,
.coaches-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.offer-card,
.news-card,
.coach-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
}

.offer-card{
    padding:34px;
    min-height:220px;
}

.offer-card strong{
    color:var(--yellow);
    font-size:24px;
    text-transform:uppercase;
}

.offer-card p{
    color:var(--muted);
    line-height:1.6;
    margin-top:14px;
}

.news-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.news-card div{
    padding:24px;
}

.news-card h3,
.coach-card h3{
    color:var(--yellow);
    font-size:22px;
    margin-bottom:12px;
}

.news-card p,
.coach-card p{
    color:var(--muted);
    line-height:1.6;
}

.news-card a{
    display:inline-block;
    color:var(--yellow);
    font-weight:900;
    margin-top:18px;
}

.coach-card{
    text-align:center;
    padding-bottom:24px;
}

.coach-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    margin-bottom:20px;
}

.events-list{
    display:grid;
    gap:14px;
}

.event-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    background:var(--card);
    border:1px solid var(--line);
    border-radius:16px;
    padding:22px;
}

.event-item strong{
    color:var(--yellow);
    font-size:20px;
}

.event-item p{
    color:var(--muted);
    margin-top:6px;
}

.event-item span{
    font-weight:900;
}

.site-footer{
    background:#050505;
    border-top:1px solid rgba(255,204,0,.2);
    padding:60px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:34px;
}

.site-footer h3{
    color:var(--yellow);
    margin-bottom:14px;
}

.site-footer p,
.site-footer a{
    display:block;
    color:var(--muted);
    line-height:1.7;
    margin-bottom:6px;
}

.footer-bottom{
    margin-top:44px;
    padding:20px;
    text-align:center;
    color:#888;
    border-top:1px solid var(--line);
}

@media(max-width:900px){
    .header-inner{
        height:76px;
    }

    .site-logo img{
        width:48px;
        height:48px;
    }

    .site-logo span{
        font-size:12px;
        max-width:180px;
    }

    .menu-toggle{
        display:block;
    }

    .site-nav{
        position:fixed;
        top:76px;
        right:-100%;
        width:100%;
        height:calc(100vh - 76px);
        background:rgba(0,0,0,.97);
        flex-direction:column;
        justify-content:flex-start;
        align-items:stretch;
        padding:30px;
        gap:10px;
        transition:.25s;
        overflow:auto;
    }

    .site-nav.open{
        right:0;
    }

    .site-nav a{
        padding:14px;
        background:#111;
        border-radius:10px;
    }

    .nav-item{
        width:100%;
    }

    .dropdown{
        position:static;
        display:block;
        margin-top:8px;
        background:#0b0b0b;
    }

    .hero{
        min-height:86vh;
        padding-top:76px;
        background:
            linear-gradient(180deg,rgba(0,0,0,.72),rgba(0,0,0,.98)),
            url('../img/hero.png') center/cover no-repeat;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:17px;
    }

    .offer-grid,
    .news-grid,
    .coaches-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section{
        padding:64px 0;
    }

    .section-head h2{
        font-size:32px;
    }

    .event-item{
        flex-direction:column;
        align-items:flex-start;
    }
}
.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-premium::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    background: rgba(255,204,0,.18);
    filter: blur(90px);
    border-radius: 50%;
}

.hero-premium-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 380px;
    gap: 50px;
    align-items: center;
}

.hero-panel {
    background: rgba(10,10,10,.78);
    border: 1px solid rgba(255,204,0,.28);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.hero-panel h3 {
    color: var(--yellow);
    font-size: 52px;
    line-height: 1;
    margin-bottom: 12px;
}

.hero-panel p {
    color: #ddd;
    line-height: 1.5;
}

.hero-panel-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.hero-panel-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.hero-panel-list strong {
    color: var(--yellow);
    font-size: 22px;
}

.hero-panel-list span {
    color: #eee;
    font-weight: 800;
}

.numbers-section {
    background: var(--yellow);
    color: #111;
    padding: 26px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.numbers-grid div {
    text-align: center;
    padding: 12px;
}

.numbers-grid strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.numbers-grid span {
    display: block;
    margin-top: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 50px;
    align-items: center;
}

.small-label {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.about-preview h2 {
    font-size: 46px;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 14px 0 24px;
}

.about-preview p {
    color: #d6d6d6;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 17px;
}

.about-card-stack {
    display: grid;
    gap: 16px;
}

.about-mini-card {
    background: linear-gradient(180deg, #181818, #101010);
    border: 1px solid var(--line);
    border-left: 5px solid var(--yellow);
    border-radius: 18px;
    padding: 24px;
}

.about-mini-card strong {
    display: block;
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 8px;
}

.about-mini-card span {
    color: var(--muted);
    line-height: 1.6;
}

.premium-offer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.premium-offer-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .25s;
}

.premium-offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,204,0,.55);
}

.premium-offer-card small {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(255,204,0,.25);
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
}

.events-premium-list {
    display: grid;
    gap: 16px;
}

.event-premium-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 90px;
    gap: 20px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
}

.event-date-box {
    background: var(--yellow);
    color: #111;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.event-date-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.event-date-box span {
    font-weight: 900;
    font-size: 12px;
}

.event-info h3 {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 6px;
}

.event-info p {
    color: var(--muted);
}

.event-time {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    text-align: right;
}

.coach-premium {
    background: #111;
    border-radius: 22px;
    overflow: hidden;
    transition: .25s;
}

.coach-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(255,204,0,.5);
}

.coach-placeholder,
.news-placeholder {
    height: 280px;
    display: grid;
    place-items: center;
    background: #0d0d0d;
    color: var(--yellow);
    font-size: 46px;
    font-weight: 900;
}

.news-premium {
    border-radius: 22px;
    transition: .25s;
}

.news-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(255,204,0,.5);
}

.cta-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(255,204,0,.2), transparent 35%),
        #050505;
}

.cta-box {
    background: linear-gradient(135deg, #181818, #0d0d0d);
    border: 1px solid rgba(255,204,0,.28);
    border-radius: 28px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.cta-box span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.cta-box h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin: 12px 0;
}

.cta-box p {
    color: var(--muted);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media(max-width: 1000px) {
    .hero-premium-inner,
    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 520px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-premium-item {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .event-time {
        grid-column: 2;
        text-align: left;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media(max-width: 600px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .about-preview h2,
    .cta-box h2 {
        font-size: 30px;
    }

    .hero-panel {
        padding: 22px;
    }

    .hero-panel h3 {
        font-size: 42px;
    }

    .event-premium-item {
        grid-template-columns: 1fr;
    }

    .event-time {
        grid-column: auto;
    }

    .cta-box {
        padding: 28px;
    }
}
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.35s ease;
    background:rgba(5,5,5,.45);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.site-header.scrolled{
    background:rgba(5,5,5,.92);
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.header-inner{
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.35s;
}

.site-header.scrolled .header-inner{
    height:74px;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:12px;
}

.site-nav>a,
.nav-item>a{
    position:relative;
    padding:14px 18px;
    border-radius:12px;
    font-weight:800;
    text-transform:uppercase;
    font-size:14px;
    transition:.3s;
}

.site-nav>a:hover,
.nav-item>a:hover{
    background:rgba(255,204,0,.12);
}

.site-nav>a::after,
.nav-item>a::after{
    content:'';
    position:absolute;
    left:18px;
    right:18px;
    bottom:8px;
    height:3px;
    background:var(--yellow);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
    border-radius:20px;
}

.site-nav>a:hover::after,
.nav-item>a:hover::after{
    transform:scaleX(1);
}
.dropdown{
    position:absolute;
    top:110%;
    left:0;
    width:260px;

    background:rgba(15,15,15,.95);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    padding:12px;

    opacity:0;
    visibility:hidden;
    transform:translateY(18px);

    transition:.3s;

    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.nav-item:hover .dropdown{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.dropdown a{

    display:block;
    padding:14px;
    border-radius:10px;
    transition:.25s;

}

.dropdown a:hover{

    background:var(--yellow);
    color:#111;
    transform:translateX(6px);

}
.site-logo img{

    transition:.35s;

}

.site-header.scrolled .site-logo img{

    transform:scale(.88);

}
.menu-toggle{

    width:48px;
    height:48px;

    display:none;

    background:none;
    border:0;

    position:relative;

}

.menu-toggle span{

    position:absolute;

    left:10px;
    right:10px;

    height:3px;

    background:#fff;

    transition:.3s;

}

.menu-toggle span:nth-child(1){top:14px;}
.menu-toggle span:nth-child(2){top:22px;}
.menu-toggle span:nth-child(3){top:30px;}

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg);
    top:22px;

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg);
    top:22px;

}
/* NAV PREMIUM */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 5, 5, .48);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: .35s ease;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, .94);
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

.header-inner {
    height: 92px;
    transition: .35s ease;
}

.site-header.scrolled .header-inner {
    height: 74px;
}

.site-logo img {
    transition: .35s ease;
}

.site-header.scrolled .site-logo img {
    transform: scale(.85);
}

.site-nav {
    gap: 10px;
}

.site-nav > a,
.nav-item > a {
    position: relative;
    padding: 14px 18px;
    border-radius: 13px;
    transition: .3s ease;
}

.site-nav > a:hover,
.nav-item > a:hover {
    background: rgba(255,204,0,.12);
    color: var(--yellow);
}

.site-nav > a::after,
.nav-item > a::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;
    height: 3px;
    background: var(--yellow);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s ease;
}

.site-nav > a:hover::after,
.nav-item > a:hover::after {
    transform: scaleX(1);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: rgba(15,15,15,.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: .3s ease;
    box-shadow: 0 20px 45px rgba(0,0,0,.38);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 14px;
    border-radius: 12px;
    transition: .25s ease;
}

.dropdown a:hover {
    background: var(--yellow);
    color: #111;
    transform: translateX(6px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,204,0,.35);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--yellow);
    border-radius: 20px;
    transition: .3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 15px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

.menu-toggle.active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

/* INDEX ANIMATIONS */

.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .55;
    pointer-events: none;
    animation: glowFloat 7s ease-in-out infinite alternate;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -100px;
    background: rgba(255,204,0,.25);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    left: 8%;
    top: 18%;
    background: rgba(255,204,0,.12);
    animation-delay: 1.4s;
}

@keyframes glowFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-35px) scale(1.12);
    }
}

.hero-animate-left {
    animation: heroLeft .9s ease forwards;
}

.hero-animate-right {
    animation: heroRight .9s ease .18s forwards;
    opacity: 0;
}

@keyframes heroLeft {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroRight {
    from {
        opacity: 0;
        transform: translateX(45px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-panel {
    animation: panelFloat 4.5s ease-in-out infinite;
}

@keyframes panelFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.hero-panel-list div {
    transition: .28s ease;
}

.hero-panel-list div:hover {
    transform: translateX(8px);
    border-color: rgba(255,204,0,.5);
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-card,
.news-card,
.coach-card,
.event-premium-item,
.about-mini-card,
.quick-card {
    will-change: transform;
}

.premium-offer-card::before,
.news-premium::before,
.coach-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,204,0,.08), transparent);
    transform: translateX(-100%);
    transition: .55s ease;
    pointer-events: none;
}

.premium-offer-card:hover::before,
.news-premium:hover::before,
.coach-premium:hover::before {
    transform: translateX(100%);
}

.premium-offer-card,
.news-premium,
.coach-premium {
    position: relative;
}

.event-premium-item {
    transition: .28s ease;
}

.event-premium-item:hover {
    transform: translateX(8px);
    border-color: rgba(255,204,0,.5);
}

.event-date-box {
    transition: .28s ease;
}

.event-premium-item:hover .event-date-box {
    transform: rotate(-3deg) scale(1.05);
}

.numbers-grid div {
    transition: .28s ease;
}

.numbers-grid div:hover {
    transform: translateY(-6px);
}

/* MOBILE NAV FIX */

@media(max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(5,5,5,.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 28px;
        gap: 12px;
        transition: .35s ease;
        overflow-y: auto;
    }

    .site-nav.open {
        right: 0;
    }

    .site-nav > a,
    .nav-item > a {
        display: block;
        background: #111;
        border: 1px solid rgba(255,255,255,.06);
    }

    .nav-item {
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        margin-top: 8px;
        min-width: unset;
        box-shadow: none;
        background: #0b0b0b;
    }

    .site-header.scrolled .header-inner,
    .header-inner {
        height: 76px;
    }
}
.page-main {
    padding-top: 0;
}

.sub-hero {
    min-height: 52vh;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,204,0,.2), transparent 35%),
        #080808;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .32;
    transform: scale(1.06);
}

.sub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.72), rgba(0,0,0,.36));
}

.sub-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.sub-hero span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.sub-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    text-transform: uppercase;
    line-height: .95;
    margin: 18px 0 22px;
}

.sub-hero p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.6;
}

.page-content-section {
    background: #050505;
}

.page-content {
    max-width: 940px;
    margin: 0 auto;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 42px;
    color: #e7e7e7;
    line-height: 1.85;
    font-size: 17px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--yellow);
    line-height: 1.2;
    margin: 28px 0 14px;
}

.page-content h2 {
    font-size: 34px;
}

.page-content h3 {
    font-size: 26px;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
    margin: 18px 0 18px 26px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: var(--yellow);
    font-weight: 800;
}

.page-content img {
    max-width: 100%;
    border-radius: 18px;
    margin: 24px 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.page-content table td,
.page-content table th {
    border: 1px solid var(--line);
    padding: 12px;
}

.page-content table th {
    color: var(--yellow);
}

@media(max-width: 760px) {
    .sub-hero {
        min-height: 44vh;
        padding-top: 110px;
        padding-bottom: 56px;
    }

    .sub-hero p {
        font-size: 17px;
    }

    .page-content {
        padding: 26px;
        border-radius: 18px;
    }
}
.post-category {
    display: inline-block;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
}
.numbers-grid strong,
.numbers-grid em {
    display: inline-block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.numbers-grid em {
    font-style: normal;
    margin-left: 2px;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 22px 24px;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.faq-question span {
    color: var(--yellow);
    font-size: 26px;
    transition: .25s;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

.partners-section {
    padding: 42px 0;
    background: var(--yellow);
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 22px;
    align-items: center;
    animation: partnersMove 22s linear infinite;
    width: max-content;
}

.partner-logo {
    min-width: 180px;
    height: 90px;
    background: #111;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 18px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.partner-logo strong {
    color: var(--yellow);
    text-align: center;
}

@keyframes partnersMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
}

.floating-main {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 0;
    background: var(--yellow);
    color: #111;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(255,204,0,.35);
    transition: .25s;
}

.floating-main:hover {
    transform: scale(1.08);
}

.floating-options {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 210px;
    display: grid;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .25s;
}

.floating-contact.open .floating-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-options a {
    background: #111;
    border: 1px solid rgba(255,204,0,.25);
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.floating-options a:hover {
    background: var(--yellow);
    color: #111;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,204,0,.08) 35%, transparent 70%);
    animation: heroSweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroSweep {
    0% {
        transform: translateX(-100%);
    }

    45%, 100% {
        transform: translateX(100%);
    }
}

@media(max-width: 700px) {
    .floating-contact {
        right: 16px;
        bottom: 16px;
    }

    .floating-main {
        width: 56px;
        height: 56px;
    }

    .floating-options {
        width: 190px;
    }
}
.public-form {
    max-width: 820px;
    margin: 0 auto;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 38px;
    display: grid;
    gap: 22px;
}

.public-form-group label {
    display: block;
    color: var(--yellow);
    font-weight: 900;
    margin-bottom: 8px;
}

.public-form-group label span {
    color: #ff5555;
}

.public-form-group input,
.public-form-group textarea,
.public-form-group select {
    width: 100%;
    background: #070707;
    border: 1px solid var(--line);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    outline: none;
}

.public-form-group input:focus,
.public-form-group textarea:focus,
.public-form-group select:focus {
    border-color: var(--yellow);
}

.choice-list {
    display: grid;
    gap: 10px;
}

.choice-list label,
.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ddd;
    background: #0b0b0b;
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 12px;
}

.choice-list input,
.consent-box input {
    width: auto;
    margin-top: 3px;
}

.consent-box span {
    color: #ddd !important;
    font-weight: 600;
}

.form-success {
    background: rgba(67,209,122,.14);
    color: #43d17a;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
}

.form-error {
    background: rgba(255,77,77,.14);
    color: #ff7b7b;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
}

@media(max-width: 700px) {
    .public-form {
        padding: 24px;
        border-radius: 18px;
    }
}
.training-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 34px;
}

.training-intro h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin: 12px 0;
}

.training-intro p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.training-card {
    background: linear-gradient(180deg, #171717, #0e0e0e);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: .25s ease;
    overflow: hidden;
    position: relative;
}

.training-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,204,0,.55);
}

.training-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,204,0,.08), transparent);
    transform: translateX(-100%);
    transition: .55s ease;
}

.training-card:hover::before {
    transform: translateX(100%);
}

.training-card > * {
    position: relative;
    z-index: 2;
}

.training-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-card-top span {
    color: #111;
    background: var(--yellow);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}

.training-card-top strong {
    color: var(--yellow);
    font-size: 26px;
}

.training-card h3 {
    font-size: 25px;
    color: #fff;
}

.training-meta {
    display: grid;
    gap: 12px;
}

.training-meta div {
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.training-meta small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
}

.training-meta b {
    color: var(--yellow);
}

.training-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media(max-width: 1000px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-intro {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 640px) {
    .training-grid {
        grid-template-columns: 1fr;
    }

    .training-intro {
        padding: 24px;
    }

    .training-intro h2 {
        font-size: 28px;
    }
}
.camp-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 34px;
}

.camp-intro h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin: 12px 0;
}

.camp-intro p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
}

.camp-grid {
    display: grid;
    gap: 24px;
}

.camp-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    background: linear-gradient(180deg, #171717, #0e0e0e);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: .25s ease;
}

.camp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,204,0,.55);
}

.camp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,204,0,.08), transparent);
    transform: translateX(-100%);
    transition: .55s ease;
}

.camp-card:hover::before {
    transform: translateX(100%);
}

.camp-card > * {
    position: relative;
    z-index: 2;
}

.camp-date {
    background: var(--yellow);
    color: #111;
    border-radius: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 120px;
    padding: 14px;
    align-self: start;
}

.camp-date strong {
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.camp-date span {
    font-size: 13px;
    font-weight: 900;
}

.camp-label {
    display: inline-block;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    margin-bottom: 10px;
}

.camp-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.camp-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.camp-info div {
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.camp-info small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
}

.camp-info b {
    color: var(--yellow);
}

.camp-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

@media(max-width: 900px) {
    .camp-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .camp-card {
        grid-template-columns: 1fr;
    }

    .camp-date {
        width: 120px;
    }

    .camp-info {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 640px) {
    .camp-intro {
        padding: 24px;
    }

    .camp-intro h2 {
        font-size: 28px;
    }

    .camp-content h3 {
        font-size: 26px;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 34px;
    align-items: start;
}

.contact-info,
.contact-card {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
}

.contact-info h2,
.contact-card h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin: 12px 0 24px;
}

.contact-box {
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
}

.contact-box strong {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.contact-box a,
.contact-box p {
    color: #ddd;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.contact-socials a {
    background: var(--yellow);
    color: #111;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 900;
}

.contact-card {
    position: sticky;
    top: 110px;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.map-section {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.1);
}

@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }
}

@media(max-width: 640px) {
    .contact-info,
    .contact-card {
        padding: 24px;
    }

    .contact-info h2,
    .contact-card h2 {
        font-size: 28px;
    }
}
.coach-header{

max-width:850px;

margin:0 auto 60px;

text-align:center;

}

.coach-header h2{

font-size:48px;

text-transform:uppercase;

margin:18px 0;

}

.coach-header p{

color:#bdbdbd;

line-height:1.8;

font-size:18px;

}

.coach-list{

display:grid;

gap:50px;

}

.coach-profile{

display:grid;

grid-template-columns:420px 1fr;

gap:45px;

background:#111;

border:1px solid var(--line);

border-radius:28px;

overflow:hidden;

transition:.3s;

}

.coach-profile:hover{

transform:translateY(-8px);

border-color:rgba(255,204,0,.45);

}

.coach-image{

height:520px;

overflow:hidden;

background:#090909;

}

.coach-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.coach-profile:hover img{

transform:scale(1.05);

}

.coach-placeholder-big{

height:100%;

display:flex;

align-items:center;

justify-content:center;

font-size:90px;

font-weight:900;

color:var(--yellow);

}

.coach-details{

padding:45px;

display:flex;

flex-direction:column;

justify-content:center;

}

.coach-role{

display:inline-block;

background:var(--yellow);

color:#111;

padding:8px 18px;

border-radius:999px;

font-size:12px;

font-weight:900;

text-transform:uppercase;

margin-bottom:18px;

width:max-content;

}

.coach-details h2{

font-size:46px;

margin-bottom:20px;

}

.coach-description{

font-size:17px;

line-height:1.9;

color:#cfcfcf;

margin-bottom:35px;

}

.coach-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:18px;

margin-bottom:35px;

}

.coach-stats div{

background:#0b0b0b;

padding:20px;

border-radius:16px;

border:1px solid var(--line);

}

.coach-stats strong{

display:block;

color:var(--yellow);

font-size:12px;

text-transform:uppercase;

margin-bottom:8px;

}

.coach-stats span{

color:#fff;

font-weight:700;

}

.coach-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

@media(max-width:1100px){

.coach-profile{

grid-template-columns:1fr;

}

.coach-image{

height:420px;

}

}

@media(max-width:700px){

.coach-details{

padding:25px;

}

.coach-details h2{

font-size:32px;

}

.coach-stats{

grid-template-columns:1fr;

}

}
.home-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-event-card {
    background: linear-gradient(180deg, #171717, #0d0d0d);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: .28s ease;
}

.home-event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,204,0,.55);
}

.home-event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,204,0,.08), transparent);
    transform: translateX(-100%);
    transition: .55s ease;
}

.home-event-card:hover::before {
    transform: translateX(100%);
}

.home-event-card > * {
    position: relative;
    z-index: 2;
}

.home-event-date {
    width: 92px;
    height: 92px;
    background: var(--yellow);
    color: #111;
    border-radius: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    margin-bottom: 18px;
}

.home-event-date strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.home-event-date span {
    font-size: 12px;
    font-weight: 900;
}

.home-event-type {
    display: inline-block;
    background: rgba(255,204,0,.12);
    color: var(--yellow);
    border: 1px solid rgba(255,204,0,.25);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-event-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.home-event-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.home-event-meta div {
    background: #0a0a0a;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px;
}

.home-event-meta small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 11px;
    margin-bottom: 5px;
}

.home-event-meta b {
    color: var(--yellow);
}

@media(max-width: 1000px) {
    .home-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 640px) {
    .home-events-grid {
        grid-template-columns: 1fr;
    }
}