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

:root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --cyan: #00D9FF;
    --gray-dark: #1A1A1A;
    --gray-mid: #2D2D2D;
    --cyan-dark: #00A8CC;
    --glow: 0 0 20px rgba(0, 217, 255, .3)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s
}

.nav.scrolled {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
    letter-spacing: 3px
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: color .3s
}

.nav-links a:hover {
    color: var(--cyan)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cyan);
    transition: .3s
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: .15
}

#particles {
    position: absolute;
    inset: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase
}

.hero h1 .accent {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 217, 255, .5)
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 40px;
    font-weight: 400
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s;
    border: none
}

.btn-primary {
    background: var(--cyan);
    color: var(--black);
    box-shadow: var(--glow)
}

.btn-primary:hover {
    background: var(--cyan-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 217, 255, .5)
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white)
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px)
}

/* BENEFITS BAR */
.benefits {
    background: var(--gray-dark);
    padding: 60px 5%
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.benefit-item {
    text-align: center;
    padding: 30px 20px
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--cyan)
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5;
    margin: 0 auto
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-transform: uppercase
}

.benefit-item p {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    line-height: 1.5
}

/* SECTIONS COMMON */
.section {
    padding: 100px 5%
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    text-transform: uppercase
}

.section-title .accent {
    color: var(--cyan)
}

.section-subtitle {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto
}

.why-card {
    background: var(--gray-mid);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all .4s;
    border: 1px solid transparent
}

.why-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: var(--glow)
}

.why-card svg {
    width: 56px;
    height: 56px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5;
    margin: 0 auto 20px
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-transform: uppercase
}

.why-card p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    font-size: .95rem
}

/* TRAINERS */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto
}

.trainer-card {
    background: var(--gray-mid);
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s;
    border: 1px solid rgba(0, 217, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 217, 255, .2);
    border-color: var(--cyan)
}

/* Photo panel */
.trainer-photo-wrap {
    width: 100%;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 360px;
    max-height: 420px;
    border-bottom: 2px solid rgba(0, 217, 255, .2);
}

.trainer-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 420px;
    transition: transform .5s ease;
}

.trainer-card:hover .trainer-photo-wrap img {
    transform: scale(1.04)
}

/* Info panel */
.trainer-info {
    padding: 30px 28px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.trainer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase
}

.trainer-card .specialty {
    color: var(--cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 12px
}

.trainer-card .bio {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--cyan);
    color: var(--black);
    font-weight: 700;
    font-size: .85rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif
}

.btn-whatsapp:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow)
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: var(--black)
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto
}

.gallery-grid .tall {
    grid-row: span 2
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-mid);
    cursor: pointer
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 217, 255, .15);
    opacity: 0;
    transition: opacity .4s
}

.gallery-item:hover::after {
    opacity: 1
}

.gallery-item .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: .85rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--gray-mid), var(--gray-dark))
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.3);
    transition: filter .4s
}

.gallery-item:hover img {
    filter: saturate(1)
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start
}

.plan-card {
    background: var(--gray-mid);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all .4s;
    border: 1px solid transparent;
    position: relative
}

.plan-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: var(--glow)
}

.plan-card.popular {
    border: 2px solid var(--cyan);
    transform: scale(1.05)
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-8px)
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--black);
    padding: 5px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase
}

.plan-card h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    text-transform: uppercase
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--cyan);
    margin: 10px 0
}

.plan-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5)
}

.plan-features {
    list-style: none;
    margin: 25px 0;
    text-align: left
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px
}

/* TESTIMONIALS */
.testimonials {
    background: var(--black)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto
}

.testimonial-card {
    background: var(--gray-mid);
    border-radius: 16px;
    padding: 35px 30px;
    border-left: 4px solid var(--cyan);
    transition: transform .3s
}

.testimonial-card:hover {
    transform: translateY(-5px)
}

.testimonial-stars {
    color: var(--cyan);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px
}

.testimonial-text {
    color: rgba(255, 255, 255, .85);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: .95rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem
}

.testimonial-role {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5)
}

/* CTA BAND */
.cta-band {
    background: var(--cyan);
    padding: 80px 5%;
    text-align: center
}

.cta-band h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase
}

