:root {
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --gold-light: #FFF8DC;
    --accent: #FF6B6B;
    --accent-dark: #EE5A6F;
    --dark: #0A0A0F;
    --dark-secondary: #14141F;
    --dark-tertiary: #1E1E2E;
    --text-light: #FFFFFF;
    --text-gray: #A0A0B0;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #14141F 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Disable image downloading and selection */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Re-enable pointer events for parent containers */
.result-image-container,
.hero-image-container,
.trainer-panel {
    pointer-events: auto;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Navigation - Modern Minimalist */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex: 1;
}

.nav-menu-left {
    justify-content: flex-start;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    transform: translateX(-50%) scale(1.05);
}

.logo-square {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.logo-square::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: logoShine 4s infinite;
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-monogram {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.nav-menu-right {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-link-premium {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    border: 2px solid var(--gold);
    background: var(--gradient-primary);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: premiumPulse 3s ease-in-out infinite;
}

.nav-link-support {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

@keyframes premiumPulse {
    0%, 100% { 
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    }
}

.nav-link-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    border-color: var(--gold-light);
}

.nav-link-support:hover {
    color: var(--dark);
    background: var(--gradient-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section - Bold & Dynamic */
.hero {
    padding: 140px 0 100px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
}

.hero-glow-2 {
    bottom: 20%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    animation-delay: 2s;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2) translateY(-20px);
        opacity: 0.25;
    }
}

/* Hero Wrapper */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Content */
.hero-content-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Right Side - Image */
.hero-image-side {
    position: relative;
    overflow: visible;
}


.hero-image-container {
    position: relative;
    height: 700px;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5), 
        0 0 50px rgba(255, 215, 0, 0.25),
        0 0 80px rgba(255, 215, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container.goal-selected {
    border-color: var(--gold);
    border-width: 4px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6), 
        0 0 100px rgba(255, 215, 0, 0.6),
        0 0 150px rgba(255, 215, 0, 0.4),
        inset 0 0 60px rgba(255, 215, 0, 0.1);
    animation: goalSelectedGlow 2s ease-in-out;
}

@keyframes goalSelectedGlow {
    0% { 
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2); 
    }
    25% { 
        border-color: var(--gold);
        box-shadow: 
            0 30px 100px rgba(0, 0, 0, 0.6), 
            0 0 120px rgba(255, 215, 0, 0.8),
            0 0 180px rgba(255, 215, 0, 0.5),
            inset 0 0 80px rgba(255, 215, 0, 0.15);
    }
    50% { 
        border-color: var(--gold-light);
        box-shadow: 
            0 30px 100px rgba(0, 0, 0, 0.6), 
            0 0 140px rgba(255, 215, 0, 0.7),
            0 0 200px rgba(255, 215, 0, 0.4),
            inset 0 0 100px rgba(255, 215, 0, 0.2);
    }
    75% {
        border-color: var(--gold);
        box-shadow: 
            0 30px 100px rgba(0, 0, 0, 0.6), 
            0 0 120px rgba(255, 215, 0, 0.8),
            0 0 180px rgba(255, 215, 0, 0.5),
            inset 0 0 80px rgba(255, 215, 0, 0.15);
    }
    100% { 
        border-color: var(--gold);
        box-shadow: 
            0 30px 90px rgba(0, 0, 0, 0.6), 
            0 0 100px rgba(255, 215, 0, 0.6),
            0 0 150px rgba(255, 215, 0, 0.4),
            inset 0 0 60px rgba(255, 215, 0, 0.1);
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    z-index: 1;
}



.hero-badge {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.7rem 1.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-light);
    margin: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 550px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Visual Goal Cards */
.goal-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.goal-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.goal-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.goal-card:hover::before {
    width: 100%;
}

.goal-card.selected {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.goal-card.selected::before {
    width: 100%;
}

.goal-card-icon {
    font-size: 42px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.goal-card:hover .goal-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 215, 0, 0.2);
}

.goal-card.selected .goal-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.15);
}

.goal-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.goal-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.goal-card-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.goal-card-check {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.goal-card.selected .goal-card-check {
    opacity: 1;
    transform: scale(1);
    background: var(--gradient-primary);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
}

/* Floating Badges */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.hero-badge-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(20, 20, 31, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.hero-badge-card .badge-icon {
    font-size: 24px;
}

.hero-badge-card .badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-badge-card .badge-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text-light);
}

.hero-badge-card .badge-sub {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Hero CTA Button */
.btn-hero {
    margin-top: 1rem;
    padding: 22px 50px;
    font-size: 15px;
    width: fit-content;
}

.btn-pulse {
    animation: btnPulseEffect 1s ease-out;
}

@keyframes btnPulseEffect {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 60px rgba(255, 215, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    }
}


/* Buttons - Premium Design */
.btn {
    display: inline-block;
    padding: 20px 48px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    background: transparent;
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.btn-primary::before {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FFA500 100%);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    color: var(--dark);
}

.btn-service {
    width: 100%;
    margin-top: 1.5rem;
    border: 2px solid var(--gold);
    padding: 16px 32px;
    font-size: 13px;
}

.btn-premium {
    background: var(--gradient-primary);
    color: var(--dark);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    color: var(--dark);
}

.btn:not(.btn-primary):not(.btn-premium):hover::before {
    left: 0;
}

.btn:not(.btn-primary):not(.btn-premium):hover {
    color: var(--dark);
    border-color: var(--gold);
}

/* Subscriptions Section */
.subscriptions-section {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
}

.subscriptions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.subscriptions-section .section-title {
    margin-bottom: 3rem;
}

.results-section .section-title {
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-card), 0 0 60px rgba(255, 215, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.premium-service {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    position: relative;
}

.service-card.premium-service::after {
    content: 'PREMIUM';
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 3px;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.service-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-size: 16px;
    font-weight: 400;
}

.service-price {
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card:hover .service-price {
    transform: scale(1.1);
}

.currency {
    font-size: 32px;
    margin-left: 6px;
}

.service-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.8;
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.results-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.result-card {
    background: rgba(20, 20, 31, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    contain: layout style paint;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.result-card > * {
    position: relative;
    z-index: 1;
}

.result-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.25), 0 0 60px rgba(255, 215, 0, 0.15);
}

.result-card:hover::before {
    opacity: 1;
}

.result-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-tertiary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    cursor: grab;
    user-select: none;
    touch-action: none;
    --slider-position: 50%;
}

.result-image-container:active {
    cursor: grabbing;
}

.result-divider-line {
    position: absolute;
    top: 0;
    left: var(--slider-position, 50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 5%,
        var(--gold) 15%,
        var(--gold) 85%,
        rgba(255, 215, 0, 0.3) 95%,
        transparent 100%
    );
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.7),
        0 0 50px rgba(255, 215, 0, 0.4),
        -3px 0 15px rgba(0, 0, 0, 0.6),
        3px 0 15px rgba(0, 0, 0, 0.6);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.result-image-container:active .result-divider-line {
    will-change: left;
}

.result-divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.result-divider-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    z-index: 2;
}

.result-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.result-image.result-before {
    clip-path: inset(0 calc(100% - var(--slider-position, 50%)) 0 0);
}

.result-image.result-after {
    clip-path: inset(0 0 0 var(--slider-position, 50%));
}

.result-image-container:active .result-image.result-before,
.result-image-container:active .result-image.result-after {
    will-change: clip-path;
}

.result-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-card:hover .result-divider-line {
    width: 5px;
    box-shadow: 
        0 0 35px rgba(255, 215, 0, 0.9),
        0 0 60px rgba(255, 215, 0, 0.5),
        -4px 0 20px rgba(0, 0, 0, 0.7),
        4px 0 20px rgba(0, 0, 0, 0.7);
}

.result-card:hover .result-slider-handle {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
}

.result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
    z-index: 2;
}

.result-overlay-before {
    justify-content: flex-start;
}

.result-overlay-after {
    justify-content: flex-end;
}

.result-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.result-badge-before {
    background: rgba(100, 100, 120, 0.85);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.result-badge-after {
    background: var(--gradient-primary);
    color: var(--dark);
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4);
}

.badge-icon {
    font-size: 16px;
    display: inline-block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.badge-text {
    font-weight: 700;
}

.result-slider-container {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    overflow: visible;
}

.result-slider-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.result-slider {
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    cursor: grab;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.result-slider:active {
    cursor: grabbing;
}

.result-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border: none;
    border-radius: 10px;
}

.result-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border: none;
    border-radius: 10px;
}

.result-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    cursor: grab;
    opacity: 0;
}

.result-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.result-slider::-moz-range-thumb {
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    cursor: grab;
    opacity: 0;
}

.result-slider::-moz-range-thumb:active {
    cursor: grabbing;
}

.result-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 5;
    border: 3px solid var(--dark);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-slider:active ~ .result-slider-handle {
    will-change: left;
}

.result-card:hover .result-slider-handle {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
}

.slider-icon {
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: sliderIconMove 2s ease-in-out infinite;
    pointer-events: none;
}

.slider-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    stroke-width: 2.5;
}

