* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #6B4EFF 0%, #8B6FFF 50%, #A78BFA 100%);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-circle-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-circle-2 {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 24px;
}

h1 {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: #e0e7ff;
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-image {
    max-width: 384px;
    margin: 0 auto 32px;
}

.hero-placeholder {
    aspect-ratio: 1/1;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, #6B4EFF 0%, #A78BFA 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(107, 78, 255, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: white;
    color: #6B4EFF;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: #f0f9ff;
}

/* Sections */
.section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #3B1D8F;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3B1D8F;
}

.text-center {
    text-align: center;
}

.bg-purple-light {
    background: #F3F4F6;
}

.video-container {
    margin-bottom: 32px;
}

.video-placeholder {
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    border-radius: 16px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon {
    width: 80px;
    height: 80px;
    color: white;
    opacity: 0.8;
}

.video-text {
    position: absolute;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.video-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
}

/* Cards */
.card {
    background: #F3F4F6;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    background: #F3F4F6;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-weight: bold;
    font-size: 1.125rem;
    color: #3B1D8F;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: #4b5563;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.75;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

.student-works-section {
    margin-bottom: 48px;
}

.student-works-section h3 {
    text-align: center;
    margin-bottom: 32px;
}

.work-card {
    margin-bottom: 24px;
}

.work-image {
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.work-card:hover .work-image {
    transform: scale(1.05);
}

.work-title {
    font-weight: bold;
    color: #3B1D8F;
    margin-bottom: 4px;
}

.work-author {
    color: #4b5563;
    font-size: 0.875rem;
}

.placeholder {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-align: center;
    padding: 24px;
    min-height: 200px;
}

.placeholder.aspect-video {
    aspect-ratio: 16/9;
}

.lesson-section {
    background: linear-gradient(135deg, #F3F4F6 0%, white 100%);
}

.lesson-step {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #A78BFA;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6B4EFF 0%, #A78BFA 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3B1D8F;
    margin-bottom: 12px;
}

.step-description {
    color: #4b5563;
    line-height: 1.75;
}

.lesson-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.lesson-info-item {
    margin-bottom: 24px;
}

.lesson-info-item:last-child {
    margin-bottom: 0;
}

.icon-clock,
.icon-laptop {
    width: 32px;
    height: 32px;
    color: #6B4EFF;
    margin: 0 auto 8px;
}

.info-label {
    font-weight: bold;
    color: #3B1D8F;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6B4EFF;
}

.info-text {
    font-size: 1.125rem;
    color: #374151;
}

.skills-card {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.skills-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.skills-icon {
    width: 40px;
    height: 40px;
    color: #6B4EFF;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-check {
    width: 24px;
    height: 24px;
    color: #6B4EFF;
    flex-shrink: 0;
    margin-top: 4px;
}

.skill-text {
    color: #374151;
    line-height: 1.75;
}

.results-banner {
    background: linear-gradient(90deg, #6B4EFF 0%, #A78BFA 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-align: center;
}

.trophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.results-title {
    color: white;
    margin-bottom: 24px;
}

.results-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.results-list {
    font-size: 1.125rem;
    text-align: left;
    max-width: 512px;
    margin: 0 auto 24px;
    list-style: none;
    padding: 0;
}

.work-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    max-width: 384px;
}

.video-placeholder {
    width: 100%;
    height: auto;
    border-radius: 16px;
    aspect-ratio: 16/9;
}

.results-list li {
    margin-bottom: 8px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 24px;
    background: white;
    border: none;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    color: #3B1D8F;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9fafb;
}

.arrow {
    width: 24px;
    height: 24px;
    color: #6B4EFF;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: #374151;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 16px 24px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: 32px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.75;
}

.cta-checklist {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.checklist-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-button {
    font-size: 1.25rem;
    padding: 20px 40px;
}

/* Footer */
.footer {
    background: #3B1D8F;
    color: white;
    padding: 80px 24px;
}

.footer-title {
    color: white;
    text-align: center;
    margin-bottom: 32px;
}

.footer-section {
    margin-bottom: 32px;
}

.footer-subtitle {
    color: white;
    margin-bottom: 16px;
}

.footer-contacts,
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #A78BFA;
}

.footer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-schedule {
    padding-top: 16px;
    color: #d1d5db;
}

.schedule-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-text {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 16px;
}

.footer-info {
    color: #d1d5db;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-policy-link {
    color: #d1d5db;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-policy-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
    color: #d1d5db;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 448px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
}

.close-btn:hover {
    color: #4b5563;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3B1D8F;
    margin-bottom: 8px;
}

.modal-description {
    color: #4b5563;
    margin-bottom: 24px;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #6B4EFF;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #374151;
}

.policy-link {
    color: #6B4EFF;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.policy-link:hover {
    color: #8B6FFF;
}

.submit-text {
    display: inline;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success Modal */
.success-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: #16a34a;
}

/* Policy Modal */
.policy-modal .modal-content {
    max-width: 640px;
}

.policy-content {
    color: #374151;
    line-height: 1.75;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-footer {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Анімація для кнопок */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(107, 78, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(107, 78, 255, 0);
    }
}

.hero-section .btn-secondary {
    animation: pulse 2s infinite;
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(107, 78, 255, 0.25);
}

.testimonial-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: rotate(360deg) scale(1.1);
}

@keyframes starGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px #fbbf24);
    }
    50% {
        filter: drop-shadow(0 0 8px #fbbf24);
    }
}

.star {
    transition: transform 0.2s ease;
}

.testimonial-card:hover .star {
    animation: starGlow 1s ease-in-out infinite;
}

.star:hover {
    transform: scale(1.3) rotate(72deg);
}

.work-card {
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-card .work-image {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.work-card:hover .work-image {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(107, 78, 255, 0.3);
}

.work-card::after {
    content: '👁️ Переглянути';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(107, 78, 255, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-weight: bold;
    z-index: 10;
}

.work-card:hover::after {
    opacity: 1;
}

.lesson-step {
    transition: all 0.3s ease;
}

.lesson-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px -5px rgba(107, 78, 255, 0.2);
}

.step-number {
    transition: all 0.3s ease;
}

.lesson-step:hover .step-number {
    transform: scale(1.1);
    color: #6B4EFF;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.step-icon {
    transition: all 0.3s ease;
}

.lesson-step:hover .step-icon {
    animation: iconFloat 1s ease-in-out infinite;
    background: linear-gradient(135deg, #8B6FFF 0%, #6B4EFF 100%);
}

#promoTimer {
    font-weight: bold;
    transition: color 0.3s ease;
}

.skill-item {
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateX(10px);
    background: rgba(107, 78, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    margin-left: -8px;
}

.skill-check {
    transition: all 0.3s ease;
}

.skill-item:hover .skill-check {
    transform: scale(1.2) rotate(360deg);
    color: #16a34a;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6B4EFF;
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.15);
}

.faq-question {
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(107, 78, 255, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.faq-question:hover::before {
    width: 100%;
}

.modal {
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.active .modal-content {
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    animation: checkDraw 0.5s ease 0.3s forwards;
}

@keyframes checkDraw {
    0% {
        stroke-dashoffset: 100;
        stroke-dasharray: 100;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 100;
    }
}

.hero-circle-1,
.hero-circle-2 {
    animation: float 6s ease-in-out infinite;
}

.hero-circle-2 {
    animation-delay: 3s;
    animation-direction: reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}
.hero-image img {
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.video-placeholder {
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(107, 78, 255, 0.3);
}

.results-banner {
    position: relative;
    overflow: hidden;
}

.results-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.trophy-icon {
    animation: trophyBounce 2s ease-in-out infinite;
}

@keyframes trophyBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.checklist-item {
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(5px);
}

.check-icon {
    transition: all 0.3s ease;
}

.checklist-item:hover .check-icon {
    transform: scale(1.2) rotate(360deg);
}

.footer-link {
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A78BFA;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-icon {
    transition: all 0.3s ease;
}

.footer-link:hover .footer-icon {
    transform: scale(1.2) rotate(10deg);
}
.input-field {
    transition: all 0.3s ease;
}

.input-field:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(107, 78, 255, 0.1);
}

.close-btn {
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.2);
    color: #ef4444;
}

@media (prefers-reduced-motion: no-preference) {
    .section {
        transform-style: preserve-3d;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.skills-card {
    transition: all 0.3s ease;
}

.skills-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 78, 255, 0.15);
}

.skills-icon {
    transition: all 0.3s ease;
}

.skills-card:hover .skills-icon {
    transform: scale(1.1) rotate(5deg);
    color: #8B6FFF;
}

html {
    scroll-behavior: smooth;
}

.lesson-info-card {
    transition: all 0.3s ease;
}

.lesson-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 78, 255, 0.2);
}

.icon-clock,
.icon-laptop {
    transition: all 0.3s ease;
}

.lesson-info-item:hover .icon-clock,
.lesson-info-item:hover .icon-laptop {
    transform: scale(1.2);
    color: #8B6FFF;
}

@media (max-width: 768px) {
    .fade-in-up {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 14px 28px;
    }
}