:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #667eea;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.hero-section {
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-top: 10%;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.cta-button:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.stats-section {
    background: var(--primary-gradient);
    padding: 4rem 0;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .cta-button {
    background: white;
    color: var(--accent-color);
}

.pricing-card.featured .cta-button:hover {
    background: rgba(255,255,255,0.9);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.demo-preview {
    max-width: 500px;
    margin: 0 auto;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Simple Mobile navbar background fix */
.navbar-collapse.show,
.navbar-collapse.collapsing {
    background: white !important;
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-collapse.show .nav-link,
.navbar-collapse.collapsing .nav-link {
    color: var(--dark-text) !important;
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.navbar-collapse.show .nav-link:hover,
.navbar-collapse.collapsing .nav-link:hover {
    background: #f8f9fa;
    color: var(--accent-color) !important;
}

.navbar-collapse.show .cta-button,
.navbar-collapse.collapsing .cta-button {
    background: var(--primary-gradient) !important;
    color: white !important;
    border: none;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        margin-top: 10%;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

/* Additional animations */
.spin {
    animation: spin 1s linear infinite;
}

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

/* Smooth transitions for navbar */
.navbar {
    transition: all 0.3s ease;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection color */
::selection {
    background-color: var(--accent-color);
    color: white;
}

/* Focus states */
.btn:focus,
.cta-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Improved accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== CHATGPT-5 FEATURE STYLES ===== */

/* Main GPT-5 Badge */
.gpt5-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    animation: gpt5-float 3s ease-in-out infinite;
}

.gpt5-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: gpt5-shine 2s linear infinite;
}

.gpt5-icon {
    font-size: 2.5rem;
    color: #fff;
    animation: gpt5-pulse 2s ease-in-out infinite;
}

.gpt5-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.gpt5-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gpt5-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

.gpt5-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: gpt5-ripple 2s infinite;
}

/* Feature Card GPT-5 Enhancement */
.gpt5-feature {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

.gpt5-feature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: inherit;
    z-index: -1;
}

.gpt5-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #fff;
    animation: gpt5-gradient-shift 3s ease-in-out infinite alternate;
}

.gpt5-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: gpt5-glow 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes gpt5-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gpt5-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

@keyframes gpt5-ripple {
    0% {
        width: 4px;
        height: 4px;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@keyframes gpt5-gradient-shift {
    0% { 
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    }
    100% { 
        background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%); 
    }
}

@keyframes gpt5-glow {
    0% { 
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
        transform: scale(1.02);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gpt5-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
    
    .gpt5-icon {
        font-size: 2rem;
    }
    
    .gpt5-title {
        font-size: 1.25rem;
    }
    
    .gpt5-subtitle {
        font-size: 0.85rem;
    }
}

/* AI Interview Link Styling */
.ai-magic-container {
    position: relative;
    display: inline-block;
}

.ai-magic-container .bi-person-video3 {
    color: #fff;
}

.ai-magic {
    position: absolute;
    top: -8px;
    right: -8px;
    color: #ffd700;
    font-size: 0.7rem;
    animation: magic-sparkle 2s ease-in-out infinite;
    transform-origin: center;
}

.ai-interview-link:hover .ai-magic-container .bi-person-video3 {
    color: #00d4aa;
    transition: color 0.3s ease;
}

.ai-interview-link:hover .ai-magic {
    animation: magic-burst 0.6s ease-out;
    color: #00ff88;
}

@keyframes magic-sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: scale(1.3) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.2) rotate(270deg);
        opacity: 1;
    }
}

@keyframes magic-burst {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.2) rotate(360deg);
        opacity: 1;
    }
}

/* Crystal Animations */
.crystal {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #00d4ff, #a855f7, #ffd700);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.crystal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #a855f7, #ffd700);
    border-radius: 50%;
    filter: blur(2px);
    z-index: -1;
}

.crystal-1 {
    top: -12px;
    left: -8px;
    animation: crystal-orbit-1 3s ease-in-out infinite;
}

.crystal-2 {
    top: -8px;
    right: -12px;
    animation: crystal-orbit-2 2.5s ease-in-out infinite 0.5s;
}

.crystal-3 {
    bottom: -10px;
    left: 50%;
    animation: crystal-orbit-3 2.8s ease-in-out infinite 1s;
}

@keyframes crystal-orbit-1 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(0);
        opacity: 0;
    }
    25% { 
        transform: translateX(12px) translateY(-5px) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translateX(18px) translateY(8px) scale(1.3);
        opacity: 1;
    }
    75% { 
        transform: translateX(8px) translateY(12px) scale(0.8);
        opacity: 0.7;
    }
}

@keyframes crystal-orbit-2 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(0);
        opacity: 0;
    }
    25% { 
        transform: translateX(-10px) translateY(6px) scale(0.9);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-16px) translateY(-4px) scale(1.2);
        opacity: 1;
    }
    75% { 
        transform: translateX(-6px) translateY(-12px) scale(0.7);
        opacity: 0.6;
    }
}