@keyframes sliderIconMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}


.result-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* Subscription Cards */
.subscription-card {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.subscription-card > * {
    position: relative;
    z-index: 1;
}

.subscription-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-card), 0 0 60px rgba(255, 215, 0, 0.3);
}

.subscription-card:hover::before {
    opacity: 1;
}

.subscription-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subscription-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.subscription-price-old {
    font-size: 20px;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.subscription-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.subscription-card:hover .subscription-price {
    transform: scale(1.1);
}

.subscription-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.subscription-description p {
    margin-bottom: 0.8rem;
    font-size: 13px;
    line-height: 1.6;
}

.subscription-subtitle {
    font-weight: 600;
    color: var(--gold);
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.subscription-subtitle:first-child {
    margin-top: 0;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0;
}

.subscription-features li {
    padding: 0.5rem 0;
    padding-left: 0;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 12.5px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.subscription-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    margin-top: 0.1rem;
    line-height: 1;
}

.subscription-value {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Recommended Badge */
.subscription-recommended {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 10px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2.5px;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 2;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* VIP Card - Gold Premium */
.subscription-vip {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.2);
    position: relative;
    grid-column: 1 / -1;
    max-width: 100%;
    scroll-margin-top: 120px;
}

.subscription-vip::after {
    content: 'VIP';
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 3px;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    z-index: 2;
    text-transform: uppercase;
    animation: vipGlow 2s ease-in-out infinite;
    font-family: 'Montserrat', sans-serif;
}

@keyframes vipGlow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

.subscription-vip .subscription-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.subscription-vip:hover {
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.4), 0 0 100px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-light);
}

/* Process Section */
.process-section {
    padding: 150px 0;
    background: var(--dark);
    position: relative;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.process-title {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 2rem;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.process-step:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 80px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'DM Serif Display', serif;
    flex-shrink: 0;
    opacity: 0.3;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-gray);
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
}

.process-image {
    margin-top: 4rem;
}

.process-img {
    width: 100%;
    height: 400px;
    background-image: url('images/gallery-1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-card);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.process-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: var(--shadow-card), 0 0 60px rgba(255, 215, 0, 0.3);
}

/* Trainer Section */
.trainer-section {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
}

.trainer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
                radial-gradient(circle at 90% 10%, rgba(255, 107, 107, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.trainer-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.trainer-content {
    background: rgba(20, 20, 31, 0.85);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trainer-badge {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    padding: 0.8rem 1.6rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 999px;
    width: fit-content;
    background: rgba(255, 215, 0, 0.08);
}

.trainer-title {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-light);
}

.trainer-text {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.9;
}

.trainer-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trainer-list-block h3 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.trainer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.trainer-list li {
    position: relative;
    color: var(--text-gray);
    padding-left: 1.5rem;
    font-size: 14px;
    line-height: 1.7;
}

.trainer-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.trainer-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trainer-meta-item {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    padding: 1.8rem;
}

.meta-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
}

.trainer-meta-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.trainer-cta {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.trainer-panel {
    position: relative;
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.35);
    min-height: 420px;
    background-image: url('images/trainer-denis.JPG');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.trainer-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 5, 10, 0.9) 0%, rgba(5, 5, 10, 0.65) 40%, rgba(5, 5, 10, 0.15) 100%);
}

.trainer-panel-content {
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 10, 0.55);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-light);
    max-width: 520px;
}

