    /* Read By Resi Specific Styles */
    .read-by-resi-hero {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
        padding: 6rem 0 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1400px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .read-by-resi-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-icon {
        font-size: 4rem;
        color: #3b82f6;
        margin-bottom: 1.5rem;
        animation: float 3s ease-in-out infinite;
        position: relative;
        z-index: 2;
    }

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

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e40af, #3b82f6, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }

    .cta-button {
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
        min-width: 180px;
        justify-content: center;
    }

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

    .cta-button.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    }

    .cta-button.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);
    }

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

    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        padding: 4rem 0;
        text-align: center;
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1400px;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .stat-item {
        color: white;
    }

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

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

    /* Features Section */
    .features-section {
        padding: 6rem 0;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1400px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

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

    .feature-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2.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;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 1.5rem;
        display: block;
    }

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

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

    .feature-highlight {
        background: rgba(59, 130, 246, 0.1);
        color: #1e40af;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 6rem 0;
        background: rgba(248, 250, 252, 0.9);
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1400px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

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

    .step-card {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }

    .step-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 1rem;
    }

    .step-description {
        color: #64748b;
        line-height: 1.7;
    }

    /* Use Cases Section */
    .use-cases-section {
        padding: 6rem 0;
        background: white;
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1400px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* CTA Section */
    .final-cta-section {
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        padding: 6rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        margin: 4rem auto;
        max-width: 1400px;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

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

    .cta-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .cta-button.white {
        background: rgba(255, 255, 255, 0.95);
        color: #1e40af;
        border: 2px solid transparent;
    }

    .cta-button.white:hover {
        background: white;
        color: #1e40af;
        transform: translateY(-3px);
    }

    .cta-button.outline {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-button.outline:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

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

    .section-subtitle {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto 2rem;
        text-align: center;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 1rem 0;
        color: #64748b;
        font-size: 0.9rem;
    }

    .breadcrumb a {
        color: #3b82f6;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .read-by-resi-hero {
            padding: 4rem 0 3rem;
            margin: 1rem;
        }

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

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

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

        .features-grid,
        .steps-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

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

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

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

        .features-section,
        .how-it-works-section,
        .use-cases-section,
        .stats-section,
        .final-cta-section {
            margin: 1rem;
        }
    }

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

        .stat-value {
            font-size: 2rem;
        }
    }
