:root {
    --bg: #050608;
    --panel: #0b0d10;
    --neon: #0ea5ff;
    --accent: #0a58ff;
    --muted: #97a0b3;
    --glass: rgba(255, 255, 255, 0.03);
    --card-shadow: 0 10px 30px rgba(5, 8, 12, 0.7);
    --container: 1180px;
    --radius: 14px;
    --section-y: 72px;
    --section-y-sm: 48px;
    --stack: 32px;
    --wrap-x: clamp(16px, 4vw, 28px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    background:
        linear-gradient(180deg, rgba(3, 6, 10, 0.98), rgba(3, 6, 10, 1)),
        radial-gradient(ellipse 80% 50% at 15% 0%, rgba(14, 165, 255, 0.07), transparent),
        radial-gradient(ellipse 60% 40% at 85% 100%, rgba(10, 88, 255, 0.05), transparent),
        #050608;
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* container */
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--wrap-x);
    padding-right: var(--wrap-x);
}

/* NAV */
header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    background: rgba(5, 6, 8, 0.96);
    border-bottom: 1px solid rgba(14, 165, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

header.nav.is-scrolled {
    background: rgba(3, 5, 8, 0.98);
    border-bottom-color: rgba(14, 165, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    min-width: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: min(280px, 50vw);
    min-height: 44px;
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.02);
}

nav.main-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-nav a {
    color: #cfe9ff;
    text-decoration: none;
    font-weight: 600;
    opacity: .85;
    transition: all 0.3s ease;
}

nav.main-nav a:hover {
    color: var(--neon);
    opacity: 1;
}

.cta {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5ff 45%, #0284c7 100%);
    padding: 10px 18px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(186, 230, 253, 0.45);
    box-shadow:
        0 4px 18px rgba(14, 165, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    color: #ffffff;
    box-shadow:
        0 6px 24px rgba(14, 165, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Shimmer effect for buttons */
.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.7s;
}

.cta:hover .shimmer,
.hero-cta:hover .shimmer,
.btn-send:hover .shimmer {
    left: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neon);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle span:nth-child(2) {
    margin: 5px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-cta {
    display: none;
}

/* HERO */
.hero {
    min-height: 88vh;
    max-height: 920px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 92px;
    border-radius: 18px;
    margin-left: var(--wrap-x);
    margin-right: var(--wrap-x);
    margin-bottom: 0;
    box-shadow: var(--card-shadow);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 10, 0.25), rgba(3, 6, 10, 0.9));
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 36px;
    align-items: center;
    width: 100%;
    padding: 52px 48px;
    z-index: 2;
}

/* Home stats band — matches about page rhythm */
.stats-band {
    padding-top: 56px;
    padding-bottom: 56px;
}

.stats-band .stats-row {
    margin-top: 0;
    gap: 20px;
}

.benefits-list--home {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body[data-page="home"] .section-foot {
    margin-top: 40px;
}

/* big background word behind boxer */
.big-behind {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -40%);
    font-weight: 900;
    font-size: 11vw;
    color: transparent;
    -webkit-text-stroke: 2px rgba(14, 165, 255, 0.14);
    text-transform: uppercase;
    letter-spacing: 8px;
    pointer-events: none;
}

.hero-left {
    max-width: 700px;
    padding: 12px;
    position: relative;
    z-index: 3;
}

.kicker {
    display: inline-block;
    color: var(--neon);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(14, 165, 255, 0.08), transparent);
    padding: 6px 10px;
    border-radius: 8px;
}

h1.title {
    font-size: 44px;
    color: #ffffff;
    margin: 8px 0 18px;
    line-height: 1.02;
    text-shadow: 0 8px 30px rgba(3, 10, 18, 0.6);
}

p.lead {
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    margin-top: 4px;
}

.hero-cta {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5ff 40%, #0284c7 100%);
    padding: 14px 28px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    border: 1px solid rgba(186, 230, 253, 0.5);
    box-shadow:
        0 4px 22px rgba(14, 165, 255, 0.45),
        0 0 36px rgba(14, 165, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
        0 8px 32px rgba(14, 165, 255, 0.55),
        0 0 52px rgba(14, 165, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.hero-cta:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.hero-cta.secondary {
    background: rgba(14, 165, 255, 0.12);
    border: 1.5px solid rgba(14, 165, 255, 0.65);
    color: #ffffff;
    padding: 13px 26px;
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(14, 165, 255, 0.24);
    border-color: #7dd3fc;
    color: #ffffff;
    box-shadow:
        0 6px 28px rgba(14, 165, 255, 0.35),
        0 0 32px rgba(14, 165, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* hero image panel (right) */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
}

/* ——— SECTION RHYTHM (consistent vertical flow) ——— */
section:not(.hero):not(.page-top) {
    padding: 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

section.hero,
section.page-top,
header.nav {
    content-visibility: visible;
}

.page-section {
    padding: var(--section-y) 0;
}

.page-section--sm {
    padding: var(--section-y-sm) 0;
}

.page-section--alt {
    background: rgba(3, 6, 10, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-section + .page-section--alt,
.page-section--alt + .page-section {
    border-top: none;
}

.section-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: var(--stack);
}

.section-body {
    display: flex;
    flex-direction: column;
    gap: var(--stack);
}

.section-foot {
    margin-top: var(--stack);
    text-align: center;
}

.neon-title {
    font-weight: 800;
    color: var(--neon);
    font-size: 28px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(14, 165, 255, 0.12);
}

.sub-muted {
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 6px;
}

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    align-items: center;
}

.about-content {
    margin-top: 12px;
}

.about-intro {
    margin-bottom: 12px;
    color: var(--muted);
}

.about-heading {
    color: #fff;
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.about-detail {
    color: var(--muted);
}

.about-cta {
    margin-top: 16px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* classes grid */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.class-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 210px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    contain: layout style paint;
}

.class-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.class-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 10, 0.2), rgba(3, 6, 10, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.class-title {
    font-weight: 700;
    color: white;
    font-size: 20px;
}

.class-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 16px 32px rgba(2, 6, 12, 0.55);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.features-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.section-cta-center,
.section-foot {
    text-align: center;
    margin-top: var(--stack);
}

.text-link {
    color: var(--neon);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: #fff;
}

.classes-grid--preview {
    grid-template-columns: repeat(3, 1fr);
}

a.class-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.class-card-link:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 4px;
}

.pricing-teaser {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 28px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card--teaser {
    margin: 0;
}

.pricing-teaser-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-top: 8px;
}

.pricing-note {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

.pricing-note strong {
    color: #e6eef8;
}

.trainers-grid--preview {
    grid-template-columns: repeat(3, 1fr);
}

.home-faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 24px;
}

.home-faq-item h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.home-faq-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.cta-final .cta-strip {
    margin-top: 0;
}

.form-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 10px;
    color: #e8f7ff;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
}

.form-select:focus {
    outline: 2px solid rgba(14, 165, 255, 0.4);
    border-color: rgba(14, 165, 255, 0.35);
}

.map-embed {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(14, 165, 255, 0.12);
    aspect-ratio: 16 / 7;
    min-height: 280px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-embed-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--neon);
    font-size: 14px;
    text-decoration: none;
}

.map-embed-link:hover {
    text-decoration: underline;
}

.membership-benefits-head {
    margin-top: 40px;
}

.pricing-card--teaser,
.pricing-card.popular.pricing-card--teaser {
    height: auto;
    min-height: 0;
}

/* ——— CONTACT PAGE (unified layout) ——— */
.contact-page .wrap {
    display: flex;
    flex-direction: column;
    gap: var(--stack);
}

.contact-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-quick-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-quick-card:hover {
    border-color: rgba(14, 165, 255, 0.22);
    transform: translateY(-2px);
}

.contact-quick-card > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: #7dd3fc;
    background: rgba(14, 165, 255, 0.12);
    border: 1px solid rgba(14, 165, 255, 0.2);
}

.contact-quick-card h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-quick-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.contact-quick-card a {
    color: var(--neon);
    text-decoration: none;
}

.contact-quick-card a:hover {
    text-decoration: underline;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 360px);
    gap: 24px;
    align-items: start;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-sidebar-panel {
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
}

.contact-sidebar-panel h4,
.sidebar-panel-title {
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
}

.sidebar-panel-title i {
    color: var(--neon);
    margin-right: 8px;
}

.sidebar-panel-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.sidebar-panel-text strong {
    color: #fff;
}

.contact-sidebar-panel.social-media .social-label {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
}

.contact-map-block .section-head {
    margin-bottom: 16px;
}

.contact-map-block .map-embed {
    margin-top: 0;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-quick {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 40px 24px;
    }

    .benefits-list--home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-y: 56px;
        --section-y-sm: 40px;
        --stack: 24px;
    }

    .contact-quick {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    contain: layout style;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0077ff, #00a8ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(14, 165, 255, 0.25);
    box-shadow: 0 12px 28px rgba(2, 6, 12, 0.65);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2;
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.55), rgba(0, 229, 255, 0.25), rgba(10, 88, 255, 0.45));
    opacity: 0.75;
    z-index: -2;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(145deg, #031a28 0%, #0a3f84 55%, #052737 100%);
    box-shadow:
        inset 0 2px 10px rgba(255, 255, 255, 0.12),
        inset 0 -4px 12px rgba(0, 0, 0, 0.35),
        0 6px 22px rgba(14, 165, 255, 0.18);
    z-index: -1;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

.feature-icon i {
    position: relative;
    z-index: 1;
    color: #7dd3fc;
    transition: transform 0.35s ease, color 0.25s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-3px);
}

.feature-card:hover .feature-icon::after {
    background: linear-gradient(145deg, #04324b 0%, #0b4a9e 55%, #073f5d 100%);
    box-shadow:
        inset 0 2px 12px rgba(255, 255, 255, 0.16),
        inset 0 -4px 14px rgba(0, 0, 0, 0.3),
        0 10px 32px rgba(14, 165, 255, 0.32),
        0 0 24px rgba(14, 165, 255, 0.15);
}

.feature-card:hover .feature-icon i {
    color: #fff;
    transform: scale(1.08);
}

.feature-card h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* No infinite icon animations — hover-only for smooth scroll */
.floating {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-grid--home {
    margin-top: 8px;
}

body[data-page="home"] .pricing-grid .pricing-card,
body[data-page="home"] .pricing-grid .pricing-card.popular {
    height: auto;
    min-height: 0;
}

body[data-page="home"] .pricing-grid .pricing-card.popular {
    transform: none;
}

body[data-page="home"] .pricing-grid .pricing-card.popular:hover {
    transform: translate3d(0, -6px, 0);
}

.benefits-list--home {
    margin-top: 48px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 650px;
    width: 100%;
    contain: layout style;
}

.pricing-card.popular {
    border-color: var(--neon);
    box-shadow: 0 12px 32px rgba(14, 165, 255, 0.12);
    height: 750px;
    padding: 20px 30px;
}

.pricing-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(14, 165, 255, 0.3);
    box-shadow: 0 18px 36px rgba(2, 6, 12, 0.65);
}

.pricing-card.popular:hover {
    transform: translate3d(0, -6px, 0);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #0077ff, #00a8ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--neon);
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted);
    display: flex;
    align-items: center;
}

.pricing-features li:before {
    content: "✓";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 11px;
    color: #6ee7b7;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.12);
    margin-right: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover .pricing-features li:before {
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.25);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: block;
    text-align: center;
}

/* TRAINERS SECTION */
.trainers-section {
    background: transparent;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.trainer-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    contain: layout style;
}

.trainer-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(14, 165, 255, 0.2);
    box-shadow: 0 14px 32px rgba(2, 6, 12, 0.65);
}

.trainer-image {
    height: 250px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-info {
    padding: 24px;
}

.trainer-info h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 20px;
}

.trainer-info .specialty {
    color: var(--neon);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.trainer-info p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CONTACT */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

.form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

label {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

input,
textarea,
select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: 10px;
    color: #e8f7ff;
    outline: none;
    transition: box-shadow .18s, border-color .12s;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
}

select option {
    background: #0b0d10;
    color: #e8f7ff;
}

input:focus,
textarea:focus {
    box-shadow: 0 8px 30px rgba(14, 165, 255, 0.06);
    border-color: rgba(14, 165, 255, 0.22);
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5ff 40%, #0284c7 100%);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid rgba(186, 230, 253, 0.45);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    font-size: 15px;
    box-shadow:
        0 4px 18px rgba(14, 165, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-send:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow:
        0 6px 24px rgba(14, 165, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.form-status {
    color: var(--muted);
    font-size: 14px;
}

.contact-info {
    background: transparent;
    padding: 18px;
    border-radius: 12px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.18), rgba(10, 88, 255, 0.08));
    border: 1px solid rgba(14, 165, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 18px rgba(14, 165, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(25deg);
    transition: transform 0.6s ease;
}

.info-row:hover .info-icon {
    transform: translateY(-3px) scale(1.06);
    border-color: rgba(14, 165, 255, 0.5);
    box-shadow:
        0 8px 26px rgba(14, 165, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.info-row:hover .info-icon::after {
    transform: translateX(280%) rotate(25deg);
}

.info-icon i {
    position: relative;
    z-index: 1;
}

.info-col p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.info-col strong {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.social-media {
    margin-top: 18px;
    color: var(--muted);
}

.social-media p {
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.14), rgba(10, 88, 255, 0.06));
    border: 1px solid rgba(14, 165, 255, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 255, 0.35), rgba(0, 229, 255, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-links a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: rotate(25deg);
    transition: transform 0.55s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 17px;
    transition: transform 0.35s ease;
}

.social-links a:hover {
    color: #fff;
    border-color: rgba(14, 165, 255, 0.55);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 28px rgba(14, 165, 255, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover::after {
    transform: translateX(260%) rotate(25deg);
}

.social-links a:hover i {
    transform: scale(1.15);
}

/* FOOTER */
footer {
    padding: 30px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--muted);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 12px;
    line-height: 0;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    opacity: 0.95;
    transition: opacity 0.25s ease;
}

.footer-brand-logo:hover .footer-logo-img {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--neon);
}

.footer-copyright {
    color: var(--muted);
}

/* small helpers & animations */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ——— INNER PAGES (same theme as home) ——— */
body.page-inner main {
    padding-top: 92px;
}

.page-top {
    padding: 24px 0 32px;
    text-align: center;
}

.page-top .neon-title {
    margin-bottom: 8px;
}

.page-top p {
    color: var(--muted);
    max-width: 560px;
    margin: 12px auto 0;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: var(--neon);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.nav.main-nav a.is-active {
    color: var(--neon);
    opacity: 1;
}

.schedule-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 24px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14px;
}

.schedule-table th,
.schedule-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-table th {
    background: rgba(14, 165, 255, 0.08);
    color: var(--neon);
    font-weight: 600;
}

.schedule-table td {
    color: var(--muted);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 760px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    color: var(--neon);
    background: rgba(14, 165, 255, 0.1);
    border: 1px solid rgba(14, 165, 255, 0.2);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
    background: rgba(14, 165, 255, 0.22);
    color: #fff;
}

.faq-question:hover i {
    background: rgba(14, 165, 255, 0.18);
    box-shadow: 0 0 14px rgba(14, 165, 255, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 240px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 14px;
    padding-bottom: 18px;
    line-height: 1.6;
}

/* ——— SHARED PAGE SECTIONS ——— */
.section-head.is-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.section-lead {
    color: var(--muted);
    font-size: 15px;
    max-width: 620px;
    margin-top: 10px;
    line-height: 1.6;
}

.section-head.is-center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.section-head--spaced {
    margin-top: 56px;
    padding-top: 8px;
}

.neon-title--sm {
    font-size: 22px;
    letter-spacing: 2px;
}

.form-card > .section-head {
    margin-bottom: 20px;
}

.label-optional {
    color: var(--muted);
    font-weight: 400;
}

body.page-inner main > .page-section {
    padding: var(--section-y) 0;
}

body.page-inner main > .page-section:last-of-type {
    padding-bottom: calc(var(--section-y) + 8px);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 255, 0.2);
    box-shadow: 0 10px 28px rgba(14, 165, 255, 0.1);
}

.stat-box:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.stat-box strong {
    display: block;
    font-size: 32px;
    color: var(--neon);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(14, 165, 255, 0.25);
}

.stat-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 255, 0.2);
    box-shadow: 0 12px 32px rgba(14, 165, 255, 0.1);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #7dd3fc;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.16), rgba(10, 88, 255, 0.06));
    border: 1px solid rgba(14, 165, 255, 0.28);
    box-shadow: 0 6px 20px rgba(14, 165, 255, 0.14);
    position: relative;
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.5), rgba(0, 229, 255, 0.2), rgba(10, 88, 255, 0.4));
    z-index: -1;
    opacity: 0.7;
}

.value-icon i {
    transition: transform 0.35s ease, color 0.25s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 22px rgba(14, 165, 255, 0.22);
}

.value-card:hover .value-icon i {
    color: #fff;
    transform: scale(1.06);
}

.value-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.timeline {
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.timeline-year {
    color: var(--neon);
    font-weight: 800;
    font-size: 18px;
}

.timeline-item h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 16px;
}

.timeline-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.class-detail-list {
    display: grid;
    gap: 20px;
}

.class-detail-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.class-detail-item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.class-detail-body {
    padding: 20px 24px 20px 0;
}

.class-detail-body h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.class-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
}

.class-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(14, 165, 255, 0.12);
    color: var(--neon);
}

.class-detail-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.class-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
}

