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

:root {
    --primary-color: #6B7FD7;
    --secondary-color: #9B8FD7;
    --text-dark: #2D3748;
    --text-light: #718096;
    --text-gray: #A0AEC0;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-card: #FFFFFF;
    --star-color: #B794F6;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 1000;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    border-radius: 0 0 10px 10px;
    
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.login-btn {
    padding: 8px 20px;
    border: 1px solid #718096;
    border-radius: 5px;
    transition: var(--transition);
}

.login-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-wrapper {
    position: relative;
    margin-bottom: 40px;
}

/* L-shaped decorative elements */
.hero-text-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-left: 2px solid #E2E8F0;
    border-top: 2px solid #E2E8F0;
    background: radial-gradient(circle at -3px -3px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;
}

.hero-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-right: 2px solid #E2E8F0;
    border-bottom: 2px solid #E2E8F0;
    background: radial-gradient(circle at 63px 63px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;

}



.hero-title {
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 15px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.hero-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

button,
button::after {
    padding: 16px 20px;
    font-size: 18px;
    background: white;
    border: 1px solid #6B7FD7;
    color: #718096;
    letter-spacing: 3px;
    line-height: 1;
    box-shadow: 6px 0px 0px #9B8FD7;
    outline: transparent;
    position: relative;
    cursor: pointer;
}

button::after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #B794F6 3%, #B794F6 5%, #a270ff 5%);
    text-shadow: -3px -3px 0px #B794F6, 3px 3px 0px #9B8FD7;
    clip-path: var(--slice-0);
    cursor: pointer;
}

button:hover::after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
    cursor: pointer;
}

/* Button link styling - make anchor tags look like buttons */
.btn-link {
    display: inline-block;
    padding: 16px 20px;
    font-size: 18px;
    background: white;
    border: 1px solid #6B7FD7;
    color: #718096;
    letter-spacing: 3px;
    line-height: 1;
    box-shadow: 6px 0px 0px #9B8FD7;
    outline: transparent;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-link::after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #B794F6 3%, #B794F6 5%, #a270ff 5%);
    text-shadow: -3px -3px 0px #B794F6, 3px 3px 0px #9B8FD7;
    clip-path: var(--slice-0);
    cursor: pointer;
}

.btn-link:hover::after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
    cursor: pointer;
}

@keyframes glitch {
    0% {
        clip-path: var(--slice-1);
        transform: translate(-20px, -10px);
    }

    10% {
        clip-path: var(--slice-3);
        transform: translate(10px, 10px);
    }

    20% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 10px);
    }

    30% {
        clip-path: var(--slice-3);
        transform: translate(0px, 5px);
    }

    40% {
        clip-path: var(--slice-2);
        transform: translate(-5px, 0px);
    }

    50% {
        clip-path: var(--slice-3);
        transform: translate(5px, 0px);
    }

    60% {
        clip-path: var(--slice-4);
        transform: translate(5px, 10px);
    }

    70% {
        clip-path: var(--slice-2);
        transform: translate(-10px, 10px);
    }

    80% {
        clip-path: var(--slice-5);
        transform: translate(20px, -10px);
    }

    90% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 0px);
    }

    100% {
        clip-path: var(--slice-1);
        transform: translate(0);
    }
}


/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    max-width: 500px;
    border: 0.5px solid rgba(113, 128, 150, 0.3);

}

