/* ══════════════════════════════════════════════════════════════════════
   ABOUT STANDARDS (HERO PAGE 2) — CUSTOM STYLES
   ══════════════════════════════════════════════════════════════════════ */

.about-standards {
    position: relative;
    isolation: isolate;
    width: 100%;
    /* top: 3vh; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 12vw, 130px) clamp(16px, 5vw, 40px);
    direction: rtl;
    text-align: right;
    background-color: #0d1117;
}

.about-standards::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('../ev-hero-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;

}

@media (max-width: 767px) {
    .about-standards {
        padding-bottom: clamp(140px, 22vw, 200px);
    }

    .about-standards::before {
        background-position: 85% bottom;
    }
}

@media (min-width: 768px) {
    .about-standards::before {
        background-position: right bottom;
    }
}

.about-glass-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(4, 9, 20, 0.985) 5%, rgba(4, 9, 20, 0.955) 10%, rgba(4, 9, 20, 0.925) 30%, rgba(2, 25, 30, 0) 100%);
    backdrop-filter: blur(2px) saturate(200%);
    -webkit-backdrop-filter: blur(2px) saturate(200%);
}

/* Inner wrapper */
.about-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

/* Content styling inside Page 2 */
.standards-content {
    max-width: 720px;
    color: #0a0e18;
}


.standards-title {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    /* line-height: .15; */
    margin-top: -2.25rem;
    color: aliceblue;
    letter-spacing: -0.02em;
}

.standards-lead {
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    line-height: 1.6;
    color: rgb(196, 226, 253);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 2.5rem;
}

.standard-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 14, 24, 0.08);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.standard-item i {
    font-size: 1.4rem;
    color: #0a58ca;
    /* או צבע מותאם אחר למותג */
    background: rgba(133, 218, 234, 0.2);
    padding: 12px;
    border-radius: 10px;
}

.standard-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0a0e18;
}

.standard-item p {
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.standards-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Ghost button adaptation for light background */
.btn-ghost-dark {
    background: transparent;
    color: #0a0e18;
    border: 1px solid rgba(10, 14, 24, 0.2);
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-ghost-dark:hover {
    background: rgba(10, 14, 24, 0.05);
}