/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a28;
    --text-primary: #e8e8f0;
    --text-secondary: #a8a8b8;
    --text-muted: #6a6a7a;
    --accent-primary: #ff6b35;
    --accent-secondary: #f7931e;
    --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --card-bg: rgba(26, 26, 40, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(255, 107, 53, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a28;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --accent-primary: #ff6b35;
    --accent-secondary: #f7931e;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.1);
    --glow-color: rgba(255, 107, 53, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

/* ===================================
   PARTICLE CANVAS
   =================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

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

.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--accent-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.theme-toggle:hover {
    transform: rotate(180deg);
    box-shadow: 0 0 20px var(--glow-color);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.85) 100%);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 60%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Светлая тема для Hero секции */
[data-theme="light"] .hero-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .hero-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    
}

.logo-image {
    width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.5));
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.cta-button.glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px var(--glow-color); }
    50% { box-shadow: 0 0 40px var(--glow-color); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===================================
   COMMON SECTION STYLES
   =================================== */
section {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 2rem;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    color: var(--text-primary);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--bg-secondary);
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    /*color: var(--text-secondary);*/
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
    background: var(--bg-primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1320px;
}

.philosophy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.card-header {
    padding: 3rem 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.card-header.warm::before {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
}

.card-header.silver::before {
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 100%);
}

.card-header.gold::before {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
}

.card-header .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    /*margin: 1rem 0;*/
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 2rem;
    color: var(--text-secondary);
}

.card-period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-subtitle {
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.card-body {
    padding: 0 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
    font-size: smaller;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--accent-primary);
    margin-top: 0.2rem;
}

.card-footer {
    padding: 2rem;
    text-align: center;
}

.btn-purchase {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    width: 100%;
    justify-content: center;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.pricing-additional {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.additional-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.additional-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 1rem 0;
}



.rental-info {
    margin-top: 1rem;
}

.rental-info p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.rental-info strong {
    color: var(--text-primary);
}

.discount-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===================================
   FOUNDERS SECTION
   =================================== */
.founders-section {
    background: var(--bg-primary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.founder-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
}

.founder-card.aos-animate {
    opacity: 1;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.founder-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 4rem;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.founder-info {
    padding: 2rem;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.founder-role {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.founder-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 34px;
}

.social-link:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow-color);
}

/* ===================================
   TEAM SECTION
   =================================== */
.team-section {
    background: var(--bg-secondary);
}

.team-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.team-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.team-placeholder p {
    font-size: 1.3rem;
}

/* ===================================
   VACANCIES SECTION
   =================================== */
.vacancies-section {
    background: var(--bg-primary);
}

.vacancies-toggle {
    text-align: center;
    margin: 2rem 0;
}

.toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.toggle-button:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.toggle-button i {
    transition: transform var(--transition-normal);
}

.toggle-button.active i {
    transform: rotate(180deg);
}

.vacancies-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 1;
}

.vacancies-content.hidden {
    max-height: 0;
    opacity: 0;
}

.vacancies-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.vacancies-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.vacancies-placeholder p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.placeholder-note {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===================================
   WEEKLY SCHEDULE SECTION
   =================================== */
.schedule-section {
    position: relative;
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-secondary);
    overflow: hidden;
    z-index: 10;
    min-height: 50vh;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.legend-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.schedule-date-picker {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.date-picker-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.date-picker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.date-picker-btn i {
    font-size: 1.2rem;
}

.date-picker-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#currentDateText {
    font-size: 1rem;
}

.weekly-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.weekly-day-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
}

.weekly-day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
}

.day-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-bottom: 2px solid var(--accent-primary);
}

.day-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.day-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.day-theme {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.day-events {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-slot {
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.event-slot:hover {
    transform: translateX(5px);
}

/* Типы событий */
.event-free {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.event-free:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(32, 201, 151, 0.2) 100%);
    border-color: rgba(40, 167, 69, 0.5);
}

.event-regular {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.event-regular:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border-color: rgba(255, 107, 53, 0.5);
}

.event-paid {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-color: rgba(108, 92, 231, 0.3);
}

.event-paid:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(162, 155, 254, 0.2) 100%);
    border-color: rgba(108, 92, 231, 0.5);
}

.event-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-time::before {
    content: '🕐';
    font-size: 1.2rem;
}

.event-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.event-host {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.event-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.event-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.event-btn:hover::before {
    width: 300px;
    height: 300px;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Кнопка для свободных слотов - менее яркая */
.event-free .event-btn {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.7) 0%, rgba(32, 201, 151, 0.7) 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.event-free .event-btn:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.85) 0%, rgba(32, 201, 151, 0.85) 100%);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Контейнер управления расписанием */
.schedule-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Кастомный выбор даты */
.date-picker-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.date-picker-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.date-picker-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

/* Кастомный календарь */
.custom-calendar {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.3s ease;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--card-border);
}

.calendar-month-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    color: var(--accent-primary);
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.calendar-day:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.calendar-day.other-month {
    color: var(--text-muted);
    opacity: 0.4;
}

.calendar-day.today {
    background: var(--accent-secondary);
    color: white;
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Светлая тема для расписания */
[data-theme="light"] .schedule-section {
    background: var(--bg-primary);
}

[data-theme="light"] .weekly-day-card {
    background: var(--card-bg);
    border-color: var(--card-border);
}

[data-theme="light"] .day-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

[data-theme="light"] .event-free {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(32, 201, 151, 0.15) 100%);
    border-color: rgba(40, 167, 69, 0.4);
}

[data-theme="light"] .event-regular {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    border-color: rgba(255, 107, 53, 0.4);
}

