* {
    box-sizing: border-box;
    margin: 0;
}

body {
    text-align: center;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flex Utils */
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.discount-flex {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Media Queries */
@media (max-width:900px) {
    .success-cards {
        display: flex;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-main {
        align-items: center !important;
        text-align: center;
    }

    .footer-brand {
        align-items: center !important;
    }

    .footer-links {
        justify-content: center !important;
    }

    .footer-contacts {
        text-align: center;
    }

    .footer-links {
        flex-direction: column !important;
        justify-content: center !important;
    }
}

@media (max-width:750px){
    .container { max-width: 99vw;}
}

@media (max-width:600px){
    .container{ width: 98%; }
    nav { display: none; }
    .footer-links { flex-direction:column; gap:6px;}
    .discount-img img { width: 100%; height: auto;}
}

/* Header */
.header {
    background: #232918; 
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.navbar {
    width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white; 
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #88FF00;
}

.btn.outline.ss {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #6C2791 !important; 
    background: transparent !important;
    color: #6C2791 !important;
    display: inline-block;
    transition: 0.3s;
}

.btn.outline.ss:hover {
    background: #6C2791 !important;
    color: white !important;
}

/* Hero Section */
.gym-hero {
    position: relative;
    height: 460px;
    background: #232918;
    display: flex;
    align-items: end;
}

.gym-hero-bg img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.56);
}

.gym-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    color: #FFF;
    max-width: 540px;
    padding: 55px 0 38px 0;
}

.hero-text h2 {
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 11px;
    line-height: 1.12;
    letter-spacing: 2px;
}

.hero-text .highlight-green {
    color: #88FF00;
    font-weight: 900;
}

.hero-text p {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 27px;
}

.gym-hero-buttons {
    display: flex;
    gap: 23px;
}

.btn {
    border-radius: 31px;
    font-size: 1.04rem;
    padding: 15px 42px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    margin-bottom: 3px;
}

.btn.green {
    background: #88FF00;
    color: #181C16;
}

.btn.outline {
    background: transparent;
    color: #88FF00;
    border: 2px solid #88FF00;
}

.btn.green:hover,
.btn.outline:hover {
    background: #181C16;
    color: #FFFFFF;
}

/* Info Bar */
.gym-bar {
    background: #191C15;
    color: #B3FFA7;
    font-weight: 700;
    font-size: 1.14rem;
    padding: 16px 0;
    letter-spacing: 0.7px;
    border-bottom: 2px solid #414e13;
    border-top: 2px solid #414e13;
}

.info-grid {
    gap: 2vw;
}

.info-grid span {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

/* Success Section */
.success-section {
    padding: 59px 0 36px 0;
    background: #171A1C;
    text-align: center;
}

.success-section h3 {
    color: #B3FFA7;
    font-size: 2.09rem;
    margin-bottom: 39px;
    letter-spacing: 1.6px;
    font-weight: 900;
}

.success-cards {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.success-cards > div {
    background: #10110e;
    padding: 37px 15px 32px;
    border-radius: 22px;
    color: #e0fae0;
    flex: 1 1 280px;
    min-width: 210px;
    box-shadow: 0 2px 10px rgba(33, 56, 36, 0.19);
}

.success-cards i {
    font-size: 2.8rem;
    color: #88FF00;
    margin-bottom: 13px;
}

.success-cards h4 {
    margin: 14px 0 9px 0;
    font-size: 1.14rem;
    font-weight: 800;
}

.success-cards p {
    margin: 0;
    font-size: 1.13rem;
}

/* No Pain No Gain */
.no-pain {
    margin: 37px 0 33px 0;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 900;
    color: #252927;
    letter-spacing: 6px;
    opacity: 0.45;
    user-select: none;
}

/* Program Section */
.program-section {
    padding: 0 0 44px 0;
}

.program-section h3 {
    text-align: center;
    color: #B3FFA7;
    font-size: 2.12rem;
    margin-bottom: 41px;
    font-weight: 900;
}

.program-cards {
    display: flex;
    gap: 2vw;
    justify-content: center;
    flex-wrap: wrap;
}

.program-cards div {
    background: #22291a;
    border-radius: 18px;
    overflow: hidden;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    min-width: 170px;
}

.program-cards img {
    width: 100%; min-height: 134px; max-height: 234px; object-fit: cover;
    display: block;
}

.program-cards label {
    color: #B3FFA7;
    font-weight: 700;
    font-size: 1.21rem;
    margin: 18px;
}

/* Pricing Section */
.pricing-section {
    background: #181C16;
    padding: 58px 0 48px 0;
}

.pricing-section h3 {
    text-align: center;
    color: #B3FFA7;
    font-size: 2.11rem;
    margin-bottom: 39px;
    font-weight: 900;
}

.price-cards {
    display: flex;
    gap: 2vw;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    background: #191D17;
    color: #d9ffe2;
    border-radius: 22px;
    padding: 34px 29px 28px 29px;
    flex: 1 1 260px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(33, 56, 36, 0.11);
    border: 2px solid transparent;
    max-width: 340px;
    min-width: 190px;
}

.price-card.active, .price-card:hover {
    border-color: #88FF00;
    background: #242E19;
}

.price-card h4 {
    color: #B3FFA7;
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 19px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #88FF00;
    margin-bottom: 19px;
}

.price span {
    font-size: 1.14rem;
    color: #B3FFA7;
    font-weight: 700;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 19px;
    font-size: 1.01rem;
}

.price-card ul li {
    margin-bottom: 7px;
    color: #B1D6AA;
}

.price-card .btn {
    width: 100%;
}

/* Discount Section */
.discount-section {
    background: #191C15;
    padding: 43px 0 43px 0;
    border-bottom: 2px solid #414e13;
}

.discount-info {
    flex: 1;
}

.discount-info h3 {
    color: #B3FFA7;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 13px;
}

.discount-info p {
    color: #e6ffe6;
    margin-bottom: 15px;
    font-size: 1.13rem;
}

.discount-info .btn {
    margin-right: 12px;
}

.discount-img img {
    width: 180px;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
}

/* Footer Contact */
.gym-footer {
    background: #1B1E21;
    color: #bfcfc3;
    padding: 40px 0 8px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    min-width: 160px;
}

.footer-brand img {
    height: 24px;
    margin-bottom: 8px;
}

.footer-brand span {
    font-weight: 900;
    color: #B3FFA7;
    font-size: 1.3rem;
    margin-bottom: 7px;
}

.footer-social a {
    color: #B3FFA7;
    margin: 0 15px 0 0;
    font-size: 1.29rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #88FF00;
}

.footer-links {
    display: flex;
    gap: 41px;
}

.footer-links ul {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bfcfc3;
    text-decoration: none;
    font-size: 1.04rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #88FF00;
}

.footer-contacts {
    min-width: 190px;
    line-height: 1.5em;
}

.footer-contacts p {
    margin: 4px 0;
    font-size: 1.05rem;
}

.footer-contacts i {
    color: #88FF00;
    margin-right: 7px;
}

.footer-bar {
    border-top: 1px solid #282D22;
    text-align: center;
    padding: 15px 0 2px;
    font-size: 1.07rem;
    color: #6dad53;
    margin-top: 28px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Nav */
@media (max-width: 900px) {
    nav {
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        background: #232918;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        z-index: 9999;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .btn.outline.ss {
        display: none;
    }
}