.cta-band p {
    color: rgba(0, 0, 0, .7);
    font-size: 1.15rem;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all .3s;
    animation: pulse-btn 2s infinite
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(10, 10, 10, .4)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(10, 10, 10, 0)
    }
}

/* LOCATION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    background: var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, .2)
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.map-placeholder {
    color: rgba(255, 255, 255, .4);
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 10px
}

.schedule-card {
    background: var(--gray-mid);
    border-radius: 16px;
    padding: 35px 30px
}

.schedule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px
}

.schedule-card h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .95rem
}

.schedule-row .day {
    font-weight: 600
}

.schedule-row .time {
    color: var(--cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600
}

/* CONTACT FORM */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--gray-mid);
    border-radius: 20px;
    padding: 45px 40px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: var(--gray-dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: border-color .3s;
    outline: none
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 217, 255, .15)
}

.form-group textarea {
    height: 100px;
    resize: vertical
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.form-check input[type=checkbox] {
    accent-color: var(--cyan);
    width: 18px;
    height: 18px
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    color: var(--cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 70px 5% 0;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan)
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.8;
    display: block;
    transition: color .3s
}

.footer-col a:hover {
    color: var(--cyan)
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 8px
}

.footer-tagline {
    color: rgba(255, 255, 255, .5);
    font-style: italic;
    font-size: .9rem
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.footer-social a:hover {
    border-color: var(--cyan);
    background: rgba(0, 217, 255, .1)
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 24px 5%;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

/* SILUSOFT CREDIT */
.footer-silusoft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 217, 255, .2);
    background: rgba(0, 217, 255, .04);
    font-size: .78rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .4s
}

.footer-silusoft:hover {
    border-color: rgba(0, 217, 255, .5);
    background: rgba(0, 217, 255, .08);
    box-shadow: 0 0 18px rgba(0, 217, 255, .15)
}

.silusoft-label {
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px
}

.silusoft-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .78rem;
    transition: all .3s
}

.silusoft-link:hover {
    text-shadow: 0 0 12px rgba(0, 217, 255, .8);
    color: #fff
}

.silusoft-icon {
    font-size: .9rem;
    animation: silusoft-spark 2.5s infinite
}

.silusoft-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem;
    letter-spacing: 2px
}

@keyframes silusoft-spark {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: .7; transform: scale(1.2) }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 217, 255, .4);
    cursor: pointer;
    transition: all .3s;
    animation: pulse-wa 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 217, 255, .6)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--black)
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-mid);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: .85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    font-family: 'Montserrat', sans-serif
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1
}

.wa-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--gray-mid);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.wa-menu.active {
    display: block
}

.wa-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    transition: background .3s
}

.wa-menu a:hover {
    background: rgba(0, 217, 255, .1)
}

.wa-menu a svg {
    width: 20px;
    height: 20px;
    fill: var(--cyan)
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, .4)
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 217, 255, 0)
    }
}

/* SHOP SECTION */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.product-card {
    background: var(--gray-mid);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all .4s;
    border: 1px solid rgba(0, 217, 255, .1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: var(--cyan)
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--cyan);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    z-index: 2
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--gray-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: .85rem;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden
}

.product-image img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
    transition: transform .4s
}

.product-card:hover .product-image img {
    transform: scale(1.08)
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 20px
}

/* MOBILE NAV */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: right .4s;
    display: flex;
    flex-direction: column;
    gap: 0
}

.mobile-menu.active {
    right: 0
}

.mobile-menu a {
    display: block;
    padding: 18px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--white);
    transition: color .3s
}

.mobile-menu a:hover {
    color: var(--cyan)
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    display: none
}

.mobile-overlay.active {
    display: block
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

/* COUNTER */
.counter-section {
    background: var(--gray-dark);
    padding: 50px 5%
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.counter-item .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--cyan)
}

.counter-item .label {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .benefits-grid,
    .why-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .plan-card.popular {
        transform: scale(1)
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .benefits-grid,
    .why-grid,
    .testimonials-grid,
    .pricing-grid,
    .trainers-grid,
    .location-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid .tall {
        grid-row: span 1
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .section {
        padding: 70px 5%
    }

    .contact-form {
        padding: 30px 20px
    }

    .counter-grid {
        grid-template-columns: 1fr
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }
}