[data-theme="light"] .event-paid {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(162, 155, 254, 0.15) 100%);
    border-color: rgba(108, 92, 231, 0.4);
}

/* Календарь в светлой теме */
[data-theme="light"] .date-picker-btn {
    background: white;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a28;
}

[data-theme="light"] .date-picker-btn:hover {
    border-color: var(--accent-primary);
    background: #f8f9fa;
}

[data-theme="light"] .custom-calendar {
    background: white;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .calendar-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .calendar-month-year {
    color: #1a1a28;
}

[data-theme="light"] .calendar-nav-btn {
    background: #f8f9fa;
}

[data-theme="light"] .calendar-weekday {
    color: #495057;
}

[data-theme="light"] .calendar-day {
    background: #f8f9fa;
    color: #1a1a28;
}

[data-theme="light"] .calendar-day.other-month {
    color: #6c757d;
}

/* ===================================
   EVENT MODAL
   =================================== */

/* Main Modal */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.event-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.event-modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

/* Header */
.event-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--card-border);
    background: var(--bg-secondary);
}

.event-modal-type {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 0;
}

.event-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all var(--transition-fast);
    border-radius: 8px;
}

.event-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    transform: rotate(90deg);
}

/* Content (scrollable) */
.event-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-secondary);
}

.event-modal-content::-webkit-scrollbar {
    width: 8px;
}

.event-modal-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.event-modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

/* Loading State */
.event-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--bg-tertiary);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.event-modal-loading p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Error State */
.event-modal-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.event-modal-error svg {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.event-modal-error p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Event Content */
.event-media {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
}

.event-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.event-info {
    color: var(--text-primary);
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-datetime {
    font-size: 1rem;
    color: var(--text-secondary);
}

.event-location-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.event-location-badge.online {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.event-price {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.event-short-description {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.event-site {
    margin: 1.5rem 0;
}

.event-site a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.event-site a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.event-capacity {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 4px;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Footer */
.event-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--card-border);
    background: var(--bg-secondary);
}

.event-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.event-btn svg {
    width: 20px;
    height: 20px;
}

.event-btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.event-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.event-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--card-border);
}

.event-btn-secondary:hover {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.share-modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.2s ease;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--card-border);
}

.share-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.share-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all var(--transition-fast);
    border-radius: 8px;
}

.share-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
}

.share-modal-content {
    padding: 2rem;
}

.share-modal-label {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-link-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.share-link-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.copy-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.copy-success {
    color: #28a745;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Light Theme */
[data-theme="light"] .event-modal-container,
[data-theme="light"] .share-modal-container {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .event-modal-header,
[data-theme="light"] .event-modal-footer,
[data-theme="light"] .share-modal-header {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .event-location-badge {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .event-capacity {
    background: #f8f9fa;
}

[data-theme="light"] .event-btn-secondary {
    background: white;
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .share-link-input {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }
    
    .event-modal-header,
    .event-modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .event-modal-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-modal-footer {
        flex-direction: column;
    }
    
    .share-modal-container {
        width: 95%;
        margin: 1rem;
    }
    
    .share-link-container {
        flex-direction: column;
    }
    
    .copy-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer-section {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 2rem 2rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-list i {
    color: var(--accent-primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    background: var(--bg-primary);
}

.benefits-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.benefits-intro .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefits-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
}

.benefits-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefits-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===================================
   SCHEDULE SECTION
   =================================== */
.schedule-section {
    background: var(--bg-secondary);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.day-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.day-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.day-card:hover::before {
    transform: scaleX(1);
}

.day-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.day-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.day-info {
    flex: 1;
}

.day-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.day-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.day-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.schedule-note {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.schedule-note p {
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-note i {
    color: var(--accent-primary);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-features,
    .philosophy-grid,
    .benefits-grid,
    .schedule-grid,
    .weekly-schedule-grid,
    .pricing-grid,
    .pricing-additional,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .schedule-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legend-item {
        justify-content: center;
    }
    
    /* Адаптация календаря для планшетов */
    .schedule-controls {
        gap: 1.5rem;
    }
    
    .date-picker-wrapper {
        max-width: 100%;
    }
    
    .custom-calendar {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .pricing-card .card-header {
        padding: 2rem 1.5rem;
    }
    
    /* Адаптация календаря для мобильных */
    .date-picker-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .custom-calendar {
        max-width: 280px;
        padding: 1rem;
    }
    
    .calendar-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .calendar-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .calendar-weekday {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Smooth transitions for all interactive elements */
a, button, .card, .pricing-card, .feature-card, .philosophy-card {
    transition: all var(--transition-normal);
}










.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/ae5e4f39a4bf02209249199b2453d7b5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.about-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .about-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .about-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}




.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/62c135764a556d8ac1c4165b669a7cbc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.philosophy-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.philosophy-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .philosophy-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .philosophy-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}




.benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/eb98e7c9252c90091a2a4d4b0917d05f.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.benefits-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.benefits-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .benefits-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .benefits-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}



.events-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/ae5e4f39a4bf02209249199b2453d7b5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.events-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.events-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .events-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .events-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}




.founders-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/bcc31dec88eb7c01009254a67cac9374.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.founders-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.founders-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .founders-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .founders-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}




.team-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/a6a94ae60ff294b5e2a36970f7b4ebc9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.team-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.team-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .team-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .team-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}





.vacancies-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage4u.ru/file/2026/01/09/16b2329a628a2007b3bcea17f2c2ed9f.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.vacancies-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.vacancies-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(44, 18, 9, 0.15) 0%, transparent 80%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 2;
}

[data-theme="light"] .vacancies-background::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.85) 0%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.85) 100%);
}

[data-theme="light"] .vacancies-background::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.5) 60%, transparent 100%);
}