.class-meta-row i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    border-radius: 6px;
    font-size: 10px;
    color: #7dd3fc;
    background: rgba(14, 165, 255, 0.12);
    border: 1px solid rgba(14, 165, 255, 0.22);
    vertical-align: middle;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.class-detail-item:hover .class-meta-row i,
.class-meta-row span:hover i {
    transform: scale(1.15);
    background: rgba(14, 165, 255, 0.22);
    color: #fff;
}

.class-overlay .class-meta {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 24px;
}

.testimonial-card .stars {
    color: #ffd166;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card strong {
    color: #fff;
    font-size: 14px;
}

.testimonial-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.trainer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0;
    font-size: 12px;
    color: var(--muted);
}

.trainer-meta span {
    background: rgba(14, 165, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.benefit-item i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 17px;
    color: #7dd3fc;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.2), rgba(10, 88, 255, 0.08));
    border: 1px solid rgba(14, 165, 255, 0.3);
    box-shadow:
        0 4px 16px rgba(14, 165, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 8px rgba(14, 165, 255, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.12) rotate(-8deg);
    color: #fff;
    box-shadow:
        0 8px 24px rgba(14, 165, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.benefit-item h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.info-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 255, 0.22);
    box-shadow: 0 12px 32px rgba(14, 165, 255, 0.1);
}

.info-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 22px;
    color: #7dd3fc;
    margin-bottom: 14px;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.16), rgba(10, 88, 255, 0.06));
    border: 1px solid rgba(14, 165, 255, 0.28);
    box-shadow:
        0 6px 22px rgba(14, 165, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 12px rgba(14, 165, 255, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, color 0.3s ease;
}

.info-card > i::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.4), rgba(0, 229, 255, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.info-card:hover > i {
    transform: translateY(-4px) scale(1.1);
    color: #fff;
    box-shadow:
        0 10px 30px rgba(14, 165, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.info-card:hover > i::after {
    opacity: 1;
}

.info-card h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.info-card a {
    color: var(--neon);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.hours-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 20px;
}

.hours-block h4 {
    color: #fff;
    margin-bottom: 12px;
}

.hours-block li,
.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    list-style: none;
}

.hours-block li:last-child,
.hours-list li:last-child {
    border-bottom: none;
}

.hours-list {
    margin: 0;
    padding: 0;
}

.cta-strip {
    text-align: center;
    padding: 36px 28px;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(14, 165, 255, 0.12), rgba(10, 88, 255, 0.06));
    border: 1px solid rgba(14, 165, 255, 0.15);
    border-radius: var(--radius);
}

.cta-strip h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-strip p {
    color: var(--muted);
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.footer-full {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 24px;
}

.footer-full h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-full a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
}

.footer-full a:hover {
    color: var(--neon);
}

.footer-full p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

@media (max-width: 991px) {
    .stats-row,
    .values-grid,
    .testimonials-grid,
    .info-cards,
    .benefits-list {
        grid-template-columns: 1fr 1fr;
    }

    .class-detail-item {
        grid-template-columns: 1fr;
    }

    .class-detail-body {
        padding: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-full {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1199px) {
    .features-grid--three,
    .classes-grid--preview,
    .trainers-grid--preview,
    .home-faq-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list--home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .stats-row,
    .values-grid,
    .testimonials-grid,
    .info-cards,
    .benefits-list,
    .features-grid--three,
    .classes-grid--preview,
    .trainers-grid--preview,
    .home-faq-list {
        grid-template-columns: 1fr;
    }

    .footer-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ================== RESPONSIVE DESIGN ================== */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .wrap {
        max-width: 1180px;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
    .wrap {
        max-width: 960px;
    }

    .hero-inner {
        grid-template-columns: 1fr 400px;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card.popular {
        order: -1;
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        height: auto;
        transform: scale(1);
    }

    .pricing-card {
        height: auto;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) {
    .wrap {
        max-width: 720px;
    }

    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(11, 13, 16, 0.95);
        transition: right 0.3s ease;
        z-index: 99;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    nav.main-nav.active {
        right: 0;
    }

    nav.main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav.main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav.main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
    }

    .logo-img {
        height: 48px;
        max-width: min(280px, 58vw);
    }

    .nav-inner {
        min-height: 44px;
    }

    /* Hero section */
    .hero {
        height: auto;
        min-height: 80vh;
        margin-left: 12px;
        margin-right: 12px;
        margin-top: 88px;
        border-radius: 12px;
    }

    body[data-page="home"] .hero.hero--viewport {
        --nav-h: 88px;
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
    }

    body[data-page="home"] .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 8px 24px 4px;
    }

    body[data-page="home"] .hero-card {
        max-height: min(280px, 32vh);
        min-height: 180px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 24px;
    }

    .stats-band .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list--home {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .hero-card {
        height: 300px;
    }

    .big-behind {
        font-size: 18vw;
        opacity: 0.2;
    }

    h1.title {
        font-size: 36px;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    /* Features section */
    .features-grid,
    .features-grid--three,
    .home-faq-list,
    .trainers-grid--preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Classes section */
    .classes-grid,
    .classes-grid--preview {
        grid-template-columns: 1fr;
    }

    /* Contact section */
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 15px;
    }
}

/* Extra small screens (576px to 767px) */
@media (max-width: 767px) {
    .wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    header.nav {
        padding: 0 15px;
    }

    .hero {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 88px;
    }

    .hero-inner {
        padding: 30px 20px;
    }

    h1.title {
        font-size: 32px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-cta {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .neon-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .sub-muted {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 18px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.popular {
        order: 0;
        grid-column: auto;
        max-width: 100%;
        height: auto;
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card {
        height: auto;
        padding: 30px 20px;
    }

    .price {
        font-size: 42px;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .trainer-image {
        height: 220px;
    }

    .class-card {
        height: 180px;
    }
}

/* Mobile screens (up to 575px) */
@media (max-width: 575px) {
    .wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero {
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 10px;
    }

    .hero-inner {
        padding: 25px 15px;
    }

    h1.title {
        font-size: 28px;
    }

    p.lead {
        font-size: 15px;
    }

    .big-behind {
        font-size: 22vw;
        opacity: 0.15;
    }

    .hero-card {
        height: 280px;
    }

    .neon-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .sub-muted {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .price {
        font-size: 36px;
    }

    .class-card {
        height: 160px;
    }

    .class-title {
        font-size: 18px;
    }

    .trainer-image {
        height: 200px;
    }

    .trainer-info {
        padding: 20px;
    }

    .form-card {
        padding: 20px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .logo-img {
        height: 56px;
        max-width: min(260px, 72vw);
        min-height: 48px;
    }

    .nav-inner {
        min-height: 56px;
        gap: 16px;
    }

    .footer-row {
        gap: 15px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Very small screens (up to 360px) */
@media (max-width: 360px) {
    .hero-inner {
        padding: 20px 10px;
    }

    h1.title {
        font-size: 24px;
    }

    .hero-cta {
        padding: 10px 15px;
        font-size: 14px;
    }

    .feature-card {
        padding: 18px 12px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .pricing-card {
        padding: 20px 12px;
    }

    .price {
        font-size: 32px;
    }

    .class-card {
        height: 140px;
    }
}

/* ========== HOME PAGE REDESIGN ========== */
body[data-page="home"] {
    --home-py: 72px;
    --home-header-gap: 40px;
    --home-content-gap: 32px;
}

/* Hero + stats = exactly one viewport */
body[data-page="home"] .hero.hero--viewport {
    --nav-h: 92px;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    margin-top: 0;
    padding-top: var(--nav-h);
    margin-bottom: 0;
    margin-left: var(--wrap-x);
    margin-right: var(--wrap-x);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-height: 780px) {
    body[data-page="home"] h1.title {
        font-size: clamp(28px, 4.5vw, 36px);
        margin-bottom: 12px;
    }

    body[data-page="home"] p.lead {
        margin-bottom: 14px;
        font-size: 14px;
    }

    body[data-page="home"] .hero-card {
        max-height: min(300px, 38vh);
    }

    body[data-page="home"] .hero--viewport .home-stats {
        padding: 12px 0 14px;
    }

    .home-stats__grid {
        gap: 10px;
    }

    .home-stat {
        padding: 12px 14px;
    }
}

body[data-page="home"] .hero.hero--viewport::after {
    z-index: 1;
}

body[data-page="home"] .hero__body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    position: relative;
    z-index: 2;
}

body[data-page="home"] .hero-inner {
    width: 100%;
    padding: 12px 40px 8px;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 480px);
    gap: 28px;
    align-items: center;
}

body[data-page="home"] .hero-card {
    height: auto;
    max-height: min(400px, 46vh);
    min-height: 220px;
}

body[data-page="home"] .hero--viewport .home-stats {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    padding: 14px 0 16px;
    margin: 0;
    border-radius: 0;
    border-top: 1px solid rgba(14, 165, 255, 0.2);
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.95) 0%, rgba(5, 8, 12, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(14, 165, 255, 0.12);
}

body[data-page="home"] .hero--viewport .home-stats .wrap {
    padding-left: var(--wrap-x);
    padding-right: var(--wrap-x);
}

body[data-page="home"] #about.page-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

body[data-page="home"] .home-block {
    padding-top: var(--home-py);
    padding-bottom: var(--home-py);
}

body[data-page="home"] .home-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0;
}

body[data-page="home"] footer {
    margin-top: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Home stats bar — card grid */
.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(14, 165, 255, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 255, 0.4);
    box-shadow: 0 8px 24px rgba(14, 165, 255, 0.15);
}

.home-stat__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(14, 165, 255, 0.25), rgba(10, 88, 255, 0.12));
    border: 1px solid rgba(125, 211, 252, 0.35);
    color: #7dd3fc;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(14, 165, 255, 0.2);
}

.home-stat__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home-stat__value {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-stat__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.3;
}

.home-pillars {
    background: rgba(3, 6, 10, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 0;
}

.home-coaches {
    background: rgba(3, 6, 10, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.home-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 12px;
}

.home-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.home-lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
    margin-top: 4px;
}

.home-faq__intro .home-link-btn {
    margin-top: 28px;
}

.home-block__header {
    margin-bottom: var(--home-header-gap, 52px);
}

.home-block__header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.home-block__header--row .home-lead {
    max-width: 480px;
}

.home-block__footer {
    margin-top: var(--home-content-gap, 40px);
    text-align: center;
}

.home-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 255, 0.35);
    color: #cfe9ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.home-link-btn:hover {
    background: rgba(14, 165, 255, 0.12);
    border-color: var(--neon);
    color: #fff;
}

.home-link-btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.home-link-btn:hover i {
    transform: translateX(4px);
}

/* Pillars */
.home-pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-pillar {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.home-pillar__num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(14, 165, 255, 0.35);
}

.home-pillar__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(14, 165, 255, 0.12);
    border: 1px solid rgba(14, 165, 255, 0.22);
    color: var(--neon);
    font-size: 20px;
    margin-bottom: 18px;
}

.home-pillar h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 10px;
}

.home-pillar p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Classes bento */
.home-classes {
    background: transparent;
}

.home-classes__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.home-class-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-class-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.home-class-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.home-class-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 200px;
    padding: 22px;
    background: linear-gradient(180deg, transparent 30%, rgba(3, 6, 10, 0.92));
}

.home-class-card--featured {
    grid-row: span 2;
    min-height: 100%;
}

.home-class-card--featured .home-class-card__content {
    min-height: 420px;
}

.home-class-card--wide {
    grid-column: span 2;
}

.home-class-card__tag {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(14, 165, 255, 0.2);
    color: #7dd3fc;
    margin-bottom: 10px;
}

.home-class-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
}

.home-class-card p {
    color: var(--muted);
    font-size: 13px;
}

.home-class-card__cta {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon);
}

/* Plans */
.home-plans {
    background: rgba(3, 6, 10, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.home-plan {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.home-plan:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 255, 0.2);
}

.home-plan--featured {
    border-color: rgba(14, 165, 255, 0.45);
    background: linear-gradient(180deg, rgba(14, 165, 255, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: 0 0 40px rgba(14, 165, 255, 0.08);
    position: relative;
}

.home-plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #0077ff, #00a8ff);
    color: #fff;
}

.home-plan__head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-plan__head h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.home-plan__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.home-plan__amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--neon);
    line-height: 1;
}

.home-plan__period {
    color: var(--muted);
    font-size: 15px;
}

.home-plan__features {
    list-style: none;
    flex: 1;
    margin: 0 0 24px;
    padding: 0;
}

.home-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.home-plan__features li:last-child {
    border-bottom: none;
}

.home-plan__features i {
    color: #4ade80;
    margin-top: 3px;
    font-size: 12px;
}

.home-plan__btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfe9ff;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.home-plan__btn:hover {
    border-color: var(--neon);
    background: rgba(14, 165, 255, 0.1);
    color: #fff;
}

.home-plan__btn--primary {
    background: linear-gradient(90deg, #0077ff, #00a8ff);
    border-color: transparent;
    color: #fff;
}

.home-plan__btn--primary:hover {
    box-shadow: 0 8px 24px rgba(0, 120, 255, 0.25);
}

.home-perks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin: 56px 0 0;
    padding: 28px 32px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.home-perks i {
    color: var(--neon);
}

.home-plans__note {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
}

.home-plans__note a {
    color: var(--neon);
    text-decoration: none;
}

.home-plans__note a:hover {
    text-decoration: underline;
}

.home-plans__note a + a::before {
    content: "·";
    margin: 0 10px;
    color: var(--muted);
}

/* Coaches */
.home-coaches__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-coach {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-coach:hover {
    border-color: rgba(14, 165, 255, 0.22);
    transform: translateX(6px);
}

.home-coach__photo {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-coach__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-coach__body h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
}

.home-coach__role {
    display: inline-block;
    color: var(--neon);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.home-coach__body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Reviews */
.home-reviews {
    background: rgba(3, 6, 10, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.home-reviews__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.home-reviews__featured {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(14, 165, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(14, 165, 255, 0.2);
}

.home-reviews__featured blockquote {
    margin: 20px 0 0;
}

.home-reviews__featured blockquote p {
    font-size: 20px;
    line-height: 1.55;
    color: #e8f4ff;
    font-style: italic;
    margin-bottom: 24px;
}

.home-reviews__featured footer strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.home-reviews__featured footer span {
    color: var(--muted);
    font-size: 13px;
}

.home-reviews__rating {
    color: #ffd166;
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 16px;
}

.home-reviews__stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-review-card {
    flex: 1;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-review-card .home-reviews__rating {
    margin-top: 0;
    margin-bottom: 12px;
}

.home-review-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.home-review-card footer strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.home-review-card footer span {
    color: var(--muted);
    font-size: 12px;
}

/* FAQ */
.home-faq__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}

.home-faq__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-faq__item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.home-faq__item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-faq__item summary::-webkit-details-marker {
    display: none;
}

.home-faq__item summary::after {
    content: "+";
    color: var(--neon);
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.home-faq__item[open] summary::after {
    content: "−";
}

.home-faq__item p {
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.home-faq__item p a {
    color: var(--neon);
}

/* CTA */
.home-cta {
    position: relative;
    overflow: hidden;
}

.home-cta__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(3, 6, 10, 0.92), rgba(3, 6, 10, 0.75)),
        url("images/gym4-Photoroom.png") center / cover no-repeat;
    filter: brightness(0.6);
}

.home-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.home-cta__title {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.home-cta__text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.home-cta__meta {
    color: var(--muted);
    font-size: 14px;
}

.home-cta__meta i {
    color: var(--neon);
    margin-right: 6px;
}

/* Home redesign — responsive */
@media (max-width: 1199px) {
    .home-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-classes__bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-class-card--featured {
        grid-row: span 1;
    }

    .home-class-card--featured .home-class-card__content {
        min-height: 220px;
    }

    .home-class-card--wide {
        grid-column: span 2;
    }

    .home-plans__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .home-plan--featured {
        order: -1;
    }

    .home-reviews__layout {
        grid-template-columns: 1fr;
    }

    .home-faq__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 991px) {
    body[data-page="home"] {
        --home-py: 64px;
        --home-header-gap: 36px;
    }

}

@media (max-width: 767px) {
    body[data-page="home"] {
        --home-py: 56px;
        --home-header-gap: 32px;
        --home-content-gap: 24px;
    }

    body[data-page="home"] .hero.hero--viewport {
        --nav-h: 84px;
    }

    body[data-page="home"] .hero-inner {
        padding: 4px 16px 0;
    }

    body[data-page="home"] .hero--viewport .home-stats {
        padding: 14px 0;
    }

    body[data-page="home"] h1.title {
        font-size: clamp(26px, 7vw, 32px);
    }

    body[data-page="home"] p.lead {
        font-size: 14px;
        margin-bottom: 16px;
    }

    body[data-page="home"] #about.page-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .home-stat {
        padding: 12px;
        gap: 10px;
    }

    .home-stat__icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .home-stat__value {
        font-size: 22px;
    }

    .home-pillars__grid {
        grid-template-columns: 1fr;
    }

    .home-block__header--row {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-classes__bento {
        grid-template-columns: 1fr;
    }

    .home-class-card--wide {
        grid-column: span 1;
    }

    .home-coach {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 16px;
    }

    .home-coach__photo {
        width: 100px;
        height: 100px;
    }

    .home-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta__actions .hero-cta {
        text-align: center;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .feature-icon,
    .info-icon,
    .logo-img {
        -webkit-font-smoothing: antialiased;
    }
}

/* Print styles */
@media print {

    .hero,
    .feature-card,
    .pricing-card,
    .trainer-card,
    .class-card {
        break-inside: avoid;
    }

    .menu-toggle,
    .cta,
    .hero-cta,
    .btn-send {
        display: none;
    }
}