.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('img/youzzful-testimonial.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 11px;
    color: var(--text-gray);
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.star {
    color: var(--star-color);
    font-size: 18px;
}

/* Hero Right - VR Person Image */
.hero-right {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-person {
    width: 100%;
    height: 100%;
    background-image: url('img/youzzful-hero.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    /* Smooth gradient fade to white on edges */
    -webkit-mask-image: 
        radial-gradient(ellipse 100% 100% at 50% 50%, 
            black 0%, 
            black 5%, 
            rgba(0, 0, 0, 0.9) 15%, 
            rgba(0, 0, 0, 0.7) 30%, 
            rgba(0, 0, 0, 0.4) 50%, 
            rgba(0, 0, 0, 0.1) 70%, 
            white 100%);
    mask-image: 
        radial-gradient(ellipse 100% 100% at 50% 50%, 
            black 0%, 
            black 5%, 
            rgba(0, 0, 0, 0.9) 15%, 
            rgba(0, 0, 0, 0.7) 30%, 
            rgba(0, 0, 0, 0.4) 50%, 
            rgba(0, 0, 0, 0.1) 70%, 
            white 100%);
}

/* Light Purple Glow Behind Image */
.vr-person::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(183, 148, 246, 0.3) 0%, 
        rgba(155, 143, 215, 0.25) 20%, 
        rgba(107, 127, 215, 0.15) 40%, 
        rgba(155, 143, 215, 0.08) 60%, 
        transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse-aura 5s ease-in-out infinite;
}

/* Additional subtle purple layer */
.vr-person::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, 
        rgba(183, 148, 246, 0.25) 0%, 
        rgba(155, 143, 215, 0.15) 30%, 
        rgba(107, 127, 215, 0.1) 50%, 
        transparent 75%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    animation: pulse-aura 5s ease-in-out infinite reverse;
}

@keyframes pulse-aura {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: #FFFFFF;
}

.plans-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plans-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.plans-text-wrapper {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

/* L-shaped decorative elements for plans */
.plans-text-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-left: 2px solid #E2E8F0;
    border-top: 2px solid #E2E8F0;
    background: radial-gradient(circle at -3px -3px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;
}

.plans-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-right: 2px solid #E2E8F0;
    border-bottom: 2px solid #E2E8F0;
    background: radial-gradient(circle at 63px 63px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;
}

.plans-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.plans-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 127, 215, 0.3);
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.plan-price .price-cents {
    font-size: 0.6em;
    vertical-align: super;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}





/* 28 Days Challenge Section */
.challenge {
    padding: 100px 0;
    background: #FFFFFF;
}

.challenge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-text-wrapper {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.challenge-text-wrapper.animate {
    opacity: 1;
    transform: translateY(0);
}

/* L-shaped decorative elements for challenge */
.challenge-text-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-left: 2px solid #E2E8F0;
    border-top: 2px solid #E2E8F0;
    background: radial-gradient(circle at -3px -3px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;
}

.challenge-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-right: 2px solid #E2E8F0;
    border-bottom: 2px solid #E2E8F0;
    background: radial-gradient(circle at 63px 63px, #E2E8F0 3px, transparent 3px);
    border-radius: 8px;
}

.challenge-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.challenge-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1) {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.5s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.7s;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(107, 127, 215, 0.3);
    transition: var(--transition);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(107, 127, 215, 0.4);
}

.timeline-item.final .timeline-number {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    width: 45%;
    position: relative;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.timeline-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.challenge-cta {
    margin-top: 60px;
    text-align: center;
}

/* Touch of AI Section */
.touch-ai {
    padding: 100px 0;
    background: #FFFFFF;
}

.touch-ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.touch-ai-left {
    position: relative;
}

.robot-hand {
    width: 100%;
    height: 500px;
    background-image: url('img/youzzful-botai.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.robot-hand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 143, 215, 0.2) 0%, rgba(107, 127, 215, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.robot-hand::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(183, 148, 246, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.section-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}


/* Experiences Section */
.experiences {
    padding: 100px 0;
    background: #FFFFFF;
}

.experiences-wrapper {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.experiences-content {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-small {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
}

.video-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-image: url('img/Youzzful-thumbnail.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1;
    box-shadow: 6px 0px 0px #9B8FD7;
    outline: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    color: #718096;
}

.play-button::after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: "PLAY";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #B794F6 3%, #B794F6 5%, #a270ff 5%);
    text-shadow: -3px -3px 0px #B794F6, 3px 3px 0px #9B8FD7;
    clip-path: var(--slice-0);
    cursor: pointer;
}

.play-button:hover::after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
    cursor: pointer;
}

.play-icon {
    font-size: 20px;
    color: #718096;
    z-index: 1;
    position: relative;
}

.video-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}


/* Footer */
/* Footer Styles */
.footer {
    background: #FFFFFF;
    padding: 80px 0 30px;
    border-top: 0.5px solid rgba(113, 128, 150, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 80px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 150px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 0.5px solid rgba(113, 128, 150, 0.3);
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(107, 127, 215, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.5px solid rgba(107, 127, 215, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 127, 215, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 24px;
    }
    
    .footer-heading {
        font-size: 12px;
    }
    
    .footer-list a {
        font-size: 14px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 0.5px solid rgba(113, 128, 150, 0.2);
    position: relative;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px 40px 40px;
}

.modal-description {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.form-group input {
    padding: 15px 20px;
    border: 1px solid rgba(113, 128, 150, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.1);
    background: white;
}

.form-group input::placeholder {
    color: rgba(113, 128, 150, 0.6);
}

.modal-submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    background: white;
    border: 1px solid #6B7FD7;
    color: #718096;
    letter-spacing: 2px;
    line-height: 1;
    box-shadow: 6px 0px 0px #9B8FD7;
    outline: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.modal-submit-btn::after {
    --slice-0: inset(50% 60% 50% 0);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, var(--star-color) 3%, var(--star-color) 5%, var(--primary-color) 5%);
    text-shadow: -3px -3px 0px var(--star-color), 3px 3px 0px var(--secondary-color);
    clip-path: var(--slice-0);
    cursor: pointer;
}

.modal-submit-btn:hover::after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
    cursor: pointer;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        transform: translate(-50%, -50%);
    }
    
    .modal-header,
    .modal-body {
        padding: 25px 30px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-close {
        top: 20px;
        right: 25px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        transform: translate(-50%, -50%);
    }
    
    .modal-header,
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .modal-description {
        font-size: 14px;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .modal-submit-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .touch-ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        height: 400px;
    }

    .hero-title,
    .plans-title,
    .challenge-title {
        font-size: 56px;
        letter-spacing: 10px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Challenge Timeline Mobile */
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 8px;
    }

    .hero-bracket {
        font-size: 100px;
        left: -20px;
    }

    .container {
        padding: 0 20px;
    }

    .experiences-wrapper {
        padding: 40px 30px;
    }

    .video-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .plans-title,
    .challenge-title {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 22px;
    }

    .play-btn {
        padding: 15px 35px;
        font-size: 12px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .plan-price {
        font-size: 28px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

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

.hero-left > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }

