/* ===== SHANTI YOGA CLUB - LUXURY WELLNESS CSS ===== */
/* CSS переменные наследуются из shared-variables.css */

/* === LUXURY ANIMATIONS === */
@keyframes luxuryPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
}
    50% {
        transform: scale(1.05);
        opacity: 0.9;
}
}

@keyframes luxuryGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--color-accent-soft);
}
    50% {
        box-shadow: 0 0 20px 5px var(--color-accent-soft);
}
}

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

/* === LUXURY BASE STYLES - MOBILE FIRST === */

/* Global Luxury Overrides */
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-background);
    font-weight: 300;
    letter-spacing: var(--letter-spacing-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === MOBILE FIRST LUXURY HERO === */
/* Унифицированный hero - mobile-first */
.club-hero {
    padding-top: calc(var(--header-height-mobile, 70px) + 16px);
    padding-top: max(
        calc(var(--header-height-mobile, 70px) + 16px), 
        calc(var(--header-height-mobile, 70px) + env(safe-area-inset-top))
    ); /* Поддержка iPhone notch */
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
    min-height: auto; /* Mobile: контент определяет высоту */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 768px) {
    .club-hero {
        min-height: 100vh;
        min-height: 100dvh;
        align-items: center;
        padding-bottom: 40px;
    }
}

/* === MOBILE HERO IMAGE WRAPPER === */
/* Унифицированный дизайн - 60vh изображение с белым градиентом */
.hero-image-wrapper-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 60vh;
    height: 60dvh;
    min-height: 400px;
    max-height: 550px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-image-wrapper-mobile {
        display: none;
    }
}

/* Show container content on mobile - unified design */
@media (max-width: 767px) {
    .club-hero {
        padding-top: 0 !important;
        padding-bottom: 32px !important;
        min-height: auto;
        display: block !important; /* Block layout для правильного flow */
        flex-direction: unset !important;
    }
    
    /* Hero image wrapper как отдельный блок */
    .hero-image-wrapper-mobile {
        position: relative;
        display: block;
    }
    
    .club-hero > .container {
        display: block;
        padding-top: 24px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        z-index: 10;
    }
}

.hero-image-wrapper-mobile .hero-image {
    width: 100%;
    height: 100%;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    object-position: center 20%;
}

/* Унифицированный белый градиент снизу */
.hero-image-wrapper-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        transparent 50%,
        rgba(255, 255, 255, 0.7) 80%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

/* Old gradient - keeping for reference but overridden */
.hero-image-wrapper-mobile-OLD::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(255, 255, 255, 0.7) 75%,
        rgba(255, 255, 255, 0.95) 100%
    );
    z-index: 1;
}

/* Hero Overlay for Mobile - унифицированный дизайн */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    background: transparent;
}

.hero-overlay .club-hero-title-mobile {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    text-align: center;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text, #1a1a1a);
    text-shadow: none;
}

