/* Ported from project styles.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #161616;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.modal-open { 
    overflow: hidden !important;
}
body.nav-open { overflow: hidden; }

/* Main content area - grows to fill space and push footer down */
main {
    flex: 1;
}

/* Modal */
.modal { 
    position: fixed; 
    inset: 0; 
    display: none; 
    z-index: 999999; 
    overflow-y: auto;
    padding: 0;
    box-sizing: border-box;
}
.modal.is-open { 
    display: block; 
}
.modal-backdrop { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.55); 
    backdrop-filter: blur(4px); 
    z-index: 999998;
}
.modal-dialog { 
    position: relative; 
    z-index: 999999; 
    width: 100%; 
    max-width: 520px; 
    margin: 10vh auto; 
    background: #FFFFFF; 
    border-radius: 16px; 
    border: 1px solid #E5E7EB; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.25); 
    padding: 24px;
    box-sizing: border-box;
    max-height: calc(100vh - 20px); 
    overflow: auto; 
}
.modal-close { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border-radius: 50%; border: none; background: #F3F4F6; cursor: pointer; font-size: 20px; line-height: 1; }
.modal-header { margin-bottom: 12px; }
.modal-title { font-size: 24px; line-height: 1.2; color: #161616; margin-bottom: 6px; }
.modal-subtitle { font-size: 14px; color: #6A7282; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form .form-row input, .modal-form .form-row textarea { width: 100%; padding: 14px; background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; }
.modal-form .form-row input:focus, .modal-form .form-row textarea:focus { outline: none; border-color: #FDC700; }
.modal-submit { width: 100%; margin-top: 4px; }

@media (max-width: 480px) {
    .modal-dialog { 
        margin: 8vh 20px; 
        padding: 20px; 
        max-width: calc(100% - 40px); /* Ensure it doesn't overflow */
        box-sizing: border-box;
    }
}

@media (max-width: 360px) {
    .modal-dialog { 
        margin: 5vh 16px; 
        padding: 16px; 
        max-width: calc(100% - 32px);
        box-sizing: border-box;
    }
    .modal-title {
        font-size: 20px;
    }
    .modal-subtitle {
        font-size: 13px;
    }
}

/* Mobile menu toggle base style (hidden by default) */
.mobile-menu-toggle {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Micro-interactions */
.nav-link { position: relative; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%); transition: width .25s ease; }
.nav-link:hover::after { width: 100%; }

.btn-primary, .btn-secondary, .btn-cta, .btn-cta-white, .btn-trainers-cta, .btn-about, .btn-pricing { 
    will-change: transform;
    text-decoration: none;
}
.btn-primary:active, .btn-secondary:active, .btn-cta:active, .btn-cta-white:active, .btn-trainers-cta:active, .btn-about:active, .btn-pricing:active { 
    transform: scale(0.98);
}
.btn-primary:hover, .btn-secondary:hover, .btn-cta:hover, .btn-cta-white:hover, .btn-trainers-cta:hover, .btn-about:hover, .btn-pricing:hover,
.btn-primary:focus, .btn-secondary:focus, .btn-cta:focus, .btn-cta-white:focus, .btn-trainers-cta:focus, .btn-about:focus, .btn-pricing:focus,
.btn-primary:visited, .btn-secondary:visited, .btn-cta:visited, .btn-cta-white:visited, .btn-trainers-cta:visited, .btn-about:visited, .btn-pricing:visited {
    text-decoration: none;
}

/* Remove underline from all elements inside buttons */
.btn-primary span, .btn-secondary span, .btn-cta span, .btn-cta-white span, 
.btn-trainers-cta span, .btn-about span, .btn-pricing span,
.btn-primary, .btn-secondary, .btn-cta, .btn-cta-white, 
.btn-trainers-cta, .btn-about, .btn-pricing {
    text-decoration: none !important;
}

/* Lottie containers */
.lottie-cue { width: 24px; height: 48px; }
.lottie-cta { width: 120px; height: 120px; margin: 8px 0 0; }

/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

/* WordPress Admin Bar adjustment */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* Hide admin bar offset when admin bar is hidden on scroll */
body.admin-bar #wpadminbar.hover {
    top: 0 !important;
}

body.admin-bar.scrolled-down .header {
    top: 0;
}

.header-container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 1px;
    flex-shrink: 0;
    z-index: 10;
}

.logo img {
    width: auto;
    height: 40px;
    display: block;
    max-width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FDC700;
}

.btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    width: 188px;
    height: 54px;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%);
    background-size: 220% 220%;
    animation: gradientShift 6s ease-in-out infinite alternate;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25em;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 199, 0, 0.35), 0 0 24px rgba(253, 199, 0, 0.25);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 944px;
    background: #161616;
    overflow: hidden;
}