@keyframes crystal-orbit-3 {
    0%, 100% { 
        transform: translateX(-50%) translateY(0) scale(0);
        opacity: 0;
    }
    25% { 
        transform: translateX(-80%) translateY(-8px) scale(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-20%) translateY(-14px) scale(1.1);
        opacity: 1;
    }
    75% { 
        transform: translateX(-70%) translateY(-6px) scale(0.9);
        opacity: 0.8;
    }
}

/* Hover enhancement for crystals */
.ai-interview-link:hover .crystal-1 {
    animation: crystal-burst-1 1s ease-out;
}

.ai-interview-link:hover .crystal-2 {
    animation: crystal-burst-2 1s ease-out 0.1s;
}

.ai-interview-link:hover .crystal-3 {
    animation: crystal-burst-3 1s ease-out 0.2s;
}

@keyframes crystal-burst-1 {
    0% { transform: translateX(0) translateY(0) scale(0); opacity: 0; }
    50% { transform: translateX(25px) translateY(-12px) scale(1.8); opacity: 1; }
    100% { transform: translateX(35px) translateY(-18px) scale(0); opacity: 0; }
}

@keyframes crystal-burst-2 {
    0% { transform: translateX(0) translateY(0) scale(0); opacity: 0; }
    50% { transform: translateX(-20px) translateY(10px) scale(1.6); opacity: 1; }
    100% { transform: translateX(-30px) translateY(16px) scale(0); opacity: 0; }
}

@keyframes crystal-burst-3 {
    0% { transform: translateX(-50%) translateY(0) scale(0); opacity: 0; }
    50% { transform: translateX(-50%) translateY(-25px) scale(1.7); opacity: 1; }
    100% { transform: translateX(-50%) translateY(-35px) scale(0); opacity: 0; }
}

/* Preparation Type Card Styles */
.prep-type-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.prep-type-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.prep-type-card.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.prep-type-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.prep-type-card:hover .prep-type-icon,
.prep-type-card.active .prep-type-icon {
    color: #007bff;
}

.prep-type-content {
    flex-grow: 1;
}

.prep-type-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.3;
}

.prep-type-description {
    color: #6c757d;
    line-height: 1.4;
    display: block;
}

.prep-type-check {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    animation: checkmark-appear 0.3s ease;
}

@keyframes checkmark-appear {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .prep-type-card {
        padding: 16px;
        min-height: 100px;
    }
    
    .prep-type-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .prep-type-title {
        font-size: 0.95rem;
    }
    
    .prep-type-description {
        font-size: 0.85rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .prep-type-card:hover {
        transform: none;
    }
    
    .prep-type-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Interview Preparation Feature Highlight */
.interview-prep-highlight {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8e1 50%, #e3f2fd 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.interview-prep-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.interview-prep-icon {
    position: relative;
    color: #007bff !important;
    transform: scale(1.2);
}

.prep-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sparkle-1 {
    position: absolute;
    top: -15px;
    left: -10px;
    color: #ffd700;
    font-size: 0.8rem;
    animation: sparkle-float-1 2.5s ease-in-out infinite;
}

.sparkle-2 {
    position: absolute;
    bottom: -10px;
    right: -8px;
    color: #00d4aa;
    font-size: 0.7rem;
    animation: sparkle-float-2 2.8s ease-in-out infinite 0.5s;
}

.sparkle-3 {
    position: absolute;
    top: -8px;
    right: -12px;
    color: #ff6b6b;
    font-size: 0.6rem;
    animation: sparkle-float-3 2.2s ease-in-out infinite 1s;
}

@keyframes sparkle-float-1 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
        scale: 1;
    }
    50% { 
        transform: translateY(-8px) rotate(180deg);
        opacity: 1;
        scale: 1.2;
    }
}

@keyframes sparkle-float-2 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
        scale: 1;
    }
    50% { 
        transform: translateY(-6px) rotate(-90deg);
        opacity: 1;
        scale: 1.1;
    }
}

@keyframes sparkle-float-3 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.9;
        scale: 1;
    }
    50% { 
        transform: translateY(-5px) rotate(270deg);
        opacity: 1;
        scale: 1.3;
    }
}

.interview-prep-badge {
    background: linear-gradient(45deg, #00d4aa, #007bff);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
    margin-top: 8px;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

.interview-prep-badge i {
    margin-right: 4px;
    animation: robot-wiggle 1.5s ease-in-out infinite;
}

@keyframes badge-glow {
    0% { box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3); }
    100% { box-shadow: 0 4px 16px rgba(0, 212, 170, 0.6); }
}

@keyframes robot-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.interview-prep-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.interview-prep-highlight .btn-primary {
    background: linear-gradient(45deg, #007bff, #00d4aa);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.interview-prep-highlight .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #00a085);
    transform: scale(1.05);
}

/* Mobile optimizations for highlight */
@media (max-width: 768px) {
    .prep-sparkles {
        display: none;
    }
    
    .interview-prep-highlight::before {
        animation: none;
    }
}