.club-hero-title-mobile em {
    font-style: italic;
    color: var(--color-accent, #c9a227);
    text-shadow: none;
}

.hero-label-mobile {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted, #666);
}

/* === УНИФИЦИРОВАННЫЙ МОБИЛЬНЫЙ ДИЗАЙН === */
/* Показать title-section на мобильных, скрыть overlay */
@media (max-width: 767px) {
    /* Скрыть overlay на изображении */
    .hero-overlay {
        display: none !important;
    }
    
    /* Показать title-section вместо desktop-only */
    .club-hero .hero-title-section.desktop-only,
    .club-hero .hero-title-section {
        display: block !important;
        text-align: center;
        margin-top: 0;
        margin-bottom: 16px;
        opacity: 1;
        animation: none;
    }
    
    /* Mobile title styling - убедиться что h1 виден */
    .club-hero .club-hero-title,
    .club-hero h1.club-hero-title {
        display: block !important;
        font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
        margin-bottom: 12px;
        line-height: 1.2;
        color: var(--color-text, #1a1a1a);
        font-family: var(--font-heading);
        font-weight: 400;
    }
    
    /* Hero label styling */
    .club-hero .hero-label {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(249, 250, 240, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
    
    /* Description styling */
    .club-hero .hero-description-main {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .club-hero .club-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--color-text-muted, #666);
    }
    
    /* Highlights */
    .club-hero .hero-highlights {
        margin-bottom: 16px;
    }
    
    .club-hero .highlights-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .club-hero .highlight-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
        background: rgba(249, 250, 240, 0.8);
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    /* Hide desktop-only CTA on mobile */
    .club-hero .hero-cta.desktop-only {
        display: none !important;
    }
    
    /* Hide right column with image on mobile */
    .club-hero .hero-content-right.desktop-only {
        display: none !important;
    }
}

/* Hero Wave - скрыт для унифицированного дизайна */
.hero-image-wrapper-mobile .hero-wave {
    display: none;
}

.hero-wave {
    display: none;
}

.wave-css {
    display: none;
}

/* Mobile-optimized gradient overlay */
.club-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(249, 250, 240, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* .container стили управляются через main.css и unified-responsive.css */
.club-hero .container {
    position: relative;
    z-index: 2;
}

/* Mobile-First Luxury Hero Title */
.hero-title-section {
    text-align: center;
    margin-bottom: 12px; /* Reduced for mobile space optimization */
    margin-top: 20px; /* Добавлен отступ сверху для мобильных */
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out forwards;
    position: relative;
}

/* .club-hero-title управляется через unified-responsive.css */

/* Clean title without decorations */

.club-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 0.8125rem; /* 13px - more delicate */
    font-weight: 300;
    color: var(--color-text-muted);
    margin: 20px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0;
    animation: luxuryFadeIn 1.2s ease-out 0.3s forwards;
}

/* Mobile-specific adjustments */

/* Extra small screens optimization (landscape phones, small devices) */

/* Mobile Hero Image - Visual Impact */
.hero-image-section {
    width: calc(100% + 40px); /* Full bleed effect */
    margin: 0 -20px 0 -20px; /* Extend to screen edges */
    position: relative;
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out 0.5s forwards;
    overflow: hidden;
    /* Add subtle shadow for depth */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Ensure minimum height */
    min-height: 280px;
    background: var(--color-background-light); /* Fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove gradient overlay - we have overlay features instead */

/* Remove YOGA CLUB badge - we'll use overlay features instead */

.hero-image {
    width: 100%;
    height: auto;
    display: block; /* Ensure image is visible */
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    aspect-ratio: 4/3; /* More horizontal for space saving */
    max-height: 320px; /* Prevent image from being too tall on mobile */
    filter: brightness(1.02) contrast(0.98);
    /* Start at normal scale for immediate visibility */
    transform: scale(1);
    opacity: 1;
}

/* Add fade-in animation separately if needed */
@supports (animation: test) {
    .hero-image {
        opacity: 0;
        animation: luxuryFadeIn 0.8s ease-out 0.3s forwards;
}
}

/* Mobile Overlay Features - Luxury Wellness Style */
.mobile-overlay-features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: luxuryFadeIn 1.2s ease-out 0.8s forwards;
}

.overlay-feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.overlay-feature:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 1);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-accent);
}

.feature-label {
    font-family: var(--font-primary);
    font-size: 0.6875rem; /* 11px */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    line-height: 1.2;
}

/* Hide on desktop */

/* Mobile Hero Description */
.hero-description-section {
    width: 100%;
    max-width: 720px;
    text-align: center; /* Center for mobile */
    opacity: 0;
    animation: luxuryFadeIn 1.2s ease-out 0.3s forwards;
}

/* club-hero-description базовая типографика управляется через typography.css */
.club-hero-description {
    /* Типографика из typography.css: font-family, font-size, line-height, font-weight, color */
    /* Оставляем только специфичные свойства для этой страницы */
    margin: 0;
    text-align: center;
    padding: 0 10px;
    /* Animation */
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out 0.2s forwards;
}

/* club-hero-description strong управляется через typography.css */

/* Weekly Features - Only styled on desktop */

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Reduced gap for mobile compactness */
    padding: 3px 0; /* Minimal padding for tight spacing */
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-fast);
    opacity: 0;
    animation: luxurySlideIn 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 1) * 0.08s);
    position: relative;
    overflow: hidden;
    /* Touch-friendly mobile tap highlight */
    -webkit-tap-highlight-color: rgba(253, 167, 0, 0.1);
}