/* Hero Figma Section - Updated positioning */
.hero-figma {
    position: relative;
    width: 100%;
    height: 944px;
    background: #161616;
    overflow: hidden;
}

/* Desktop positioning for Hero Figma - only on screens wider than 1024px */
@media (min-width: 1025px) {
    .hero-figma .hero-wrapper {
        position: relative;
        z-index: 3;
        width: 100%;
        height: 944px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .hero-figma .hero-desktop-nav {
        position: absolute;
        top: 7px;
        left: 217px;
        right: 217px;
        height: 80px;
        z-index: 10;
    }

    .hero-figma .hero-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding-right: 30px;
    }

    .hero-figma .hero-badge {
        position: absolute !important;
        top: 269px !important;
        left: 217px !important;
    }

    .hero-figma .hero-title-blur {
        position: absolute !important;
        left: -100px !important;
        top: 62px !important;
        transform: none !important;
        z-index: -1 !important;
    }

    .hero-figma .hero-main-heading {
        position: absolute !important;
        left: 217px !important;
        top: 323px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        max-width: 830px !important;
        z-index: 2 !important;
    }

    .hero-figma .hero-svg-title {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 500.53px !important;
        margin-bottom: 21.96px !important;
    }

    .hero-figma .hero-title {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
        max-width: 510px !important;
        margin: 0 0 24px 0 !important;
        text-align: left !important;
    }

    .hero-figma .hero-main-cta-btn {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .hero-figma .hero-promo-card {
        position: absolute !important;
        top: 333px !important;
        right: 218px !important;
        z-index: 2 !important;
    }

    .hero-figma .hero-virtual-card {
        position: absolute !important;
        top: 441px !important;
        right: 218px !important;
        z-index: 2 !important;
    }

    .hero-figma .hero-address-section {
        position: absolute !important;
        left: 217px !important;
        bottom: 80px !important;
        z-index: 2 !important;
    }

    .hero-figma .hero-scroll-indicator {
        position: absolute !important;
        left: 50% !important;
        bottom: 32px !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }

    /* Show desktop button only on desktop */
    .hero-main-cta-desktop {
        display: block !important;
    }

    .hero-main-cta-mobile {
        display: none !important;
    }
}

/* Base styles for buttons (mobile-first approach) */
.hero-main-cta-desktop {
    display: none;
}

.hero-main-cta-mobile {
    display: block;
    margin: 20px auto 0;
}

/* Override for mobile devices */
@media (max-width: 1024px) {
    .hero-main-cta-desktop {
        display: none !important;
    }

    .hero-main-cta-mobile {
        display: block !important;
        margin: 20px auto 0 !important;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 1534px;
    height: 944px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 21%, rgba(0, 0, 0, 0) 64%);
}

.hero-gradient-2 {
    position: absolute;
    top: -295px;
    left: -53px;
    width: 1973px;
    height: 1534px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 21%, rgba(0, 0, 0, 0) 64%);
}

.hero-blur-yellow {
    position: absolute;
    top: 80px;
    right: 426px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.2);
    border-radius: 50%;
    filter: blur(128px);
}

