/* قسم الهيرو — عناصر زخرفية فقط (التنسيق عبر Tailwind في القالب) */

.dl-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .dl-hero {
        min-height: min(88vh, 900px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 1rem;
        padding-bottom: 4rem;
    }
}

.dl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.dl-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 25%, rgba(79, 240, 127, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 75%, rgba(96, 1, 209, 0.06) 0%, transparent 50%);
}

.dl-hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(79, 240, 127, 0.5);
    box-shadow: 0 0 10px rgba(79, 240, 127, 0.6);
    animation: dl-hero-float 4s ease-in-out infinite;
}

.dl-hero__particle:nth-child(1) { top: 12%; left: 8%; }
.dl-hero__particle:nth-child(2) { top: 38%; left: 20%; animation-delay: 0.8s; }
.dl-hero__particle:nth-child(3) { top: 62%; left: 12%; animation-delay: 1.6s; }
.dl-hero__particle:nth-child(4) { top: 22%; right: 12%; animation-delay: 0.4s; }
.dl-hero__particle:nth-child(5) { top: 52%; right: 8%; animation-delay: 1.2s; }

@keyframes dl-hero-float {
    0%, 100% { transform: translateY(0); opacity: 0.45; }
    50% { transform: translateY(-6px); opacity: 0.95; }
}



.dl-hero__rings {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(480px, 88vw);
    height: min(480px, 88vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(79, 240, 127, 0.12);
}

.dl-hero__rings::before,
.dl-hero__rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(79, 240, 127, 0.08);
}

.dl-hero__rings::before {
    inset: -36px;
}

.dl-hero__rings::after {
    inset: -72px;
    border-color: rgba(79, 240, 127, 0.04);
}

.dl-hero__grid,
.dl-hero > .grid {
    position: relative;
    z-index: 1;
}

.dl-hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.25rem;
}

.dl-hero__showcase {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
}

.dl-hero__showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .dl-hero__showcase {
        max-width: 560px;
    }

    .dl-hero__visual {
        margin-bottom: 0;
    }
}

/* عنوان متدرج — متوافق مع ثيم الموقع */
.dl-hero__title-accent {
    background: linear-gradient(135deg, #4ff07f 0%, #3de273 45%, #5eecaf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(79, 240, 127, 0.2));
}

.dl-hero__trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(79, 240, 127, 0.08);
    border: 1px solid rgba(79, 240, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ff07f;
    box-shadow: 0 0 18px rgba(79, 240, 127, 0.08);
}

.dl-hero__trust-icon .material-symbols-outlined {
    font-size: 22px;
}

.dl-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .dl-hero__trust {
        gap: 1rem;
    }
}

.dl-hero__trust-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.35rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    min-height: 116px;
    width: 100%;
}

.dl-hero__trust-text {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.5;
    color: #e5e2e1;
}

@media (min-width: 640px) {
    .dl-hero__trust-text {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .dl-hero__trust-card {
        gap: 0.55rem;
        min-height: 132px;
        padding: 1rem 0.75rem;
    }
}