.feature-item:nth-child(1) { --item-index: 1;
}
.feature-item:nth-child(2) { --item-index: 2;
}
.feature-item:nth-child(3) { --item-index: 3;
}
.feature-item:nth-child(4) { --item-index: 4;
}

/* Mobile: No hover effects, only active states */
.feature-item:active {
    background: rgba(253, 167, 0, 0.05);
    transform: scale(0.99);
}

.feature-icon {
    flex-shrink: 0;
    /* Minimal bullet point for mobile */
    width: 3px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 6px;
    opacity: 0.6;
}

.feature-text {
    font-family: var(--font-primary);
    font-size: 0.8125rem; /* 13px - more compact for mobile */
    line-height: 1.3; /* Tighter line height for space saving */
    color: var(--color-text-light);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
    /* Better text rendering on mobile */
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Mobile Additional Features - Compact Luxury Style */
.additional-features {
    margin-top: 4px; /* Minimal margin from photo */
    padding: 4px 0; /* Very compact padding for mobile */
    position: relative;
}

.features-title {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0 0 6px 0; /* Minimal bottom margin for mobile */
    text-align: center;
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
}

/* Elegant separator - hidden on mobile for space saving */

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px; /* Minimal gap for compact mobile display */
    margin-top: 8px; /* Reduced top margin */
}

/* Mobile Scroll Indicator - Hidden on mobile to save space */
.scroll-indicator {
    display: none;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-text-muted);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.5;
}

@keyframes luxuryBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
}
    50% {
        transform: translateX(-50%) translateY(-8px);
}
}

/* === FOR YOU SECTION - MOBILE-FIRST LUXURY === */
/* Унифицированные отступы секций */
.for-you-section {
    padding: var(--spacing-section-mobile, 56px) 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .for-you-section {
        padding: var(--spacing-section-tablet, 80px) 0;
    }
}

@media (min-width: 1024px) {
    /* Hero Desktop Layout */
    .club-hero {
        padding-top: var(--header-height-desktop);
        min-height: 100vh;
        align-items: center;
    }

    .club-hero .container {
        padding: var(--header-height-desktop) 60px 60px;
        max-width: var(--container-max);
    }

    .hero-content-grid {
        flex-direction: row !important;
        gap: 64px;
        align-items: flex-start;
    }
    
    /* Override data-animate opacity for hero on desktop */
    .club-hero [data-animate] {
        opacity: 1 !important;
    }

    .hero-content-left {
        text-align: left !important;
        flex: 1;
        max-width: 50%;
        padding-top: 48px;
    }

    .hero-content-right {
        flex: 0 0 45%;
        display: block !important;
    }

    .hero-title-section {
        text-align: left;
        margin-bottom: 24px;
    }

    .hero-description-main {
        margin-bottom: 36px;
    }

    .club-hero-description {
        text-align: left;
        font-size: 1.0625rem;
        line-height: 1.7;
        max-width: 520px;
    }

    .hero-image-wrapper {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-luxury-elevated);
    }

    .hero-image-wrapper img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 24px;
    }

    .hero-highlights {
        margin-top: 28px;
    }

    .highlights-row {
        justify-content: flex-start;
        gap: 10px;
    }

    .highlight-tag {
        padding: 9px 20px;
        font-size: 0.875rem;
        background: rgba(249, 250, 244, 0.9);
        border-color: rgba(0, 0, 0, 0.07);
    }

    .hero-cta {
        margin-top: 40px;
        display: flex;
        gap: 16px;
    }

    /* For You Section */
    .for-you-section {
        padding: var(--spacing-section-desktop, 100px) 0;
    }
}

/* Subtle mobile gradient */
.for-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(253, 167, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

/* .container стили управляются через main.css */
.for-you-section .container {
    position: relative;
    z-index: 1;
}

/* Mobile-first header */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

/* Базовый .section-title теперь правильный в main.css - дополнительные стили не нужны */

/* Mobile-optimized grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Tighter mobile gap */
}

/* Mobile-first luxury cards */
.benefit-card {
    background: var(--color-background);
    border: none;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s ease;
    
    /* Subtle mobile shadow */
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
    
    /* Mobile entrance animation */
    opacity: 0;
    transform: translateY(16px);
    animation: mobileReveal 0.5s ease-out forwards;
    animation-delay: calc(var(--card-index, 1) * 0.08s);
}

@keyframes mobileReveal {
    to {
        opacity: 1;
        transform: translateY(0);
}
}

.benefit-card:nth-child(1) { --card-index: 1;
}
.benefit-card:nth-child(2) { --card-index: 2;
}
.benefit-card:nth-child(3) { --card-index: 3;
}
.benefit-card:nth-child(4) { --card-index: 4;
}

/* Remove unused pseudo-elements for mobile */
.benefit-card::before,
.benefit-card::after,
.benefit-card-inner {
    display: none;
}

/* Mobile tap feedback */
.benefit-card:active {
    background: var(--color-background-soft);
    transform: scale(0.98);
}

/* Simple mobile number */
.benefit-number {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: var(--letter-spacing-wider);
    margin-bottom: 12px;
    border: none;
    background: none;
}

.benefit-content {
    width: 100%;
}

/* Optimized mobile text */
.benefit-text {
    font-family: var(--font-primary);
    font-size: 0.9375rem; /* 15px perfect for mobile */
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Mobile accent text */
.benefit-text strong {
    color: var(--color-primary); /* Черный для лучшей читабельности */
    font-weight: 500;
    text-transform: none;
    font-size: inherit;
    letter-spacing: inherit;
    display: inline;
    position: relative;
    /* Оранжевая подчеркивание вместо оранжевого текста */
    background: linear-gradient(to bottom, transparent 85%, rgba(253, 167, 0, 0.25) 85%);
    padding-bottom: 2px;
}

/* Accessibility for mobile */
.benefit-card:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast support */

/* Reduced motion */

/* === TABLET STYLES === */

/* === DESKTOP STYLES === */

/* === HOW CLASSES WORK SECTION === */

/* How Classes Work Section - Luxury Wellness Style */
.how-classes-work {
    padding: var(--spacing-section-mobile, 56px) 0;
    background: var(--color-background);
    position: relative;
}

@media (min-width: 768px) {
    .how-classes-work {
        padding: var(--spacing-section-tablet, 80px) 0;
    }
}

@media (min-width: 1024px) {
    .how-classes-work {
        padding: var(--spacing-section-desktop, 100px) 0;
    }
}

.how-classes-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(253, 167, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.how-classes-work .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.how-classes-work .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-classes-work .section-title {
    /* font-family, font-size, font-weight наследуются из main.css */
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Process/Step стили -- определены в shared-sections.css */

/* === TABLET STYLES FOR HOW CLASSES WORK === */
@media (min-width: 768px) {
    .classes-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .process-step {
        padding: 32px 28px;
        height: 100%; /* Equal height cards */
        display: flex;
        flex-direction: column;
    }
    
    .step-content {
        flex: 1; /* Fill remaining space */
        display: flex;
        flex-direction: column;
    }
    
    .step-description {
        flex: 1; /* Push content to fill */
    }
}

/* === DESKTOP STYLES FOR HOW CLASSES WORK === */
@media (min-width: 1024px) {
    .classes-process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        align-items: stretch; /* Equal height cards */
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
        border-radius: 20px;
        min-height: 320px; /* Minimum height for consistency */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .step-icon {
        margin: 0 auto 20px;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .step-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        flex: 1;
    }
}

/* === LARGE DESKTOP STYLES === */
@media (min-width: 1440px) {
    .classes-process-grid {
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .process-step {
        padding: 48px 32px;
    }
}

/* === ACCESSIBILITY & PERFORMANCE === */

/* Reduce motion for users who prefer it */

/* High contrast mode support */

/* Focus styles for better accessibility */
.benefit-card:focus-within {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Print styles */

/* === HERO REFINEMENT (Alo style) === */
.club-hero {
    background: radial-gradient(1200px 600px at 50% -10%, rgba(253,167,0,0.05) 0%, rgba(253,167,0,0.02) 35%, transparent 60%),
                linear-gradient(135deg, var(--color-background-light) 0%, var(--color-background) 100%);
}

/* === HERO CONTENT GRID - MOBILE FIRST === */
.hero-content-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out forwards;
}

/* === LEFT CONTENT COLUMN === */
.hero-content-left {
    text-align: center;
    max-width: 100%;
    order: 1;
}

/* === RIGHT CONTENT COLUMN === */
.hero-content-right {
    width: 100%;
    max-width: 450px;
    order: 2;
    display: none; /* Hidden by default on mobile */
    /* opacity animated via data-animate in JS */
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-card);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile: скрываем правую колонку */
@media (max-width: 767px) {
    .hero-content-right {
        display: none !important;
    }
}

.hero-title-section {
    margin-bottom: 28px;
}

/* Дублирующие стили удалены - используются базовые стили из строки 188 для унификации */

.club-hero-subtitle {
    font-size: clamp(0.95rem, 2.6vw, 1.15rem);
    color: var(--color-text-light);
}

/* hero-content-wrapper удален */

.hero-image {
    box-shadow: none;
}

.club-hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Additional features list styling */
.additional-features .features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.feature-item:hover {
    transform: none;
}

.feature-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    display: inline-block;
    margin-top: 8px;
}

.feature-text {
    font-size: 0.98rem;
    line-height: 1.55;
}

.features-title {
    margin-top: 8px;
}

/* === HERO HIGHLIGHTS - Compact Feature Tags === */
.hero-highlights {
    margin-top: 20px;
}

.highlights-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-tag {
    padding: 8px 18px;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-text-light);
    background: rgba(249, 250, 244, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 9999px;
    white-space: nowrap;
    transition: background var(--transition-base);
}

/* Mobile CTA Section - inherit layout from main.css, add only unique styles */
.hero-cta {
    /* Layout inherited from main.css global rules */
    opacity: 0;
    animation: luxuryFadeIn 1.6s ease-out 0.8s forwards;
    padding: 0 20px; /* Club-specific padding */
}

/* Стили .btn управляются через main.css */

/* Mobile Primary Button */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-background);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    background: var(--color-secondary);
    transform: scale(0.98);
}

/* Mobile Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--color-primary);
}

/* === TABLET STYLES (768px+) === */

/* === DESKTOP STYLES (1024px+) === */

/* === LARGE DESKTOP (1440px+) === */

/* === CLUB RESULTS SECTION === */
.club-results {
    padding: var(--spacing-section-mobile, 56px) 0;
    background: var(--color-surface);
    position: relative;
}

@media (min-width: 768px) {
    .club-results {
        padding: var(--spacing-section-tablet, 80px) 0;
    }
}

@media (min-width: 1024px) {
    .club-results {
        padding: var(--spacing-section-desktop, 100px) 0;
    }
}

.club-results .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.club-results .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.club-results .section-title {
    position: relative;
    display: inline-block;
}

.club-results .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.results-intro {
    max-width: 780px;
    margin: 0 auto 56px auto;
}

.results-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Results стили -- определены в shared-sections.css */

/* Mobile-first enhancements */

/* Dark theme adjustments */
[data-theme="dark"] .result-item {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(253, 167, 0, 0.1);
}

[data-theme="dark"] .result-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(253, 167, 0, 0.2);
}