.hero-blur-yellow-2 {
    position: absolute;
    top: 544px;
    left: 40px;
    width: 320px;
    height: 320px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 143.25px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-text {
    max-width: 616px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    height: 38px;
    background: linear-gradient(90deg, rgba(253, 199, 0, 0.2) 0%, rgba(208, 135, 0, 0.2) 100%);
    border: 1px solid rgba(253, 199, 0, 0.4);
    border-radius: 9999px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #FDC700;
    border-radius: 50%;
    opacity: 0.7536010146141052;
    box-shadow: 0 0 0 rgba(253, 199, 0, 0.0);
    animation: badgeBlink 1.2s ease-in-out infinite;
}

.badge-text {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #FFFFFF;
}

@keyframes badgeBlink {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
        box-shadow: 0 0 0 rgba(253, 199, 0, 0.0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(253, 199, 0, 0.6), 0 0 16px rgba(253, 199, 0, 0.25);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(253, 199, 0, 0.0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .badge-dot { animation: none; }
}


.title-gradient {
    background: linear-gradient(125deg, #FF9000 9%, #FFD400 50%, #FFAF00 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite alternate;
}

.title-white {
    color: #FFFFFF;
}

.hero-underline {
    width: 476px;
    height: 4px;
    background: linear-gradient(90deg, #FDC700 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.73;
    border-radius: 93px;
    margin-bottom: 32px;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

.hero-description {
    font-size: clamp(14px, 2.2vw, 18.818737030029297px);
    line-height: 1.6250000253384251em;
    color: #D1D5DC;
    margin-bottom: 64px;
    max-width: 576px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 96px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 31px;
    height: 51px;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%);
    background-size: 220% 220%;
    animation: gradientShift 6s ease-in-out infinite alternate;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 199, 0, 0.35), 0 0 24px rgba(253, 199, 0, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 22px;
    height: 51px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #FDC700;
    background: rgba(253, 199, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 36px;
    line-height: 1.1111111111111112em;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(90deg, #FDC700 54%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #99A1AF;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        padding-bottom: 0;
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: -120px; /* Move further down to be on white background */
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 20px 0;
        background: transparent;
        width: 100%;
        z-index: 10;
    }
    
    .scroll-text {
        color: #161616;
    }
    
    /* White background section after hero to ensure scroll indicator is on white */
    .hero::after {
        content: '';
        position: absolute;
        bottom: -150px; /* Extend white background further */
        left: 0;
        right: 0;
        height: 150px; /* Increased height */
        background: #FFFFFF;
        z-index: 1;
    }
    
    /* Ensure About section starts with white background */
    .about {
        padding-top: 180px; /* Add padding to accommodate scroll indicator */
    }
}

.scroll-text {
    font-size: 12px;
    line-height: 1.3333333333333333em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* replaced by lottie-cue */

/* About Section */
.about {
    position: relative;
    padding: 128px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    overflow: hidden;
}

.about-blur-yellow {
    position: absolute;
    top: 232px;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.about-blur-yellow-2 {
    position: absolute;
    top: 312px;
    right: 386px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.05);
    border-radius: 50%;
    filter: blur(128px);
}

.about-content {
    display: grid;
    grid-template-columns: 592px 592px;
    gap: 64px;
    align-items: start;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F0B100;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(28px, 5vw, 60px);
    line-height: 1em;
    letter-spacing: -0.025em;
    color: #161616;
    margin-bottom: 32px;
}

.section-title .title-gradient {
    font-weight: 700;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 45%, #FFD400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 220% 220%;
    animation: gradientShift 7s ease-in-out infinite alternate;
}

.section-description {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: 1.625em;
    color: #4A5565;
    margin-bottom: 32px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 284px);
    gap: 24px;
    margin-bottom: 48px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat-number {
    font-size: 48px;
    line-height: 1em;
    color: #161616;
}

.about-stat-label {
    font-size: 16px;
    line-height: 1.5em;
    color: #4A5565;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    height: 56px;
    background: #161616;
    border: none;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-about:hover,
.btn-about:focus,
.btn-about:active {
    text-decoration: none;
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 22, 22, 0.2);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 33px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: #FDC700;
    box-shadow: 0 4px 12px rgba(253, 199, 0, 0.1);
}

.feature-card-active {
    background: linear-gradient(135deg, #FDC700 0%, #F0B100 100%);
    border-color: #FFA500;
}

.feature-icon {
    font-size: 48px; /* legacy fallback */
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: #161616;
    margin-bottom: 8px;
}

.feature-card-active .feature-title {
    color: #FFFFFF;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5em;
    color: #6A7282;
}

.feature-card-active .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    position: relative;
    padding: 128px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.services-blur-yellow {
    position: absolute;
    top: 0;
    right: 386px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.05);
    border-radius: 50%;
    filter: blur(128px);
}

.services-blur-dark {
    position: absolute;
    top: 1905px;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    filter: blur(128px);
}

.services-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    margin-top: 0;
    justify-content: center;
    max-width: 1248px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
    }
    
    .service-card-large {
        grid-column: 1;
    }
}

.service-card {
    position: relative;
    width: 100%;
    max-width: 608px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 200ms ease;
}


.service-card-large {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1248px;
    height: 500px;
    margin: 0;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/service-personal-training.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.service-card-bg-2 {
    background-image: url('../images/service-group-classes.png');
}

.service-card-bg-3 {
    background-image: url('../images/service-yoga.png');
}

.service-card-bg-4 {
    background-image: url('../images/service-boxing.png');
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 48px 48px 38px;
}

.service-card:not(.service-card-large) .service-card-content {
    padding: 20px 16px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FDC700 56%, #FF9500 100%);
    background-size: 200% 200%;
    animation: gradientShift 7s ease-in-out infinite alternate;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    line-height: 1.43em;
    color: #FFFFFF;
    box-shadow: 0 0 0 rgba(253, 199, 0, 0);
    transition: box-shadow 0.3s;
}

.service-badge-price {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-badge:hover,
.service-badge-price:hover {
    box-shadow: 0 0 12px rgba(253, 199, 0, 0.45), 0 0 28px rgba(253, 199, 0, 0.25);
}

.service-card-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card-title {
    font-size: clamp(22px, 4.5vw, 36px);
    font-weight: 400;
    line-height: 1.11em;
    color: #FFFFFF;
}

.service-card-description {
    font-size: 18px;
    line-height: 1.56em;
    color: #D1D5DC;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.5em;
    color: #FDC700;
    text-decoration: none;
    margin-top: 12px;
}

.service-card-link:hover {
    opacity: 0.8;
}

.services-cta {
    position: relative;
    height: 252px;
    padding: 48px;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%), linear-gradient(90deg, #FFAE00 0%, #FFB300 18%, #FDC700 100%);
    border-radius: 24px;
    overflow: hidden;
}

.services-cta-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.services-cta-content {
    position: relative;
    z-index: 1;
    max-width: 768px;
}

.services-cta h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 16px;
    line-height: 1.5em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #FFFFFF;
    color: #161616;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.3s;
    height: 56px;
    text-decoration: none;
}

.btn-cta-white:hover {
    opacity: 0.9;
}

/* Schedule / Pricing Section */
.schedule {
    position: relative;
    padding: 128px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.schedule-blur-yellow {
    position: absolute;
    top: 192px;
    left: 50%;
    transform: translateX(-50%);
    width: 678px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.schedule-blur-yellow-2 {
    position: absolute;
    top: 1554px;
    left: 50%;
    transform: translateX(-50%);
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.05);
    border-radius: 50%;
    filter: blur(128px);
}

.schedule-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 80px;
}

.section-tag-center {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FDC700;
    margin-bottom: 16px;
}

.section-title-center {
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1em;
    letter-spacing: -0.025em;
    color: #161616;
    text-align: center;
    margin-bottom: 16px;
}

.title-gradient-bold {
    display: block;
    font-weight: 700;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 40%, #FFD400 85%, #FDC700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 250% 250%;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

/* Subtle yellow glow utility for headings */
.glow-text-yellow { text-shadow: 0 0 10px rgba(253, 199, 0, 0.35), 0 0 22px rgba(253, 199, 0, 0.2); }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.discount-badge {
    display: block;
    font-size: 20px;
    line-height: 1.4em;
    color: #99A1AF;
    text-align: center;
    margin-top: 16px;
}

.pricing-period-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px auto 40px;
    max-width: 1248px;
    padding: 0 20px;
}

.pricing-period-label {
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    line-height: 1.5em;
}

.pricing-period-select {
    padding: 12px 20px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23161616' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    min-width: 180px;
}

.pricing-period-select:hover {
    background-color: #FFFFFF;
    border-color: #FDC700;
}

.pricing-period-select:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: #FDC700;
    box-shadow: 0 0 0 3px rgba(253, 199, 0, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Мобильные устройства - тарифы друг под другом */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 16px;
    }
}

/* Центрирование когда тарифов 2 (только на десктопе) */
@media (min-width: 769px) {
    .pricing-cards:has(.pricing-card:nth-child(2):last-child),
    .pricing-cards-two {
        grid-template-columns: repeat(2, 1fr);
        max-width: 832px;
        justify-content: center;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 33px;
    min-height: 558px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card-featured {
    background: #FFFFFF;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-14px);
    min-height: 550px;
}

.pricing-card-featured .price-amount {
    color: #161616;
}

.pricing-card-featured .price-period {
    color: #6A7282;
}

.pricing-card-featured:hover {
    transform: translateY(-22px);
}


.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-price-container {
    margin-bottom: 24px;
    text-align: center;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
    color: #161616;
    margin-bottom: 4px;
}

.price-value {
    display: inline-block;
}

.price-currency {
    display: inline-block;
    margin-left: 4px;
    font-size: 28px;
}

.price-period {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #99A1AF;
}

.pricing-subtitle {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #99A1AF;
    margin-bottom: 8px;
}

.pricing-subtitle-dark {
    color: rgba(0, 0, 0, 0.7);
}

.pricing-title {
    font-size: clamp(20px, 3.6vw, 30px);
    font-weight: 400;
    line-height: 1.2em;
    color: #161616;
    margin-bottom: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #161616;
    margin-bottom: 16px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    color: #FDC700;
    font-weight: bold;
}

.pricing-features li.feature-bold {
    font-weight: 700;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(157, 157, 157, 0.88);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    text-transform: uppercase;
    text-align: center;
    color: #161616;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    text-decoration: none;
}

.btn-pricing:hover {
    background: rgba(253, 199, 0, 0.1);
    border-color: #FDC700;
}

.btn-pricing-featured {
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%);
    background-size: 220% 220%;
    animation: gradientShift 7s ease-in-out infinite alternate;
    border: none;
    color: #FFFFFF;
}

.btn-pricing-featured:hover {
    background: linear-gradient(90deg, #FFD400 0%, #FDC700 54%);
}

/* Group Schedule Section */
.group-schedule {
    padding: 80px 0;
    background: #FFFFFF;
}

.schedule-title {
    font-size: clamp(22px, 4.2vw, 36px);
    line-height: 1.1111111111111112em;
    text-align: center;
    color: #161616;
    margin-bottom: 48px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 24px;
    margin-bottom: 32px;
    justify-content: center;
}

.schedule-card {
    padding: 25px;
    height: 190px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.schedule-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.schedule-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FDC700 56%, #FF9500 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-time-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1.3333333333333333em;
    color: #99A1AF;
}

.schedule-class {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: #161616;
    margin-bottom: 8px;
}

.schedule-trainer {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #99A1AF;
    margin-bottom: 4px;
}

.schedule-level {
    display: flex;
    align-items: center;
    gap: 8px;
}

.level-dot {
    width: 8px;
    height: 8px;
    background: #FDC700;
    border-radius: 50%;
}

.level-text {
    font-size: 12px;
    line-height: 1.3333333333333333em;
    color: #6A7282;
}

.schedule-note {
    text-align: center;
    padding-top: 32px;
}

.schedule-note p {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #6A7282;
}

/* Trainers Section */
.trainers {
    position: relative;
    padding: 128px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    overflow: hidden;
}

.trainers-blur-yellow {
    position: absolute;
    top: 428px;
    right: 386px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.trainers-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 394.66px);
    gap: 32px;
    margin-bottom: 48px;
    justify-content: center;
}

.trainer-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trainer-detail-btn {
    cursor: pointer;
    border-radius: 8px !important;
    border-color: rgba(22, 22, 22, 0.3) !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.trainer-detail-btn span,
.trainer-detail-btn svg {
    transition: color 0.3s ease, stroke 0.3s ease;
}

.trainer-detail-btn:hover {
    background: #161616 !important;
    color: #FFFFFF !important;
    border-color: #161616 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 22, 22, 0.2);
}

.trainer-detail-btn:hover span {
    color: #FFFFFF !important;
}

.trainer-detail-btn:hover svg {
    color: #FFFFFF !important;
}

.trainer-detail-btn:hover svg path {
    stroke: #FFFFFF !important;
}

.trainer-detail-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(22, 22, 22, 0.15);
}

.trainer-photo {
    position: relative;
    width: 100%;
    height: 526.2px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 24px;
    overflow: hidden;
}

.trainer-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.trainer-info-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trainer-name {
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 400;
    line-height: 1.3333333333333333em;
    color: #FFFFFF;
}

.trainer-position {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #FDC700;
}

.trainer-achievements {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 25px 25px 1px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    min-height: 162px;
}

.achievements-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievements-header span {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #4A5565;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievements-list li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #364153;
}

.achievements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #FDC700;
    border-radius: 50%;
}

.trainers-cta {
    position: relative;
    padding: 80px 48px;
    background: linear-gradient(90deg, #FF9000 0%, #FFBC00 100%);
    border-radius: 24px;
    overflow: hidden;
    min-height: 332px;
}

.trainers-cta-content {
    position: relative;
    z-index: 1;
    max-width: 768px;
}

.trainers-cta h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1111111111111112em;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.trainers-cta p {
    font-size: 20px;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.btn-trainers-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    height: 56px;
    background: #FFFFFF;
    border: none;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #161616;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

/* Programs Section */
.programs {
    position: relative;
    padding: 128px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    overflow: hidden;
}

.programs-blur-yellow {
    position: absolute;
    top: 428px;
    left: 386px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.programs-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    justify-content: center;
}

.program-card-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.program-card-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.program-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-name-compact {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: #161616;
    margin: 0;
}

.program-excerpt-compact {
    font-size: 14px;
    line-height: 1.5em;
    color: #6A7282;
    margin: 0;
}

.program-details-compact {
    flex: 1;
}

.program-details-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.program-details-list-compact li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.5em;
    color: #364153;
}

.program-details-list-compact li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #FDC700;
    border-radius: 50%;
}

.program-detail-btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(22, 22, 22, 0.3);
    border-radius: 8px;
    color: #161616;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.program-detail-btn-compact:hover {
    background: #161616;
    color: #FFFFFF;
    border-color: #161616;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 22, 22, 0.2);
}

.program-detail-btn-compact:hover svg path {
    stroke: #FFFFFF;
}

/* Promotions Section */
.promotions {
    position: relative;
    padding: 128px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    overflow: hidden;
}

.promotions-blur-yellow {
    position: absolute;
    top: 200px;
    right: 200px;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.promotions-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.promotion-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.promotion-card-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promotion-header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.promotion-logo {
    font-size: 18px;
    font-weight: 700;
    color: #161616;
}

.promotion-partner-logo {
    font-size: 14px;
    font-weight: 600;
    color: #161616;
    padding: 6px 12px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.promotion-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3em;
    color: #161616;
    margin-bottom: 8px;
}

.promotion-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    color: #4A5565;
    margin-bottom: 16px;
}

.promotion-description {
    font-size: 14px;
    line-height: 1.5em;
    color: #6A7282;
    margin-bottom: 24px;
}

.promotion-payment-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.promotion-payment-title {
    font-size: 14px;
    font-weight: 600;
    color: #4A5565;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promotion-payment-total {
    font-size: 28px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 8px;
}

.promotion-payment-split {
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 16px;
}

.promotion-payment-details {
    font-size: 14px;
    color: #6A7282;
    margin-bottom: 12px;
}

.promotion-payment-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.promotion-payment-dates > div {
    font-size: 14px;
    color: #161616;
    padding: 8px 12px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
}

/* Подарочный сертификат карточка */
.promotion-card-gift {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.promotion-gift-header {
    margin-bottom: 24px;
}

.promotion-gift-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3em;
    color: #161616;
    margin-bottom: 12px;
}

.promotion-gift-subtitle {
    font-size: 16px;
    line-height: 1.5em;
    color: #4A5565;
}

.promotion-gift-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.promotion-gift-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.promotion-gift-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.promotion-gift-footer .promotion-logo {
    color: #161616;
}

/* Трейд-ин карточка */
.promotion-card-tradein {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.promotion-tradein-header {
    margin-bottom: 20px;
}

.promotion-tradein-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3em;
    color: #161616;
    margin-bottom: 8px;
}

.promotion-tradein-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    color: #4A5565;
}

.promotion-tradein-description {
    font-size: 14px;
    line-height: 1.5em;
    color: #6A7282;
    margin-bottom: 24px;
}

.promotion-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(90deg, #FDC700 0%, #F0B100 54%);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.promotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 199, 0, 0.35), 0 0 24px rgba(253, 199, 0, 0.25);
}

.promotion-tradein-footer {
    margin-top: auto;
}

.promotion-tradein-footer .promotion-logo {
    color: #161616;
}

.promotion-link {
    font-size: 16px;
    font-weight: 600;
    color: #FDC700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promotion-link:hover {
    color: #F0B100;
    text-decoration: underline;
}

.btn-trainers-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 128px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.contact-blur-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(253, 199, 0, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.contact-blur-dark {
    position: absolute;
    top: 1374px;
    right: 386px;
    width: 384px;
    height: 384px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    filter: blur(128px);
}

.contact-header {
    max-width: 768px;
    margin: 0 auto 80px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    font-size: 32px; /* legacy fallback */
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: #161616;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.5em;
    color: #4A5565;
}

.contact-form-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #161616;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDC700;
}

.form-group textarea {
    resize: vertical;
}

.contact-map {
    width: 100%;
    height: 384px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 24px;
}

/* Footer */
.footer {
    padding: 49px 0 0 41px;
    background: #161616;
    border-top: 1px solid rgba(253, 199, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 0 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.5em;
    color: #99A1AF;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(253, 199, 0, 0.2);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links, .footer-links a {
    font-size: 14px;
    line-height: 1.5em;
    color: #99A1AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FDC700;
}

.footer-bottom {
    padding: 16px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.5em;
    color: #6A7282;
    margin-bottom: 12px;
}

.footer-company {
    font-size: 13px;
    line-height: 1.5em;
    color: #6A7282;
    margin-bottom: 12px;
}

.footer-company p {
    margin-bottom: 4px;
}

.footer-company .company-name {
    font-weight: 600;
    color: #FFFFFF;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-legal a {
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #FDC700;
}

.footer-legal .separator {
    color: #6A7282;
    font-size: 12px;
}

/* Form checkbox styles */
.form-checkbox {
    margin: 16px 0 !important;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #6A7282;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    min-width: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #FDC700;
    order: -1;
    flex-shrink: 0;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: #FDC700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.checkbox-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .header-container {
        gap: 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card-featured {
        transform: translateY(0);
    }

    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 32px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 720px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .service-card {
        height: 320px;
        max-width: 100%;
    }

    .service-card-large {
        height: 420px;
        max-width: 100%;
    }

    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        padding: 0 16px;
        gap: 8px;
    }

    .navigation {
        display: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
        order: -1;
    }

    .logo {
        order: 0;
        display: flex;
        flex-shrink: 0;
    }

    .logo img {
        display: block;
        width: auto;
        height: 32px;
        max-width: 140px;
    }

    .btn-cta {
        order: 1;
    }



    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .service-card {
        min-height: 280px;
        height: auto;
        margin: 0;
    }
    
    .service-card-large {
        grid-column: 1;
        min-height: 320px;
        height: auto;
        margin: 0;
    }
    
    .service-card-content {
        padding: 24px 20px;
        justify-content: flex-start;
    }
    
    .service-card-header {
        margin-bottom: 16px;
    }
    
    .service-card-info {
        flex: 1;
        gap: 12px;
    }
    
    .service-card-description {
        line-height: 1.5;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.hero-title {
    margin-bottom: 10px !important;
}

@media (max-width: 480px) {

    .hero-scroll-indicator {
        display: none !important;
    }
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 6px 0;
    }

    .header-container {
        padding: 0 12px;
        gap: 8px;
        height: 44px;
    }

    .logo {
        display: flex;
        flex-shrink: 0;
    }

    .logo img {
        width: 120px;
        height: auto;
        display: block;
        max-width: 100%;
    }

    .btn-cta {
        width: auto;
        height: 36px;
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 6px;
        min-width: auto;
    }



    .btn-primary,
    .btn-secondary {
        width: 100%;
        height: 44px;
        padding: 12px 16px;
        font-size: 12px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .about-content {
        gap: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
        border-radius: 16px;
    }

    .services {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 48px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        width: 100%;
        min-height: 280px;
        height: auto;
        border-radius: 16px;
        max-width: 100%;
        margin: 0;
    }

    .service-card-large {
        grid-column: 1;
        width: 100%;
        min-height: 320px;
        height: auto;
        max-width: 100%;
        margin: 0;
    }

    .service-card-content {
        padding: 24px 20px;
        min-height: 100%;
        justify-content: flex-start;
    }

    .service-card-header {
        margin-bottom: 16px;
    }

    .service-card-info {
        flex: 1;
        gap: 12px;
    }

    .service-card-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .service-card-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .services-cta {
        height: auto;
        padding: 24px;
        border-radius: 16px;
    }

    .services-cta h3 {
        font-size: 22px;
    }

    .btn-cta-white {
        width: 100%;
        height: 48px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .schedule {
        padding: 80px 0;
    }

    .section-title-center {
        font-size: 36px;
    }

    .discount-badge {
        font-size: 14px;
    }

    .pricing-period-filter {
        flex-direction: column;
        gap: 16px;
        margin: 24px auto 32px;
        padding: 0 16px;
    }

    .pricing-period-label {
        font-size: 14px;
    }

    .pricing-period-select {
        width: 100%;
        max-width: 280px;
        padding: 10px 16px;
        padding-right: 44px;
        font-size: 14px;
    }

    .pricing-cards {
        gap: 16px;
        padding: 0 16px;
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 20px;
        min-height: auto;
        border-radius: 16px;
    }

    .pricing-card:nth-child(1),
    .pricing-card:nth-child(3) {
        opacity: 1;
        pointer-events: auto;
    }

    .price-amount {
        font-size: 28px;
    }

    .price-currency {
        font-size: 22px;
    }

    .pricing-title {
        font-size: 24px;
    }

    .btn-pricing {
        height: 44px;
        font-size: 12px;
    }

    .group-schedule {
        padding: 64px 0;
    }

    .schedule-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: none;
        margin: 0 16px 16px;
    }

    .schedule-card {
        height: auto;
        padding: 16px;
    }

    .trainers {
        padding: 80px 0;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trainer-photo {
        height: 420px;
        border-radius: 16px;
    }

    .trainer-name {
        font-size: 20px;
    }

    .programs {
        padding: 80px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card-compact {
        padding: 20px;
    }

    .program-name-compact {
        font-size: 18px;
    }

    .promotions {
        padding: 80px 0;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promotion-card-content {
        padding: 20px;
    }

    .promotion-title {
        font-size: 20px;
    }

    .promotion-gift-title,
    .promotion-tradein-title {
        font-size: 24px;
    }

    .trainers-cta {
        padding: 32px 20px;
        min-height: auto;
        border-radius: 16px;
    }

    .trainers-cta h3 {
        font-size: 24px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-content {
        gap: 32px;
        margin-bottom: 32px;
    }

    .contact-form-wrapper {
        padding: 20px;
        border-radius: 16px;
    }

    .contact-map {
        height: 220px;
        border-radius: 16px;
    }

    .footer {
        padding: 32px 0 0 16px;
    }

    .footer-content {
        padding: 0 16px 24px;
        gap: 24px;
    }

    .footer-logo {
        width: 120px;
    }
}



/* Pagination Styles */
.pagination,
.page-numbers,
nav.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.page-numbers a,
.page-numbers span,
nav.pagination a,
nav.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #364153;
    text-decoration: none;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination a:hover,
.page-numbers a:hover,
nav.pagination a:hover {
    background: #FDC700;
    color: #161616;
    border-color: #FDC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 199, 0, 0.25);
    transition: all 0.3s ease;
}

.pagination a:active,
.page-numbers a:active,
nav.pagination a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(253, 199, 0, 0.15);
}

.pagination .current,
.pagination span.current,
.page-numbers .current,
.page-numbers span.current,
nav.pagination .current,
nav.pagination span.current {
    background: #FDC700;
    color: #161616;
    border-color: #FDC700;
    cursor: default;
}

.pagination .prev,
.pagination .next,
.page-numbers .prev,
.page-numbers .next,
nav.pagination .prev,
nav.pagination .next {
    min-width: auto;
    padding: 0 16px;
}

.pagination .dots,
.page-numbers .dots,
nav.pagination .dots {
    background: transparent;
    border: none;
    color: #6A7282;
    cursor: default;
}

.pagination .dots:hover,
.page-numbers .dots:hover,
nav.pagination .dots:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FDC700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(253, 199, 0, 0.4);
    transition: all 0.3s ease;
    color: #161616;
    position: relative;
    z-index: 2;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(253, 199, 0, 0.5);
}

.chat-button:active {
    transform: scale(0.95);
}

.chat-button svg {
    width: 24px;
    height: 24px;
}

.chat-menu {
    position: absolute;
    bottom: 76px;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.chat-widget.active .chat-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-menu-item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    color: #FFFFFF;
}

.chat-menu-item-tg {
    background: #0088cc;
}

.chat-menu-item-vk {
    background: #0077ff;
}

.chat-menu-item:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.chat-menu-item:active {
    transform: scale(1.05);
}

.chat-menu-item svg {
    width: 24px;
    height: 24px;
    display: block;
}

.chat-menu-item-vk svg {
    fill: #FFFFFF;
}

/* Animation delays for menu items */
.chat-widget.active .chat-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.chat-widget.active .chat-menu-item:nth-child(2) {
    transition-delay: 0.05s;
}

@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-button {
        width: 56px;
        height: 56px;
    }

    .chat-menu {
        bottom: 72px;
    }

    .chat-menu-item {
        width: 52px;
        height: 52px;
    }

    .chat-button svg,
    .chat-menu-item svg {
        width: 22px;
        height: 22px;
    }
}


