:root {
    --primary-blue: #2b6cb0;
    --primary-green: #38a169;
    --accent-orange: #ed8936;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --primary-blue-rgb: 43, 108, 176;
    --primary-green-rgb: 56, 161, 105;
    --primary-blue-dark: #2D5A9E;
    --primary-green-dark: #2F855A;
    --border-color: #E2E8F0;
    --border-hover: #CBD5E0;
    --error-color: #E53E3E;
    --bg-hover: #E2E8F0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this value based on your header height */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

h1, h2, h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 0;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 70vh;
}

.hero-portrait {
    width: auto;
    height: 70vh;
    max-height: 70vh;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 60%, 
    rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 50%, 
    rgba(0, 0, 0, 0) 100%
    );
}

.hero-credentials {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.hero-credentials h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.hero-credentials p {
    font-size: 1.1rem!important;
    opacity: 0.9;
    text-align: center !important;
    max-width: 80%;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h1,
.hero-text p {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.hero h1 .subtitle {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: left;
    max-width: 800px;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-details {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.enroll-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.enroll-button i {
    transition: transform 0.3s ease;
}

.enroll-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 148, 244, 0.3);
}

.enroll-button:hover i {
    transform: translateX(4px);
}

.primary-button {
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    box-shadow: 0 4px 15px rgba(183, 148, 244, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 148, 244, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(183, 148, 244, 0.5);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(183, 148, 244, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 148, 244, 0.2);
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.hero-button:hover::before {
    left: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 112, 219, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 500px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(64, 224, 208, 0.2));
    animation: float 6s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: flex-start;  /* Changed from center to flex-start */
        text-align: left;
        position: relative;
        z-index: 2;
        padding: 3rem 0;
    }
    
    .hero-text {
        padding-top: 3rem;  /* Add padding to align with image */
    }
    
    .hero-credentials {
        text-align: center;
        margin-top: -4rem;  /* Change this from 1rem to -4rem to move text up */
        position: relative;
        z-index: 2;
    }
    
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        height: 70vh;
        padding-top: 0;  /* Remove any top padding */
    }
    
    .hero-credentials h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(90deg, #b794f4, #4fd1c5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero-credentials p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        line-height: 1.6;
    }

    .enroll-button {
        margin: 1rem auto 0;
        display: flex;
        justify-content: center;
        max-width: 250px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-text h1,
    .hero-text p {
        text-align: center;
    }

    .hero-image-wrapper {
        order: 1;
        height: auto;
        max-height: 60vh;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-portrait {
        height: auto;
        max-height: 60vh;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        object-fit: contain;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 .subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-details {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-credentials h3 {
        font-size: 1.8rem;
    }
    
    .hero-credentials p {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-course {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-course h2 {
    font-size: 3.2rem;
    font-family: 'Lora', serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #B794F4 0%, #4FD1C5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 3rem;
    margin-bottom: 3rem;
}

.about-course h2::before,
.about-course h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    top: 50%;
}

.about-course h2::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 244, 0.8));
    margin-right: 15px;
}

.about-course h2::after {
    left: 100%;
    background: linear-gradient(90deg, rgba(79, 209, 197, 0.8), transparent);
    margin-left: 15px;
}

.about-course .section-header {
    text-align: center;
    padding-top: 2rem;
    position: relative;
}

.about-blocks {
    position: relative;
    z-index: 1;
}

.about-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid rgba(183, 148, 244, 0.1);
}

.icon-wrapper {
    color: #4fd1c5;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Questions Section */
.questions {
    background: linear-gradient(135deg, #030303 0%, #0a0a0a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
}

.questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(79, 209, 197, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(79, 209, 197, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 75% 25%, rgba(79, 209, 197, 0.03) 0%, transparent 65%),
        radial-gradient(circle at 20% 80%, rgba(183, 148, 244, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(183, 148, 244, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 25% 75%, rgba(183, 148, 244, 0.03) 0%, transparent 65%),
        linear-gradient(45deg, rgba(183, 148, 244, 0.02) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(79, 209, 197, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.questions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.9), rgba(183, 148, 244, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

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

.question-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 148, 244, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 100% 0%, rgba(79, 209, 197, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(183, 148, 244, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.question-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(183, 148, 244, 0.05),
        0 0 20px rgba(79, 209, 197, 0.05);
}

.question-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(79, 209, 197, 0.05) 0%, 
        rgba(183, 148, 244, 0.05) 100%
    );
    border-radius: 50%;
    border: 1px solid rgba(183, 148, 244, 0.08);
    position: relative;
    overflow: hidden;
}

.question-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(79, 209, 197, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(183, 148, 244, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.question-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.9), rgba(183, 148, 244, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.question-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .questions-grid {
        grid-template-columns: 1fr;
    }
    
    .questions h2 {
        font-size: 2rem;
    }
}

/* Program Section */
.program {
    background: linear-gradient(135deg, #030303 0%, #0a0a0a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 15%, rgba(183, 148, 244, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 25% 25%, rgba(183, 148, 244, 0.03) 0%, transparent 65%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(79, 209, 197, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(79, 209, 197, 0.03) 0%, transparent 65%);
    pointer-events: none;
}

.program::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(183, 148, 244, 0.02) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(79, 209, 197, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.program-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 90% 10%, rgba(79, 209, 197, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(183, 148, 244, 0.05) 0%, transparent 50%);
    filter: blur(40px);
    pointer-events: none;
}

.program h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.9), rgba(79, 209, 197, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.program-grid {
    position: relative;
    z-index: 2;
}

.program-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 148, 244, 0.08);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 100% 0%, rgba(79, 209, 197, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(183, 148, 244, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(183, 148, 244, 0.05),
        0 0 20px rgba(79, 209, 197, 0.05);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.9), rgba(79, 209, 197, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.program-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.personality-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.personality-types span {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.1) 0%, rgba(79, 209, 197, 0.1) 100%);
    border: 1px solid rgba(183, 148, 244, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.personality-types span:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.2) 0%, rgba(79, 209, 197, 0.2) 100%);
    border-color: rgba(183, 148, 244, 0.4);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 3px 6px rgba(183, 148, 244, 0.2);
    color: white;
}

.personality-types span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.personality-types span:hover::before {
    left: 100%;
}

.personality-types span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.personality-types span:hover::after {
    transform: scaleX(1);
}

.details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .personality-types {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        padding: 1.5rem;
    }
}

/* Learning Outcomes Section */
.learning {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.learning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.learning h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.learning .column {
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 148, 244, 0.1);
    transition: all 0.3s ease;
}

.learning .column:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.learning h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.learning ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.learning li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.learning li i {
    color: #4fd1c5;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.learning li span {
    flex: 1;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .learning .columns {
        grid-template-columns: 1fr;
    }
    
    .learning h2 {
        font-size: 2rem;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(183, 148, 244, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 1px solid rgba(183, 148, 244, 0.3);
    background: rgba(183, 148, 244, 0.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-list {
    margin-bottom: 0.5rem;
    list-style: none;
    flex-grow: 0;
}

.features-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "✓";
    color: #4fd1c5;
    position: absolute;
    left: 0;
    top: 0;
}

.features-list li.unavailable {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.features-list li.unavailable::before {
    content: "×";
    color: rgba(255, 255, 255, 0.4);
}

.feature-description {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-left: 1rem;
    text-indent: -1rem;
}

.feature-description.small {
    font-size: 0.8rem;
    font-style: italic;
    padding-left: 0;
    text-indent: 0;
}

.bold {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-action {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.original-price {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.signup-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.signup-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.signup-button:hover::before {
    transform: translateX(200%);
}

.vip-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pro-only {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing-divider {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.pricing-divider::before,
.pricing-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, 
    rgba(183, 148, 244, 0), 
        rgba(183, 148, 244, 0.3), 
        rgba(183, 148, 244, 0)
    );
}

.pricing-divider::before {
    left: 0;
}

.pricing-divider::after {
    right: 0;
    transform: rotate(180deg);
}

.divider-icon {
    display: inline-block;
    color: rgba(183, 148, 244, 0.5);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    padding: 0 10px;
}

.pricing-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.installment-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.8rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .pricing h2 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

/* Contact Form Section */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(147, 112, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(64, 224, 208, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-card .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #9370DB;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input:focus + i {
    color: #9370DB;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.submit-button {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-button.loading .button-text {
    visibility: hidden;
}

.submit-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
    #a583e0,
    #3ebfb4);
}

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

.submit-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(4px);
}

.privacy-notice {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.privacy-notice i {
    color: #4fd1c5;
}

.privacy-notice-text {
    flex: 1;
    text-align: center;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-message.active {
    display: flex;
    animation: fadeIn 0.8s ease-in-out;
}

.success-message i {
    font-size: 4rem;
    color: #4fd1c5;
    margin-bottom: 0.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h4 {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .close-modal {
        width: 44px;
        height: 44px;
        right: 1rem;
        top: 1rem;
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .modal-content {
        width: 92%;
        margin: 3vh auto;
        padding: 2rem;
        padding-top: 3rem;
        max-height: 94vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F3B78 0%, #4FD1C5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 59, 120, 0.95), rgba(79, 209, 197, 0.95));
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -20px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.testimonial-card {
    flex: 0 0 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2D3748;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author {
    color: #4F3B78;
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F3B78;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% / 3 - 14px);
    }
    
    .testimonials h2 {
        font-size: 3rem;
    }
}

/* Course Features Section */
.course-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.course-features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(0, 189, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Unique styles for each card */
.motivators .feature-icon {
    background: linear-gradient(135deg, #ff6b6b20 0%, #ff6b6b40 100%);
}

.motivators .feature-icon i {
    color: #ff6b6b;
}

.inner-search .feature-icon {
    background: linear-gradient(135deg, #4ecdc420 0%, #4ecdc440 100%);
}

.inner-search .feature-icon i {
    color: #4ecdc4;
}

.uniqueness .feature-icon {
    background: linear-gradient(135deg, #a66bff20 0%, #a66bff40 100%);
}

.uniqueness .feature-icon i {
    color: #a66bff;
}

.development .feature-icon {
    background: linear-gradient(135deg, #ffd93d20 0%, #ffd93d40 100%);
}

.development .feature-icon i {
    color: #ffd93d;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60px;
}

.motivators h3::after { background: #ff6b6b; }
.inner-search h3::after { background: #4ecdc4; }
.uniqueness h3::after { background: #a66bff; }
.development h3::after { background: #ffd93d; }

.feature-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

.course-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    position: relative;
}

.course-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 112, 219, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.05) 0%, transparent 30%);
}

.course-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.info-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1.275);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

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

.card-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9370DB, #40E0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    line-height: 1;
}

.card-header h3 {
    color: #333;
    font-size: 1.8rem;
    margin: 0;
    position: relative;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.info-card:nth-child(1) { border-left: 5px solid #9370DB; }
.info-card:nth-child(2) { border-left: 5px solid #40E0D0; }
.info-card:nth-child(3) { border-left: 5px solid #FF69B4; }
.info-card:nth-child(4) { border-left: 5px solid #FFD700; }

@media (max-width: 768px) {
    .info-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .card-header {
        gap: 1rem;
    }

    .card-number {
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.4rem;
    }

    .info-card p {
        font-size: 1rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
    rgba(79, 209, 197, 0.95), 
        transparent);
}

.section-header h2::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 59, 120, 0.95));
}

.section-header h2::after {
    left: 100%;
    background: linear-gradient(270deg, transparent, rgba(79, 209, 197, 0.95));
}

.header-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FF6347, #40E0D0);
    margin: 1rem auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.header-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2::before,
    .section-header h2::after {
        width: 20px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

.note-content {
    background: rgba(183, 148, 244, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 148, 244, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.note-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.note-content i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.note-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .note-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
    
    .note-content i {
        margin-bottom: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    margin: 15px auto;
    padding: 2.8rem;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

.modal-course-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modal-course-info.vip {
    background: linear-gradient(145deg, rgba(79, 209, 197, 0.15), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.3);
    box-shadow: 0 8px 24px rgba(79, 209, 197, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-course-info.vip::before {
    content: 'VIP';
    position: absolute;
    top: 12px;
    right: -24px;
    background: #4fd1c5;
    color: #fff;
    padding: 4px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.modal-course-info h4 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.modal-course-info.vip h4 {
    color: #4fd1c5;
    font-size: 1.5rem;
}

.modal-course-info p {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin: 0;
}

.modal-course-info.vip p {
    color: #fff;
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.form-group input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input:focus {
    outline: none;
    border-color: #b794f4;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 0 3px rgba(183, 148, 244, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.form-group input:focus + .input-icon {
    color: #b794f4;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.error-message {
    display: none;
    color: #F87171;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding-left: 3.2rem;
}

.error-message.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.submit-button {
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-button.loading .button-text {
    visibility: hidden;
}

.submit-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 148, 244, 0.3);
}

.submit-button:active {
    transform: translateY(1px);
}

.submit-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: rotate(360deg);
}

.submit-button.loading {
    position: relative;
    cursor: wait;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.submit-button.loading .button-text,
.submit-button.loading i {
    opacity: 0;
}

.privacy-notice {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.privacy-notice i {
    color: #4fd1c5;
}

.privacy-notice-text {
    flex: 1;
    text-align: center;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-message.active {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

.success-message i {
    font-size: 4rem;
    color: #4fd1c5;
    margin-bottom: 0.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h4 {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .close-modal {
        width: 44px;
        height: 44px;
        right: 1rem;
        top: 1rem;
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .modal-content {
        width: 92%;
        margin: 3vh auto;
        padding: 2rem;
        padding-top: 3rem;
        max-height: 94vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.about-course {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 112, 219, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.about-course .container {
    position: relative;
    z-index: 2;
}

.about-blocks {
    margin-top: 4rem;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.about-block:last-child {
    margin-bottom: 0;
}

.block-content {
    padding: 2rem;
}

.text-content {
    max-width: 500px;
}

.block-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(79, 209, 197, 0.1);
    transition: transform 0.3s ease;
}

.block-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(79, 209, 197, 0.2), rgba(183, 148, 244, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.block-image:hover::before {
    opacity: 1;
}

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

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

.block-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #4fd1c5, #b794f4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(79, 209, 197, 0.15);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.text-content h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #4fd1c5, #b794f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4fd1c5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #4fd1c5, #b794f4);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.learn-more:hover {
    gap: 0.8rem;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .about-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
    }

    .block-content {
        padding: 1rem;
        order: 1;
    }

    .block-image {
        order: 2;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h3 {
        font-size: 1.8rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 2rem;
    }
}

.program {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    z-index: 2;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to bottom,
        #0f0f0f,
        rgba(15, 15, 15, 0.8) 40%,
        rgba(5, 5, 5, 0.5) 70%,
        transparent
    );
    pointer-events: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, rgba(21, 21, 35, 0.95), rgba(21, 21, 35, 0.98));
    padding: 4rem 0 0rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(183, 148, 244, 0), 
        rgba(183, 148, 244, 0.5), 
        rgba(183, 148, 244, 0)
    );
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: rgba(183, 148, 244, 0.9);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(183, 148, 244, 0.8);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: rgba(183, 148, 244, 0.9);
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(183, 148, 244, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 148, 244, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(183, 148, 244, 0.2) 0%,
        rgba(183, 148, 244, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    background: rgba(183, 148, 244, 0.15);
    color: white;
    transform: translateY(-2px);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:active {
    transform: translateY(0);
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.social-link .fa-vk {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183, 148, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 209, 197, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 1px;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    border-radius: 2px;
    animation: lineExpand 0.8s ease-out forwards 0.5s;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(183, 148, 244, 0.2);
}

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

.quote-icon {
    color: rgba(183, 148, 244, 0.15);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.review-card:hover .quote-icon {
    transform: translateY(-3px);
    color: rgba(183, 148, 244, 0.3);
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    position: relative;
    border-top: 1px solid rgba(183, 148, 244, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: auto;
}

.reviewer-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviewer-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }

    .reviews h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .review-card {
        padding: 2rem;
    }

    .review-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.accent-text {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #B794F4, #4FD1C5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 4rem;
}

.subtitle {
    display: block;
    font-size: 2.2rem;
    color: #B794F4;
    margin-top: 0.5rem;
}

.highlight-text {
    font-size: 1.8rem;
    color: #B794F4;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 500;
    background: linear-gradient(135deg, #B794F4, #B794F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.specialists-list ul li {
    font-size: 1.3rem;
}

.specialists-list p:last-child {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-top: 1.5rem;
    text-align: left;
    padding-left: 0;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    margin-left: 0;
}

.start-date {
    font-size: 1.8rem;
    color: #4FD1C5;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4FD1C5, #B794F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    animation: pulse-gradient 2s ease-in-out infinite;
    display: inline-block;
    position: relative;
    margin: 2rem auto;
}

.start-date::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.1) 0%, rgba(183, 148, 244, 0.1) 100%);
    border-radius: 8px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

@keyframes pulse-gradient {
    0% {
        background: linear-gradient(135deg, #4FD1C5, #B794F4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: scale(1);
    }
    50% {
        background: linear-gradient(135deg, #B794F4, #4FD1C5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: scale(1.05);
    }
    100% {
        background: linear-gradient(135deg, #4FD1C5, #B794F4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

.schedule-info {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0.5rem;
    color: rgba(183, 148, 244, 0.9);
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .accent-text {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.6rem;
    }

    .start-date {
        font-size: 1.5rem;
    }

    .schedule-info {
        font-size: 1rem;
        padding: 0 15px;
    }

    .specialists-list {
        padding: 0 15px;
    }

    .specialists-list ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .specialists-list ul li {
        padding: 0.5rem 1rem;
        margin: 0;
        background: rgba(183, 148, 244, 0.1);
        border-radius: 20px;
        text-align: center;
        width: auto;
        display: inline-block;
    }

    .specialists-list ul li::before {
        display: none;
    }

    .specialists-list p:last-child {
        font-size: 1rem;
        padding: 0.8rem;
        margin-top: 1rem;
        text-align: center;
    }
}

.phone-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.phone-link:hover {
    color: #4FD1C5;
}

.specialists-list ul {
    margin: 1.5rem 0 1.5rem 1.2rem;
}

/* Add will-change for better performance on animations */
.hero-button, .feature-card, .pricing-card {
    will-change: transform;
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
    .fade-up {
        opacity: 0;
        transform: translateY(10px); /* Reduced distance */
        transition: opacity 0.4s ease, transform 0.4s ease; /* Faster animation */
    }

    .hero-button::before {
        transition: all 0.2s ease; /* Faster hover effect */
    }

    .feature-card, .pricing-card {
        transition: transform 0.2s ease; /* Faster card animations */
    }

    /* Reduce animation complexity on mobile */
    .hero-button:hover::before,
    .feature-card:hover,
    .pricing-card:hover {
        transform: scale(1.02); /* Smaller scale effect */
    }
}

/* Add hardware acceleration for smoother animations */
.hero-button,
.feature-card,
.pricing-card,
.modal-content,
.fade-up {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* User Agreement Section */
.user-agreement {
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.1) 0%, rgba(79, 209, 197, 0.1) 100%), linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.user-agreement h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Lora', serif;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.user-agreement p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

/* Certificate Section */
.certificate {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    padding: 6rem 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(56, 161, 105, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.certificate .section-title {
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.certificate .section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.certificate .section-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.certificate-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.certificate-main {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.certificate-main:hover {
    transform: translateY(-10px);
}

.certificate-large {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.certificate-previews {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

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

.preview-image {
    width: 250px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.preview-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 161, 105, 0.2);
}

.certificate-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-caption {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Fallback styles for missing images */
.preview-image img:not([src]),
.preview-image img[src=""],
.certificate-main img:not([src]),
.certificate-main img[src=""] {
    background: linear-gradient(135deg, rgba(56, 161, 105, 0.1) 0%, rgba(43, 108, 176, 0.1) 100%);
    position: relative;
}

.preview-image img:not([src])::after,
.preview-image img[src=""]::after,
.certificate-main img:not([src])::after,
.certificate-main img[src=""]::after {
    content: 'Образец сертификата';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .certificate {
        padding: 4rem 0;
    }

    .certificate .section-title {
        font-size: 2rem;
    }

    .certificate .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .certificate-previews {
        flex-direction: column;
        align-items: center;
    }

    .preview-image {
        width: 100%;
        max-width: 300px;
    }
}

.certificate {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    padding: 6rem 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(43, 108, 176, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.certificate .section-title {
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.certificate .section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.certificate-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.small-images-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-small-wrapper {
    width: 250px;
    height: 180px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.certificate-small-wrapper:hover {
    transform: translateY(-5px);
}

.certificate-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-large-wrapper {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    padding: 1rem;
}

.certificate-large {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fallback styles for missing images */
.certificate-small-wrapper img:not([src]),
.certificate-small-wrapper img[src=""],
.certificate-large-wrapper img:not([src]),
.certificate-large-wrapper img[src=""] {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    min-height: 100%;
}

@media (max-width: 768px) {
    .certificate {
        padding: 4rem 0;
    }

    .certificate .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .certificate .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .certificate-block {
        margin: 0 1rem;
        padding: 1rem;
    }

    .small-images-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .certificate-small-wrapper {
        width: 100%;
        max-width: 300px;
    }
}

#certificate {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
}

#certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(43, 108, 176, 0.1) 0%, transparent 70%);
}

#certificate .container {
    position: relative;
    z-index: 1;
}

.certificate-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#certificate h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

#certificate .description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certificates-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.small-certificates {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-small {
    width: 250px;
    height: 180px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cert-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.cert-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-large {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

.cert-large img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cert-large:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    #certificate {
        padding: 40px 0;
    }

    .certificate-block {
        padding: 20px;
        margin: 0 15px;
    }

    #certificate h2 {
        font-size: 2rem;
    }

    #certificate .description {
        font-size: 1.1rem;
    }

    .small-certificates {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cert-small {
        width: 100%;
        max-width: 300px;
    }
}

.certificates-container {
    margin-top: 3rem;
}

.photo-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.photo-block {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.photo-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-block.small {
    aspect-ratio: 4/3;
}

.photo-block.large {
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .photo-blocks {
        grid-template-columns: 1fr;
    }
}

.photo-block {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Certificate Modal Styles */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 2rem;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

.certificate-modal .close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certificate-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.modal-certificate-image {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalImageZoom 0.3s ease-out;
}

@keyframes modalImageZoom {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-certificate-image {
        max-width: 95%;
    }
    
    .certificate-modal {
        padding: 1rem;
    }
    
    .certificate-modal .close-modal {
        right: 1rem;
        top: 1rem;
    }
}

.certificate h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 1px;
    animation: titleSlideIn 1s ease-out forwards;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    border-radius: 2px;
    animation: lineExpand 0.8s ease-out forwards 0.5s;
}

@keyframes lineExpand {
    0% {
        transform: translateX(-50%) scaleX(0);
    }
    100% {
        transform: translateX(-50%) scaleX(1);
    }
}

.certificate .description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards 0.8s;
}

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

.photo-block {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: certificateBlocksAppear 0.6s ease-out forwards;
}

.photo-blocks .photo-block:nth-child(1) { animation-delay: 1s; }
.photo-blocks .photo-block:nth-child(2) { animation-delay: 1.2s; }
.photo-blocks .photo-block:nth-child(3) { animation-delay: 1.4s; }
.photo-block.large { animation-delay: 1.6s; }

@keyframes certificateBlocksAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.certificate-block {
    opacity: 0;
    transform: translateY(20px);
    animation: blockAppear 0.8s ease-out forwards 0.3s;
}

@keyframes blockAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-modal .close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.certificate-modal .close-modal::before {
    content: '×';
    position: absolute;
    transition: all 0.3s ease;
}

.certificate-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: pulseGlow 1.5s infinite;
}

.certificate-modal .close-modal:hover::before {
    animation: pulseScale 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pulseScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Custom Checkbox styles */
.checkbox-group {
    margin: 1.5rem 0;
    position: relative;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(79, 209, 197, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-label:hover {
    background: rgba(26, 32, 44, 0.98);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-1px);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    min-width: 24px;
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, rgba(26, 32, 44, 0.95), rgba(17, 24, 39, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 45%;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-label:hover .checkmark {
    border-color: rgba(79, 209, 197, 0.5);
    background: linear-gradient(145deg, rgba(26, 32, 44, 0.98), rgba(17, 24, 39, 0.98));
    box-shadow: 
        0 2px 8px rgba(79, 209, 197, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(145deg, #4fd1c5, #3fa89e);
    border-color: rgba(79, 209, 197, 0.5);
    box-shadow: 
        0 2px 8px rgba(79, 209, 197, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
    animation: checkmark-appear 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.checkbox-text {
    font-size: 0.92rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkbox-text {
    color: #4fd1c5;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: #4fd1c5;
}

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

/* Mobile adaptations */
@media (max-width: 768px) {
    .checkbox-group {
        margin: 1.25rem 0;
    }

    .checkbox-label {
        padding: 0.75rem;
    }

    .checkmark {
        min-width: 22px;
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }

    .checkbox-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Small mobile adaptations */
@media (max-width: 480px) {
    .checkbox-label {
        padding: 0.625rem;
    }

    .checkmark {
        min-width: 20px;
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .checkbox-text {
        font-size: 0.85rem;
    }
}

.footer-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--primary-blue);
}

.footer-content .telegram-channel {
    color: #4fd1c5;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-content .telegram-channel:hover {
    color: #b794f4;
    text-decoration: underline;
}

/* Get Video Section */
.get-video {
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.get-video .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.1) 0%, rgba(79, 209, 197, 0.1) 100%);
    pointer-events: none;
}

.get-video .pricing-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 2rem;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.get-video .price {
    order: 1;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-video .pricing-card h3 {
    order: 2;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.get-video .pricing-card span {
    order: 3;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    display: block;
}

.get-video .pricing-action {
    order: 4;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: none;
    padding-top: 2rem;
}

.get-video .signup-button {
    order: 5;
    width: 50%;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    display: block;
    margin: 0 auto;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.get-video .signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 148, 244, 0.2);
}

@media (max-width: 768px) {
    .get-video .pricing-card h3 {
        font-size: 2.5rem;
    }

    .get-video .pricing-card span {
        font-size: 1.1rem;
    }

    .get-video .pricing-action {
        flex-direction: column;
        gap: 1rem;
    }
}

.get-video .pricing-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2rem;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.get-video .pricing-action {
    border-top: none;
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
}

.get-video .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-video .signup-button {
    width: 45%;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: block;
    margin: 0 auto;
}

.get-video-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.get-video-text {
    text-align: left;
}

.get-video-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50vh;
}

.get-video-portrait {
    width: auto;
    height: 50vh;
    max-height: 50vh;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 33%, 
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 33%, 
        rgba(0, 0, 0, 0) 100%
    );
}

.get-video .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.get-video h3 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-video span {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0;
    line-height: 1.8;
    display: block;
}

.get-video .pricing-action {
    margin-top: 2.5rem;
}

.get-video .signup-button {
    width: 45%;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: block;
    margin: 0;
    background: linear-gradient(90deg, #b794f4, #4fd1c5);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

@media (max-width: 768px) {
    .get-video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .get-video-image-wrapper {
        height: 40vh;
        order: -1;
    }

    .get-video-portrait {
        height: 40vh;
    }

    .get-video h3 {
        font-size: 2.5rem;
    }

    .get-video span {
        font-size: 1.1rem;
    }

    .get-video .signup-button {
        width: 100%;
    }
}

.get-video h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .get-video h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .get-video span {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Payment Form Styles */
.payform-tbank {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
}

.payform-tbank-row {
    margin: 2px;
    border-radius: 4px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #DFE3F3;
    padding: 15px;
    outline: none;
    background-color: #DFE3F3;
    font-size: 15px;
}

.payform-tbank-row:focus {
    background-color: #FFFFFF;
    border: 1px solid #616871;
    border-radius: 4px;
}

.payform-tbank-btn {
    background-color: #FBC520;
    border: 1px solid #FBC520;
    color: #3C2C0B;
    cursor: pointer;
    margin-top: 15px;
}

.payform-tbank-btn:hover {
    background-color: #FAB619;
    border: 1px solid #FAB619;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

#paymentModal .modal-content {
    max-width: 500px;
    padding: 30px;
}

#paymentModal .modal-header {
    margin-bottom: 20px;
}

#paymentModal .modal-title {
    font-size: 24px;
    color: #333;
    margin: 0;
}

#paymentModal .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
}

/* Payment Modal Styles */
#paymentModal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    color: white;
    overflow: hidden;
    max-width: 480px;
    margin: 20px auto;
}

#paymentModal .modal-header {
    padding: 25px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

#paymentModal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #b794f4;
    margin: 0;
    text-align: center;
}

#paymentModal .modal-body {
    padding: 0;
}

#paymentModal .selected-plan {
    background: linear-gradient(135deg, rgba(251, 197, 32, 0.1), rgba(250, 182, 25, 0.05));
    padding: 30px 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#paymentModal .selected-plan p {
    margin: 10px 0;
    font-size: 20px;
    color: white;
}

#paymentModal .selected-plan span {
    display: block;
    color: #FBC520;
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

#paymentModal form {
    padding: 35px;
}

#paymentModal .input-group {
    position: relative;
    margin-bottom: 25px;
}

#paymentModal .input-group .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FBC520;
    font-size: 18px;
    z-index: 1;
}

#paymentModal .input-group input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

#paymentModal .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#paymentModal .input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #FBC520;
    box-shadow: 0 0 0 4px rgba(251, 197, 32, 0.15);
}

#paymentModal .submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FBC520, #FAB619);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#paymentModal .submit-button:hover {
    background: linear-gradient(135deg, #FAB619, #FBC520);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 197, 32, 0.25);
}

#paymentModal .submit-button:active {
    transform: translateY(1px);
}

#paymentModal .close-modal {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#paymentModal .close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-50%) rotate(90deg);
}

#paymentModal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    color: white;
    overflow: hidden;
    max-width: 480px;
    margin: 20px auto;
}

#paymentModal .modal-header {
    padding: 25px 35px;
    border-bottom: 1px solid rgba(183, 148, 244, 0.1);
    position: relative;
}

#paymentModal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #b794f4;
    margin: 0;
    text-align: center;
}

#paymentModal .selected-plan {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95), rgba(37, 37, 37, 0.95));
    padding: 30px 35px;
    text-align: center;
    border-bottom: 1px solid rgba(183, 148, 244, 0.1);
}

#paymentModal .selected-plan span {
    color: #4fd1c5;
}

#paymentModal .input-group .input-icon {
    color: #b794f4;
}

#paymentModal .input-group input {
    border-color: rgba(183, 148, 244, 0.2);
}

#paymentModal .input-group input:focus {
    border-color: #b794f4;
    box-shadow: 0 0 0 4px rgba(183, 148, 244, 0.15);
}

#paymentModal .submit-button {
    background: linear-gradient(135deg, #b794f4, #4fd1c5);
}

#paymentModal .submit-button:hover {
    background: linear-gradient(135deg, #4fd1c5, #b794f4);
    box-shadow: 0 8px 20px rgba(183, 148, 244, 0.25);
}

#paymentModal .close-modal:hover {
    color: #4fd1c5;
}

#paymentModal form {
    padding: 0 30px 30px;
}

#paymentModal .selected-plan {
    background: rgba(42, 42, 42, 0.95);
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(183, 148, 244, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}