[data-theme="dark"] .result-title {
    color: var(--color-text-light);
}

[data-theme="dark"] .result-text {
    opacity: 0.8;
}

[data-theme="dark"] .result-number {
    color: var(--color-accent);
    opacity: 0.05;
}

/* === CLUB PRICING SECTION === */
.club-pricing {
    background: linear-gradient(180deg, #faf9f4 0%, #f3efdc 100%);
    padding: var(--spacing-section-mobile, 56px) 0;
    color: #111;
    position: relative;
}

@media (min-width: 768px) {
    .club-pricing {
        padding: var(--spacing-section-tablet, 80px) 0;
    }
}

@media (min-width: 1024px) {
    .club-pricing {
        padding: var(--spacing-section-desktop, 100px) 0;
    }
}

.club-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Glass Container */
.pricing-glass-container {
    max-width: 88%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 48px 24px;
    border: 1px solid rgba(255, 209, 100, .35);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.club-pricing .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.club-pricing .section-title {
    /* font-family, font-size, font-weight наследуются из main.css */
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.pricing-intro {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 167, 0, 0.08);
    border-radius: 999px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.payment-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
}

.pricing-plan {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all var(--transition-medium) ease;
}

.pricing-plan:active {
    transform: scale(0.98);
}

.pricing-plan.featured {
    border-color: rgba(253, 167, 0, 0.2);
    box-shadow: 0 12px 48px rgba(253, 167, 0, 0.12);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(249, 250, 240, 0.9));
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(253, 167, 0, 0.25);
    text-transform: uppercase;
}

.plan-duration {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
}

.duration-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.duration-text {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.plan-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-uah, .price-usd {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.price-usd .price-amount {
    font-size: 1.5rem;
    opacity: 0.7;
}

.price-currency {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-divider {
    color: var(--color-text-light);
    opacity: 0.3;
    font-weight: 300;
}

.plan-savings {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pricing-footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    padding: 0 20px;
}

.language-info {
    display: flex;
    gap: 12px;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.language-label {
    text-transform: lowercase;
    font-size: 0.875rem;
    opacity: 0.7;
}

.language-value {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* ── Per-plan buy button ─────────────────────────────── */
.plan-buy-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 11px 20px;
    background: transparent;
    color: rgba(0,0,0,0.6);
    border: 1.5px solid rgba(0,0,0,0.15);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, transform 0.15s;
}
.plan-buy-btn:hover {
    border-color: #FDA700;
    color: #FDA700;
    transform: translateY(-1px);
}
.pricing-plan.featured .plan-buy-btn {
    background: #FDA700;
    color: #fff;
    border-color: #FDA700;
    box-shadow: 0 4px 16px rgba(253,167,0,0.25);
}
.pricing-plan.featured .plan-buy-btn:hover {
    background: #e69500;
    border-color: #e69500;
}

/* .pricing-cta-button наследует стили от .btn-primary в main.css */
.pricing-cta-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 18px 40px;
}

.pricing-cta-button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

.pricing-cta-button svg {
    transition: transform var(--transition-fast);
}

.pricing-cta-button:hover svg {
    transform: translateX(2px);
    animation: iconFloat 1s ease-in-out infinite;
}

/* Mobile optimizations */

/* === SMART STICKY CTA === */
/* Mobile only - fixed bottom CTA with context-aware behavior */

/* Desktop: Hide Smart CTA */

/* Tablet styles */

/* Desktop styles */

/* Dark theme pricing styles */
[data-theme="dark"] .club-pricing {
    background: rgba(25, 28, 32, 0.95);
}

[data-theme="dark"] .payment-method {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(253, 167, 0, 0.15);
}

[data-theme="dark"] .pricing-plan {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .pricing-plan.featured {
    background: linear-gradient(to bottom, rgba(253, 167, 0, 0.05), rgba(253, 167, 0, 0.02));
    border-color: rgba(253, 167, 0, 0.3);
    box-shadow: 0 12px 48px rgba(253, 167, 0, 0.2);
}

[data-theme="dark"] .plan-pricing {
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .price-divider {
    opacity: 0.2;
}

[data-theme="dark"] .pricing-cta-button {
    /* Match dark theme hero button */
    background: var(--color-primary);
    color: var(--color-background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .pricing-cta-button:hover {
    background: var(--color-secondary);
}

/* Pulse animation for CTA button */
@keyframes pulseOnce {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
}

.pricing-cta-button.pulse-once {
    animation: pulseOnce 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* === PRICING MOBILE REDESIGN === */
/* Pricing mobile redesign: Carousel styles for mobile (max-width: 600px) */

