﻿/* Hero Section SEO */
.seo-hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
    overflow: hidden;
}

.seo-hero__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.seo-hero__content {
    flex: 1 1 500px;
    max-width: 600px;
    z-index: 2;
}

.seo-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a202c;
}

.seo-hero__lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.seo-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

    .seo-hero__bullets li {
        margin-bottom: .5rem;
        font-size: 1rem;
        color: #2d3748;
        padding-left: 1.5rem;
        position: relative;
    }

        .seo-hero__bullets li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #16a34a; /* أخضر */
            font-weight: bold;
        }

.seo-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.seo-hero__trust {
    margin-top: 1rem;
}

.seo-hero__trust-badge {
    display: inline-block;
    font-size: .95rem;
    color: #2563eb;
    font-weight: 600;
}

.seo-hero__visual {
    flex: 1 1 500px;
    text-align: center;
    z-index: 1;
}

.seo-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.seo-hero__shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(59,130,246,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Accessibility helpers */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
