    /* Animated background elements */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
            linear-gradient(135deg, transparent 40%, rgba(59, 130, 246, 0.03) 50%, transparent 60%);
        background-size: 100% 100%, 100% 100%, 200% 200%;
        animation: backgroundFlow 15s ease-in-out infinite;
        pointer-events: none;
        z-index: -1;
    }

    @keyframes backgroundFlow {
        0%, 100% {
            background-position: 0% 0%, 0% 0%, 0% 50%;
            opacity: 0.4;
        }
        50% {
            background-position: 100% 100%, 100% 100%, 100% 50%;
            opacity: 0.7;
        }
    }

    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .hero-title {
        font-size: 4.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #1e40af, #3b82f6, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(50px);
        animation: slideUp 1s ease-out 0.2s forwards;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        color: #64748b;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(30px);
        animation: slideUp 1s ease-out 0.4s forwards;
        font-weight: 600;
    }

    .hero-description {
        font-size: 1.3rem;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(30px);
        animation: slideUp 1s ease-out 0.6s forwards;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

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

    /* Section Base Styles */
    .section {
        padding: 6rem 2rem;
        position: relative;
    }

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

    .section-title {
        text-align: center;
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.4rem;
        color: #64748b;
        margin-bottom: 4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Feature Sections */
    .feature-section {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        margin-bottom: 4rem;
    }

    .feature-section:nth-child(even) {
        background: rgba(248, 250, 252, 0.6);
    }

    .feature-detail {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-bottom: 4rem;
    }

    .feature-detail:nth-child(even) .feature-content {
        order: 2;
    }

    .feature-detail:nth-child(even) .feature-visual {
        order: 1;
    }

    .feature-content h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .feature-icon {
        font-size: 3rem;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-description {
        font-size: 1.2rem;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

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

    .highlight-item {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .highlight-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    }

    .highlight-item h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e40af;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .highlight-item p {
        color: #64748b;
        font-size: 0.95rem;
    }

    .feature-visual {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
        text-align: center;
        transition: all 0.5s ease;
    }

    .feature-visual:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
    }

    .visual-icon {
        font-size: 6rem;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 2rem;
        display: block;
    }

    .visual-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 10px;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: #1e40af;
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #64748b;
        font-weight: 500;
    }

    /* Tool CTA Buttons */
    .tool-cta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .tool-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        min-width: 200px;
        justify-content: center;
    }

    .tool-cta-btn.primary {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }

    .tool-cta-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    }

    .tool-cta-btn.secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #1e40af;
        border: 2px solid rgba(59, 130, 246, 0.2);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    }

    .tool-cta-btn.secondary:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(-3px);
        border-color: #3b82f6;
    }

    /* Use Cases Section */
    .use-cases-section {
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    }

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

    .use-case-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2.5rem;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .use-case-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .use-case-card:hover::before {
        left: 100%;
    }

    .use-case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
    }

    .use-case-icon {
        font-size: 3rem;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        display: block;
    }

    .use-case-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 1rem;
    }

    .use-case-description {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .use-case-examples {
        list-style: none;
        padding: 0;
    }

    .use-case-examples li {
        color: #64748b;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .use-case-examples li::before {
        content: '✓';
        color: #10b981;
        font-weight: bold;
    }

    /* Benefits Section */
    .benefits-section {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .benefits-section .section-title {
        color: white !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
    }

    .benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        animation: patternMove 20s linear infinite;
    }

    @keyframes patternMove {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(60px) translateY(60px); }
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
        z-index: 10;
    }

    .benefit-item {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        text-align: center;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        display: block;
        opacity: 0.9;
    }

    .benefit-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .benefit-description {
        opacity: 0.9;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #1e40af, #3b82f6, #06b6d4);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

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

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .cta-title {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
    }

    .cta-description {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        line-height: 1.7;
    }

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

    .cta-btn {
        padding: 1.2rem 2.5rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        position: relative;
        overflow: hidden;
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.5s ease;
    }

    .cta-btn:hover::before {
        left: 100%;
    }

    .cta-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .cta-btn.primary {
        background: rgba(255, 255, 255, 1);
        color: #1e40af;
    }

    .cta-btn.primary:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    /* Scroll animations */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .feature-detail {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .feature-detail:nth-child(even) .feature-content,
        .feature-detail:nth-child(even) .feature-visual {
            order: initial;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 3rem;
        }

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

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

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

        .section-subtitle {
            font-size: 1.2rem;
        }

        .feature-content h3 {
            font-size: 2rem;
        }

        .use-cases-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .tool-cta {
            flex-direction: column;
            align-items: center;
        }

        .tool-cta-btn {
            width: 100%;
            max-width: 300px;
        }
    }