.panel-quote {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
}

.panel-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.panel-list li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.2rem;
    position: relative;
}

.panel-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

/* FAQ Section */
.faq-section {
    padding: 140px 0;
    background: var(--dark-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.faq-item {
    background: rgba(20, 20, 31, 0.85);
    border: 2px solid rgba(255, 215, 0, 0.12);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 1 calc(50% - 0.75rem);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.4rem 2rem 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
    text-align: left;
}

.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon::before {
    content: '+';
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.faq-item.active .faq-icon::before {
    content: '−';
    color: var(--dark);
}

.faq-answer {
    padding: 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding-bottom 0.3s ease;
    opacity: 0;
}

.faq-answer-content {
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.2rem;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 0.7rem;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-text {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
}

/* Modal - DISABLED (используется Telegram бот) */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    visibility: hidden;
}

.modal-content {
    background: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    margin: 5% auto;
    padding: 4rem;
    border: 3px solid var(--gold);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-card), 0 0 80px rgba(255, 215, 0, 0.4);
    animation: modalAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 28px;
    top: 28px;
    font-size: 36px;
    font-weight: bold;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.modal-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 215, 0, 0.2);
}

.modal-title {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.modal-plan-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-plan-info h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
}

.modal-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input {
    padding: 16px 20px;
    background: rgba(10, 10, 15, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    background: rgba(10, 10, 15, 0.8);
}

.form-group input::placeholder {
    color: var(--text-gray);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 52px;
    }
}

@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 60px;
    }
    
    .hero-image-container {
        height: 600px;
    }
    
    .hero-badges {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        padding: 0.8rem 1.2rem;
    }
    
    .floating-badge .badge-text {
        font-size: 12px;
    }
    
    .process-wrapper {
        gap: 60px;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .subscriptions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .subscription-vip {
        grid-column: 1 / -1;
    }
    
    .subscription-card {
        padding: 1.8rem;
    }
    
    .subscription-title {
        font-size: 30px;
    }
    
    .subscription-price {
        font-size: 44px;
    }
    
    .subscription-price-old {
        font-size: 19px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-image-container {
        height: 500px;
    }
    
    .result-badge {
        font-size: 12px;
        padding: 0.7rem 1.5rem;
    }
    
    .result-slider-container {
        height: 50px;
    }
    
    .result-slider-handle {
        width: 50px;
        height: 50px;
    }
    
    .slider-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .result-slider::-webkit-slider-thumb {
        width: 50px;
        height: 50px;
    }
    
    .result-slider::-moz-range-thumb {
        width: 50px;
        height: 50px;
    }
    
    .result-stats {
        gap: 1.5rem;
        padding: 1.2rem;
    }
    
    .stat-value {
        font-size: 18px;
    }

    .trainer-wrapper {
        grid-template-columns: 1fr;
    }

    .trainer-panel {
        order: -1;
    }
}

@media (max-width: 968px) {
    /* Disable heavy background effects on mobile */
    body::before,
    .hero-glow,
    .results-section::before,
    .subscriptions-section::before {
        display: none;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .nav-menu-left {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(30, 30, 46, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        padding: 3rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        z-index: 999;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-menu-left.active {
        left: 0;
    }
    
    .nav-menu-right {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .nav-content {
        justify-content: space-between;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image-side {
        order: 0;
    }
    
    .hero-content-side {
        order: 1;
    }
    
    .hero-image-container {
        height: 500px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .goal-cards {
        gap: 1rem;
    }
    
    .goal-card {
        padding: 1.5rem;
    }
    
    .goal-card-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .goal-card-title {
        font-size: 18px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .subscriptions-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-vip {
        grid-column: 1;
    }
    
    .subscription-card {
        padding: 1.5rem;
    }
    
    .subscription-title {
        font-size: 28px;
    }
    
    .subscription-price {
        font-size: 40px;
    }
    
    .subscription-price-old {
        font-size: 18px;
    }
    
    .subscription-description {
        font-size: 12px;
    }
    
    .subscription-features li {
        font-size: 11.5px;
        padding: 0.4rem 0;
    }
    
    .subscription-value {
        font-size: 11px;
        padding: 0.8rem;
    }
    
    .btn-service {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-image-container {
        height: 450px;
    }
    
    .result-badge {
        font-size: 11px;
        padding: 0.6rem 1.2rem;
    }
    
    .result-slider-container {
        height: 45px;
    }
    
    .result-slider-handle {
        width: 45px;
        height: 45px;
    }
    
    .slider-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .result-slider::-webkit-slider-thumb {
        width: 45px;
        height: 45px;
    }
    
    .result-slider::-moz-range-thumb {
        width: 45px;
        height: 45px;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .process-title {
        font-size: 38px;
    }
    
    .subscriptions-section,
    .what-you-can-buy,
    .process-section {
        padding: 100px 0;
    }
    
    .subscriptions-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-vip {
        grid-column: 1;
    }

    .trainer-section {
        padding: 70px 0;
    }

    .trainer-wrapper {
        gap: 30px;
    }

    .trainer-lists {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trainer-meta {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .trainer-panel {
        padding: 2.5rem;
        min-height: 400px;
    }

    .trainer-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .trainer-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .trainer-content {
        padding: 2.8rem;
        gap: 1.8rem;
    }

    .trainer-list-block h3 {
        font-size: 15px;
    }

    .panel-quote {
        font-size: 19px;
    }

    .faq-grid {
        flex-direction: column;
    }

    .faq-item {
        flex-basis: 100%;
    }

    .faq-question {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    /* Performance optimization for mobile */
    .result-card,
    .subscription-card,
    .navbar {
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
    }
    
    /* Simplify shadows on mobile */
    .result-card,
    .subscription-card,
    .hero-image-container {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }
    
    .logo-square {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
    }
    
    /* Reduce animations on mobile */
    * {
        animation-duration: 0.5s !important;
    }
    
    /* Disable decorative animations */
    .hero-glow,
    body::before {
        animation: none !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .goal-card {
        padding: 1.2rem 1.5rem;
        gap: 1.2rem;
    }
    
    .goal-card-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .goal-card-title {
        font-size: 16px;
    }
    
    .goal-card-desc {
        font-size: 12px;
    }
    
    .goal-card-check {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .btn-hero {
        width: 100%;
        padding: 18px 40px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 4rem;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .service-price {
        font-size: 48px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .step-number {
        font-size: 60px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trainer-section {
        padding: 60px 0;
    }

    .trainer-wrapper {
        gap: 25px;
    }

    .trainer-content {
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 20px;
    }
    
    .trainer-panel {
        padding: 2rem;
        min-height: 350px;
        border-radius: 20px;
    }

    .trainer-title {
        font-size: 26px;
        line-height: 1.35;
    }

    .trainer-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .trainer-badge {
        font-size: 11px;
        padding: 0.65rem 1.3rem;
        letter-spacing: 1.8px;
    }

    .trainer-lists {
        gap: 1.8rem;
    }

    .trainer-list-block h3 {
        font-size: 14px;
        margin-bottom: 0.9rem;
        letter-spacing: 1.5px;
    }

    .trainer-list {
        gap: 0.7rem;
    }

    .trainer-list li {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .trainer-meta {
        gap: 1.2rem;
    }

    .trainer-meta-item {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .meta-label {
        font-size: 19px;
    }

    .trainer-meta-item p {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .panel-quote {
        font-size: 17px;
        line-height: 1.65;
    }

    .panel-list {
        gap: 0.75rem;
    }

    .panel-list li {
        font-size: 14px;
        line-height: 1.6;
    }

    .trainer-panel-content {
        padding: 2rem;
        gap: 1.3rem;
        border-radius: 18px;
    }

    .trainer-cta {
        width: 100%;
    }

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

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
    
    .results-section {
        padding: 80px 0;
    }
    
    .results-subtitle {
        font-size: 16px;
        margin-bottom: 3rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 1.2rem;
    }
    
    .result-image-container {
        height: 400px;
    }
    
    .result-badge {
        font-size: 10px;
        padding: 0.5rem 1rem;
        gap: 0.3rem;
    }
    
    .badge-icon {
        font-size: 14px;
    }
    
    .result-slider-container {
        height: 40px;
    }
    
    .result-slider-handle {
        width: 40px;
        height: 40px;
    }
    
    .slider-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .result-slider::-webkit-slider-thumb {
        width: 40px;
        height: 40px;
    }
    
    .result-slider::-moz-range-thumb {
        width: 40px;
        height: 40px;
    }
    
    .slider-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .result-stats {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stat-divider {
        width: 50px;
    }
}
