:root {
    --primary-color: #3D91D9;
    --primary-dark: #3D91D9;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --shadow-primary: rgba(122, 41, 208, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

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

.logo {
    width: 100px;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: shimmer 2s infinite;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-card);
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color),
        rgba(61, 145, 217, 0.8));
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05) 50%,
        transparent);
    border-radius: 15px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary {
    background: linear-gradient(135deg,
        rgba(61, 145, 217, 0.2) 0%,
        rgba(61, 145, 217, 0.3) 100%
    );
    color: #fff;
    border: 1px solid rgba(61, 145, 217, 0.3);
    box-shadow: 0 4px 20px rgba(61, 145, 217, 0.25),
               0 2px 8px rgba(61, 145, 217, 0.2),
               inset 0 0 0 1px rgba(61, 145, 217, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Glass background layers */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        165deg,
        rgba(61, 145, 217, 0.2),
        rgba(61, 145, 217, 0.1)
    );
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                 linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: inherit;
}

/* Inner glass highlight */
.btn-primary > span {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: inherit;
    opacity: 0.7;
}

/* Interactive light effect */
.btn-primary > i {
    position: absolute;
    inset: -1px;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(61, 145, 217, 0.25) 0%,
        rgba(61, 145, 217, 0.15) 20%,
        transparent 50%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: soft-light;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(165deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    opacity: 0.8;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(61, 145, 217, 0.3) 0%,
        rgba(61, 145, 217, 0.4) 100%
    );
    box-shadow: 0 8px 25px rgba(61, 145, 217, 0.35),
               0 4px 10px rgba(61, 145, 217, 0.25),
               inset 0 0 0 1px rgba(61, 145, 217, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(61, 145, 217, 0.4);
    color: #fff;
}

.btn-primary:hover::before {
    background: linear-gradient(
        165deg,
        rgba(61, 145, 217, 0.25),
        rgba(61, 145, 217, 0.15)
    );
}

.btn-primary:hover::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.08)
    );
}

.btn-primary:hover > span {
    opacity: 0.9;
}

.btn-primary:hover > i {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(1px);
    background: linear-gradient(135deg,
        rgba(61, 145, 217, 0.35) 0%,
        rgba(61, 145, 217, 0.45) 100%
    );
    box-shadow: 0 4px 15px rgba(61, 145, 217, 0.3),
               0 2px 5px rgba(61, 145, 217, 0.2),
               inset 0 0 0 1px rgba(61, 145, 217, 0.25);
    border-color: rgba(61, 145, 217, 0.35);
}


.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 10px 20px -8px rgba(61, 145, 217, 0.4),
               0 5px 10px -3px rgba(0, 0, 0, 0.2),
               0 0 0 1px rgba(255, 255, 255, 0.3),
               inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.15rem;
    border-radius: 35px;
    letter-spacing: 0.8px;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-large::after {
    border-radius: 19px;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Glow effect */
.glow {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow:hover {
    box-shadow: 0 20px 45px -10px rgba(61, 145, 217, 0.5),
               0 5px 12px rgba(61, 145, 217, 0.4),
               0 0 0 2px rgba(61, 145, 217, 0.3),
               inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.01);
    background: linear-gradient(135deg,
        rgba(61, 145, 217, 0.35) 0%,
        rgba(61, 145, 217, 0.45) 100%
    );
}

.glow:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 10px 25px -5px rgba(61, 145, 217, 0.4),
               0 3px 8px rgba(61, 145, 217, 0.3),
               0 0 0 2px rgba(61, 145, 217, 0.25),
               inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, var(--bg-card) 0%, var(--bg-primary) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.income-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(61, 145, 217, 0.4),
               0 3px 8px rgba(61, 145, 217, 0.3);
    border: 1px solid rgba(61, 145, 217, 0.3);
}

