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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(255, 161, 22, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFA116;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #FFA116, #FF8C00);
    color: black;
    box-shadow: 0 4px 15px rgba(255, 161, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 161, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #FFA116;
}

.btn-secondary:hover {
    background: #FFA116;
    color: black;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.demo-image {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Features Section - Enhanced Design */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255, 161, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(255, 161, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a, #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 161, 22, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFA116, #FFD700, #FFA116);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 161, 22, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(255, 161, 22, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 161, 22, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    padding: 1rem;
    border-radius: 20px;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 161, 22, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 161, 22, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #2d2d2d;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #555;
}

/* Add special styling for featured feature cards */
.feature-card:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 161, 22, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(2) {
    position: relative;
    animation: pulse-feature 3s infinite;
}

@keyframes pulse-feature {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(255, 161, 22, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 10px rgba(255, 161, 22, 0);
    }
}

.feature-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
}

.feature-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
}

.feature-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(156, 39, 176, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(45deg, #9C27B0, #AB47BC);
}

.feature-card:nth-child(6) {
    background: linear-gradient(145deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(45deg, #FF5722, #FF7043);
}

.feature-card:nth-child(7) {
    background: linear-gradient(145deg, rgba(0, 188, 212, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(45deg, #00BCD4, #26C6DA);
}

/* Staggered animation on scroll */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }

/* Updated Use Cases Section styling */
.use-cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 161, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 161, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.use-cases h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    background: linear-gradient(45deg, #FFA116, #FFD700, #FFA116);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 161, 22, 0.3);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.use-case {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 161, 22, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFA116, #FFD700, #FFA116);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.use-case:hover::before {
    transform: scaleX(1);
}

.use-case::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 161, 22, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.use-case:hover::after {
    width: 200px;
    height: 200px;
}

.use-case:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(255, 161, 22, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 161, 22, 0.4);
}

.use-case h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.use-case-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 161, 22, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.use-case:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 161, 22, 0.4);
}

/* Installation Section */
.installation {
    padding: 80px 0;
    background: white;
}

.installation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.install-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FFA116;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #FFA116;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFA116;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFA116;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .use-cases h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .use-case {
        padding: 2rem;
        transform: none;
    }
    
    .use-case:hover {
        transform: translateY(-5px);
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
        transform: none;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .use-case {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .use-case h3 {
        font-size: 1.2rem;
    }
    
    .use-case p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

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

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card.animate-on-scroll {
    animation: fadeInScale 0.6s ease-out backwards;
}

.use-case.animate-on-scroll {
    animation: fadeInScale 0.6s ease-out backwards;
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-card:hover .feature-icon {
    animation: float 2s ease-in-out infinite;
}

/* Flat Icon Styles - Replace emojis with CSS icons */
.feature-icon, .use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Feature Icons */
.feature-icon.stats-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 14l3-3 3 3 6-6v4h2V4h-8v2h4l-4 4-3-3-5 5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-icon.notification-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-icon.ranking-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #27ae60, #229954);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-icon.sort-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-icon.cache-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.93 0 3.5 1.57 3.5 3.5 0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5c0-1.93 1.57-3.5 3.5-3.5zm7 13H5v-.8c0-.79.5-1.52 1.22-1.83C7.51 15.92 9.67 15.5 12 15.5s4.49.42 5.78.87c.72.31 1.22 1.04 1.22 1.83V19z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-icon.settings-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Use Case Icons */
.use-case-icon.bootcamp-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,3L1,9L12,15L21,10.09V17H23V9M5,13.18V17.18L12,21L19,17.18V13.18L12,17L5,13.18Z' /%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.use-case-icon.group-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm-12 0c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm6.39 4.56C16.71 11.7 18.53 11 20.5 11s3.79.7 4.61 1.56c.22.23.39.52.39.86V16h-4v-2.58c-.68-.15-1.42-.42-2.11-.86zM9 13c1.86 0 3.41.71 4.11 1.56.22.23.39.52.39.86V18H9v-2.58c-.42-.15-.85-.42-1.28-.86C7.04 13.71 6.14 13 4.5 13S1.96 13.71 1.28 14.56C1.06 14.79.89 15.08.89 15.42V18H5v-2.58c.68-.15 1.42-.42 2.11-.86z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.use-case-icon.workplace-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.use-case-icon.trophy-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3V1h10v2H7zM12 6c1.45 0 3 1.32 3 3 0 .97-.38 1.81-1 2.44V14H10v-2.56c-.62-.63-1-1.47-1-2.44 0-1.68 1.55-3 3-3zm3 15v-1c0-.55-.45-1-1-1H10c-.55 0-1 .45-1 1v1H7v2h10v-2h-2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.use-case-icon.student-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.use-case-icon.motivation-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFA116, #FFD700);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Enhanced styling for flat icons */
.feature-card .feature-icon,
.use-case .use-case-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::before,
.use-case:hover .use-case-icon::before {
    transform: scale(1.1);
    filter: brightness(1.2);
}