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

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --secondary: #00d9ff;
    --accent: #ff6b35;
    --dark: #0a0e27;
    --light: #f8f9fb;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

.hero {
    color: var(--white);
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 50, 100, 0.65) 100%);
    pointer-events: none;
    z-index: 2;
}

.navbar {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

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

.navbar-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.highlight {
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    letter-spacing: -0.2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: var(--secondary);
    color: var(--dark);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

section {
    padding: 100px 0;
}

h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.benefits {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--secondary);
}

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

.emoji {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.benefit-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 400;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.skill-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 26px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.skill-item:hover {
    background: var(--white);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
    border-color: var(--secondary);
}

.skill-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.skill-item p {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.program {
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.module-card {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    padding-left: 76px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.module-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.module-card h3 {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.trainer {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.trainer-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background: var(--white);
    padding: 56px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.trainer-image {
    flex-shrink: 0;
}

.trainer-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
    border: 3px solid var(--secondary);
}

.trainer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.trainer-info h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.trainer-info p {
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 400;
}

.for-whom {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.audience-card {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 32px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.12);
    background: var(--white);
}

.audience-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
}

.audience-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-weight: 400;
}

.guarantee {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.guarantee-card.highlight-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.25);
}

.guarantee-badge {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.guarantee-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.guarantee-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

.pricing {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.15);
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.price-normal,
.price-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-normal .label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-special .label {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price.old {
    font-size: 2.2rem;
    color: var(--gray-light);
    text-decoration: line-through;
    font-weight: 700;
}

.price.new {
    font-size: 3.2rem;
    color: var(--primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

.eu-funding-info {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 217, 255, 0.08) 100%);
    padding: 28px;
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    text-align: center;
}

.funding-badge {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.eu-funding-info p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.deadline-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.deadline-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.deadline-date {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

.pricing-cta .cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.pricing-cta .cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00c5e5 100%);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}

.schedule {
    background: var(--white);
}

.schedule-box {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.schedule-box h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 700;
}

.dates {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 32px;
}

.schedule-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    gap: 28px;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-day strong {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.schedule-day span {
    color: var(--gray);
    font-size: 0.9rem;
}

.schedule-note {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.faq {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
    border-color: var(--secondary);
}

.faq-question {
    padding: 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 28px 28px 28px;
    color: var(--gray-light);
    line-height: 1.8;
}

.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.registration-form {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px 22px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.registration-form button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    width: 100%;
    background: var(--white);
    color: var(--primary);
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registration-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.registration-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 24px;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    display: none;
    position: relative;
    z-index: 2;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(52, 199, 89, 0.2);
    color: var(--white);
    border: 1px solid rgba(52, 199, 89, 0.4);
}

.form-message.error {
    background: rgba(255, 69, 58, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 69, 58, 0.4);
}

footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 56px 20px;
}

footer p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.sustainability {
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .trainer-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .trainer-info h3 {
        text-align: center;
    }
    
    .trainer-photo {
        width: 120px;
        height: 120px;
    }
    
    .schedule-details {
        flex-direction: column;
    }
    
    .benefits-grid,
    .skills-grid,
    .modules-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .trainer-card {
        padding: 30px;
    }
    
    .schedule-box {
        padding: 40px;
    }
}