.income-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.income-highlight h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
               0 8px 25px rgba(61, 145, 217, 0.2);
    background: var(--bg-card);
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.video-container wistia-player {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.floating {
    animation: floating 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.5deg); }
    75% { transform: translateY(8px) rotate(-0.5deg); }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

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

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    transition: height 0.3s ease;
}

.benefit-item:hover::before {
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.benefit-icon i {
    color: #000;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.benefit-item:hover .benefit-text h3 {
    color: var(--primary-color);
}

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

/* Mentor Section */
.mentor-section {
    text-align: center;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mentor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--shadow-primary);
    animation: rotate 10s linear infinite;
}

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

.mentor-image i {
    font-size: 60px;
    color: var(--primary-color);
}



/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 0 0 60px 80px;
    z-index: 2;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--primary-color),
        rgba(61, 145, 217, 0.2)
    );
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-primary);
    box-shadow: 0 8px 20px var(--shadow-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.step-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px 40px;
    margin-left: 20px;
    flex: 1;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
        var(--primary-color),
        rgba(61, 145, 217, 0.3)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2),
               0 8px 20px var(--shadow-primary);
}

.process-step:hover .step-content::before {
    opacity: 1;
}

            .step-number::before {
        content: '';
        position: absolute;
        inset: -6px;
        background: var(--shadow-primary);
        border-radius: 50%;
        z-index: -1;
        animation: pulse-step 3s infinite;
    }

    @keyframes pulse-step {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.3); opacity: 0.2; }
    }

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .process-steps {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-step {
        width: 90%;
        max-width: 340px;
        padding: 0;
        perspective: 1000px;
    }

    .process-step::before {
        display: none;
    }

    .step-content {
        margin: 0;
        padding: 85px 25px 25px;
        border-radius: 25px;
        background: linear-gradient(165deg,
            var(--bg-card) 0%,
            rgba(26, 26, 26, 0.95) 100%
        );
        border: 1px solid rgba(61, 145, 217, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                   0 5px 15px rgba(0, 0, 0, 0.1),
                   inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform-origin: top center;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .step-content::before {
        display: none;
    }

    .step-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: 0;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        z-index: 2;
        background: linear-gradient(135deg, 
            var(--primary-color),
            rgba(61, 145, 217, 0.9)
        );
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .step-number::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 50%;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            transparent 50%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .process-step:hover .step-number::after {
        opacity: 1;
    }

    .process-step h3 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .process-step p {
        font-size: 1rem;
        text-align: center;
        padding: 0 5px;
    }

    .process-step:hover .step-content {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                   0 15px 25px var(--shadow-primary),
                   inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .process-step.active .step-content {
        transform: translateY(2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                   0 5px 15px var(--shadow-primary),
                   inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    /* Add decorative elements */
    .step-content::after {
        content: '';
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            rgba(61, 145, 217, 0.2) 50%,
            transparent
        );
    }

    /* Alternating side decorations */
    .process-step:nth-child(odd)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 60px;
        background: linear-gradient(90deg,
            transparent,
            rgba(61, 145, 217, 0.1)
        );
        border-radius: 0 30px 30px 0;
        z-index: -1;
    }

    .process-step:nth-child(even)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -15px;
        width: 30px;
        height: 60px;
        background: linear-gradient(270deg,
            transparent,
            rgba(61, 145, 217, 0.1)
        );
        border-radius: 30px 0 0 30px;
        z-index: -1;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--primary-color);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image i {
    color: var(--primary-color);
    font-size: 20px;
}

.author-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-details p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    padding: 24px 60px 24px 24px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-item:hover h3::after {
    width: 100%;
}

.faq-item p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active p {
    max-height: 1000px;
    opacity: 1;
    padding-top: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-primary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23222" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    background: rgba(26, 26, 26, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(26, 26, 26, 0.8);
}

.trust-item i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}

@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-column {
        background: linear-gradient(165deg,
            rgba(26, 26, 26, 0.5) 0%,
            rgba(26, 26, 26, 0.3) 100%
        );
        border: 1px solid rgba(61, 145, 217, 0.1);
        border-radius: 24px;
        padding: 35px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }

    .footer-column::before {
        content: '';
        position: absolute;
        inset: 1px;
        background: linear-gradient(165deg,
            rgba(255, 255, 255, 0.03),
            transparent
        );
        border-radius: inherit;
        z-index: 0;
    }

    .footer-column::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
            circle at center,
            rgba(61, 145, 217, 0.1),
            transparent 70%
        );
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
        z-index: -1;
    }

    .footer-column:hover {
        transform: translateY(-5px);
        border-color: rgba(61, 145, 217, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
                   0 15px 25px rgba(61, 145, 217, 0.1);
    }

    .footer-column:hover::after {
        opacity: 1;
    }

    .footer-column > * {
        position: relative;
        z-index: 1;
    }

    .footer-column h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 25px;
        background: linear-gradient(135deg, var(--primary-color), #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
    }

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

    .footer-links li {
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .footer-links li:hover {
        transform: translateX(5px);
    }

    .footer-links a,
    .footer-links li {
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.05rem;
    }

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

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg,
            rgba(61, 145, 217, 0.1),
            rgba(61, 145, 217, 0.05)
        );
        border: 1px solid rgba(61, 145, 217, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }

    .social-links a::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        opacity: 0;
        transition: opacity 0.3s;
    }

    .social-links a:hover {
        transform: translateY(-5px) scale(1.05);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--bg-primary);
        box-shadow: 0 10px 20px rgba(61, 145, 217, 0.3);
    }

    .social-links a:hover::before {
        opacity: 1;
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(61, 145, 217, 0.1);
        text-align: center;
        color: var(--text-muted);
        font-size: 0.95rem;
        position: relative;
    }

    .footer-bottom::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 25%;
        right: 25%;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent
        );
        opacity: 0.2;
    }

    .footer-bottom a {
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding: 0 5px;
    }

    .footer-bottom a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--primary-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

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

    .footer-bottom a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer::before {
        display: none;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .footer-column {
        text-align: center;
        padding: 25px;
        background: rgba(26, 26, 26, 0.5);
        border-radius: 16px;
        border: 1px solid rgba(61, 145, 217, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .footer-column:active {
        transform: scale(0.98);
    }

    .footer-column h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-primary);
        position: relative;
        display: inline-block;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

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

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links li:last-child {
        margin-bottom: 0;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1rem;
        padding: 5px 0;
    }

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

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--bg-card);
        border: 1px solid rgba(61, 145, 217, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--bg-primary);
        transform: translateY(-3px);
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 20px 15px 0;
        border-top: 1px solid rgba(61, 145, 217, 0.1);
        text-align: center;
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    .footer-bottom a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
        margin: 0 5px;
    }

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .process-steps::before {
        width: 70%;
        left: 15%;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-step {
        width: 45%;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .video-container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .benefits-grid {
        gap: 25px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .header {
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav {
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobile Navigation */
    .nav::after {
        content: '\f0c9';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .nav::after:hover {
        color: var(--primary-color);
    }
    
    /* Mobile Navigation Menu */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 280px;
        background: var(--bg-card);
        padding: 8px;
        z-index: 1000;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(61, 145, 217, 0.1);
        animation: menuAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .nav-links.mobile-active::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
            rgba(61, 145, 217, 0.1) 0%,
            rgba(61, 145, 217, 0.05) 50%,
            rgba(61, 145, 217, 0.1) 100%);
        mask: linear-gradient(black, black) content-box,
              linear-gradient(black, black);
        mask-composite: exclude;
        pointer-events: none;
        border-radius: 20px;
        padding: 1px;
    }

    .nav-links.mobile-active::after {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
            rgba(61, 145, 217, 0.12),
            transparent 25%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        mix-blend-mode: overlay;
    }

    .nav-links.mobile-active:hover::after {
        opacity: 1;
    }
    
    @keyframes menuAppear {
        0% {
            opacity: 0;
            transform: translate(-50%, -15px) scale(0.97);
        }
        50% {
            transform: translate(-50%, 2px) scale(1.02);
        }
        100% {
            opacity: 1;
            transform: translate(-50%, 0) scale(1);
        }
    }
    
    .nav-links.mobile-active li {
        margin: 3px;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                    linear-gradient(135deg, rgba(61, 145, 217, 0.2), transparent) border-box;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-links.mobile-active li:hover {
        transform: translateY(-1px);
        background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                    linear-gradient(135deg, var(--primary-color), transparent) border-box;
        box-shadow: 0 5px 15px -5px rgba(61, 145, 217, 0.3);
    }
    
    .nav-links.mobile-active a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text-primary);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .nav-links.mobile-active a::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
            transparent,
            rgba(61, 145, 217, 0.08) 20%,
            rgba(61, 145, 217, 0.08) 80%,
            transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-links.mobile-active a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .nav-links.mobile-active a:hover {
        color: var(--primary-color);
    }

    .nav-links.mobile-active a:hover::before {
        opacity: 1;
    }

    .nav-links.mobile-active a:hover::after {
        transform: scaleX(0.7);
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 1;
        padding: 0 15px;
    }

    .video-container {
        order: 0;
        width: 90%;
        margin: 0 auto;
        max-height: 300px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .income-highlight {
        padding: 15px;
        margin: 20px auto 30px;
        max-width: 90%;
        border-radius: 12px;
        box-shadow: 0 5px 15px var(--shadow-primary);
    }
    
    .income-highlight h3 {
        font-size: 1.3rem;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        border-radius: 30px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .btn-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--shadow-primary);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        padding: 25px;
        max-width: 500px;
        margin: 0 auto 20px auto;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }
    
    .benefit-item:last-child {
        margin-bottom: 0;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transform: none;
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
    }

    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .trust-item {
        width: 45%;
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }
    
    .trust-item:hover {
        transform: translateY(-3px);
    }
    
    .process-step {
        width: 100%;
        max-width: 280px;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-steps {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
        background: linear-gradient(135deg, var(--primary-color), #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .testimonial-item {
        transform: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .highlight {
        display: inline;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .video-placeholder {
        height: 200px;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .benefit-item {
        padding: 25px;
        border-radius: 16px;
        margin-bottom: 30px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        box-shadow: 0 8px 20px var(--shadow-primary);
    }
    
    .benefit-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .trust-item {
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .cta-content {
        padding: 35px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .section-alt {
        background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
        padding: 20px;
        background: rgba(26, 26, 26, 0.5);
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--bg-card);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--primary-color);
        color: var(--bg-primary);
        transform: translateY(-3px);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-item {
        padding: 25px;
        border-radius: 16px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-image {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        box-shadow: 0 5px 15px var(--shadow-primary);
    }
}

@media (max-width: 370px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .income-highlight h3 {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        height: 180px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .section-title p {
        font-size: 0.9rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Booking Transition Animation */
.booking-transition {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-transition.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

.transition-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.transition-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0 10px;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.3s;
}

.transition-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.4s;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.circle {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    animation-delay: 0.4s;
}

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

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

@keyframes pulse {
    0% {
        transform: scale(0.3);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.3);
        opacity: 0.3;
    }
}


.mentor-dep {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 15px;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mentor-dep::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .mentor-dep {
        font-size: 1.1rem;
        margin: -3px 0 12px;
    }
}

      /* Sleek Comparison Section Styles */
      .comparison-container {
        position: relative;
        margin-top: 60px;
        padding-bottom: 30px;
    }
    
    .comparison-sides {
        display: flex;
        gap: 30px;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .comparison-side {
        flex: 1;
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
    }
    
    .comparison-content {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-feature {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .old-job {
        border-top: 1px solid rgba(231, 76, 60, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(231, 76, 60, 0.05);
    }
    
    .mk-job {
        border-top: 1px solid rgba(61, 145, 217, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(61, 145, 217, 0.05);
    }
    
    .comparison-side:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .old-job:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(231, 76, 60, 0.1);
    }
    
    .mk-job:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(61, 145, 217, 0.1);
    }
    
    .comparison-divider {
        width: 1px;
        background: linear-gradient(to bottom, 
            rgba(231, 76, 60, 0.3),
            rgba(61, 145, 217, 0.3),
            transparent);
        margin: 30px 0;
        position: relative;
    }
    
    .comparison-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    
    .comparison-divider::after {
        content: "vs";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--text-secondary);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        z-index: 2;
    }
    
    .comparison-header {
        padding: 25px 30px;
        position: relative;
        border-bottom: 1px solid var(--border-color);
        background: rgba(10, 10, 10, 0.3);
    }
    
    .old-job .comparison-header {
        border-left: 4px solid rgba(231, 76, 60, 0.7);
        background: linear-gradient(to right, rgba(231, 76, 60, 0.05), transparent);
    }
    
    .mk-job .comparison-header {
        border-left: 4px solid var(--primary-color);
        background: linear-gradient(to right, rgba(61, 145, 217, 0.05), transparent);
    }
    
    .comparison-header h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.5px;
    }
    
    .old-job .comparison-header h3 {
        color: rgba(231, 76, 60, 0.9);
    }
    
    .mk-job .comparison-header h3 {
        color: var(--primary-color);
    }
    
    .comparison-feature i {
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .old-job .comparison-feature i {
        color: rgba(231, 76, 60, 0.7);
        border-color: rgba(231, 76, 60, 0.2);
    }
    
    .mk-job .comparison-feature i {
        color: var(--primary-color);
        border-color: rgba(61, 145, 217, 0.2);
    }
    
    .comparison-side:hover .comparison-feature i {
        background: rgba(10, 10, 10, 0.3);
    }
    
    .comparison-feature h4 {
        font-size: 1.1rem;
        margin: 0 0 8px;
        font-weight: 600;
    }
    
    .old-job .comparison-feature h4 {
        color: rgba(231, 76, 60, 0.8);
    }
    
    .mk-job .comparison-feature h4 {
        color: var(--primary-color);
    }
    
    .comparison-feature p {
        color: var(--text-secondary);
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .comparison-cta {
        text-align: center;
        margin-top: 40px;
    }
    
    @media (max-width: 1024px) {
        .comparison-sides {
            gap: 20px;
        }
        
        .comparison-feature i {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .comparison-container {
            margin-top: 40px;
        }
        
        .comparison-sides {
            flex-direction: column;
            gap: 30px;
        }
        
        .comparison-divider {
            display: none;
        }
        
        .comparison-header {
            padding: 20px;
        }
        
        .comparison-header h3 {
            font-size: 1.3rem;
        }
        
        .comparison-content {
            padding: 20px 15px;
            gap: 15px;
        }
        
        .comparison-feature {
            gap: 15px;
            padding: 10px 0;
        }
        
        .comparison-feature h4 {
            font-size: 1rem;
        }
        
        .comparison-feature p {
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .comparison-feature i {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 480px) {
        .comparison-container {
            margin-top: 30px;
            padding-bottom: 15px;
        }
        
        .comparison-header {
            padding: 15px;
        }
        
        .comparison-header h3 {
            font-size: 1.2rem;
        }
        
        .comparison-content {
            padding: 15px 12px;
            gap: 12px;
        }
        
        .comparison-feature {
            padding: 8px 0;
            gap: 12px;
        }
        
        .comparison-feature i {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
        
        .comparison-feature h4 {
            font-size: 0.95rem;
            margin: 0 0 5px;
        }
        
        .comparison-feature p {
            font-size: 0.8rem;
            line-height: 1.3;
        }
    }