﻿*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --blue: #264EFF;
    --blue-light: #4A6EFF;
    --blue-dark: #1A3DD9;
    --blue-bg: #EEF1FF;
    --orange: #F7A722;
    --orange-light: #FFB84A;
    --ink: #0E1320;
    --ink-light: #1F2937;
    --muted: #6B7280;
    --hint: #9CA3AF;
    --bg: #F3F4FB;
    --bg-light: #FAFBFF;
    --surface: #FFFFFF;
    --line: #E5E7F0;
    --line-light: #F0F2F5;
    --success: #10B981;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15,23,42,.05);
    --shadow-sm: 0 4px 12px rgba(15,23,42,.07);
    --shadow-md: 0 8px 24px rgba(15,23,42,.11);
    --shadow-lg: 0 20px 48px rgba(15,23,42,.14);
    --shadow-blue: 0 8px 24px rgba(38,78,255,.14);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --wrap: 1280px;
}
.ent-page {
    background: linear-gradient(180deg, #F8F9FC 0%, var(--bg) 100%);
    font-family: "Cairo", "Inter", sans-serif;
    color: var(--ink);
}
.ent-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px 80px;
}
/* ── Scroll Progress ── */
.ent-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(38,78,255,.1);
    z-index: 1001;
    pointer-events: none;
}
.ent-scroll-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    width: 0%;
    transition: width 0.1s ease-out;
}
/* ── Ticker ── */
.ent-ticker {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    padding: 9px 0;
    overflow: hidden;
}
.ent-ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: entMarquee 30s linear infinite;
}
    .ent-ticker-content:hover {
        animation-play-state: paused;
    }
@keyframes entMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ent-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 600;
}
    .ent-ticker-item::before {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        background: var(--orange);
        clip-path: polygon(0 0, 100% 30%, 100% 70%, 0 100%);
        flex-shrink: 0;
    }
.ent-ticker-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}
    .ent-ticker-link:hover {
        color: var(--orange-light);
    }
/* ── Breadcrumb ── */
.ent-breadcrumb-wrap {
    max-width: var(--wrap);
    margin: 12px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: var(--muted);
}
.ent-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
    .ent-breadcrumb a {
        color: var(--muted);
        font-weight: 600;
        transition: var(--transition);
        text-decoration: none;
    }
        .ent-breadcrumb a:hover {
            color: var(--blue);
        }
/* ── Buttons ── */
.ent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
}
.ent-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}
.ent-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(38,78,255,.28);
}
    .ent-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(38,78,255,.38);
        color: #fff;
    }
.ent-btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #111827;
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(247,167,34,.28);
}
    .ent-btn-orange:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(247,167,34,.38);
        color: #111827;
    }
.ent-btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-xs);
}
    .ent-btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
        transform: translateY(-1px);
    }
.ent-btn-ghost {
    background: transparent;
    color: var(--muted);
    border-color: var(--line);
}
    .ent-btn-ghost:hover {
        color: var(--blue);
        border-color: var(--blue);
    }
/* ── Hero ── */
.ent-hero {
    padding-top: 28px;
    margin-bottom: 20px;
}
.ent-hero-card {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-lg);
    padding: 36px 36px 32px;
    overflow: hidden;
    animation: entFadeUp 0.7s ease-out;
}
@keyframes entFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.ent-hero-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue) 0 60%, var(--orange) 60% 100%);
}
.ent-hero-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 18px solid rgba(38,78,255,.06);
}
.ent-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.ent-eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
    .ent-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
    }
.ent-hero-title {
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 900;
}
.ent-hero-desc {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 68ch;
}
.ent-hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ent-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--bg-light);
    color: var(--ink-light);
    border: 1px solid var(--line-light);
    transition: var(--transition);
    font-weight: 600;
}
    .ent-pill i {
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--orange);
    }
    .ent-pill:hover {
        background: #fff;
        border-color: var(--blue);
        transform: translateY(-1px);
    }
.ent-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.ent-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
/* ── Stats ── */
.ent-stats {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    margin: 28px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-blue);
}
    .ent-stats::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }
.ent-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.ent-stat-item {
    text-align: center;
}
.ent-stat-num {
    display: block;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.ent-stat-label {
    font-size: 12px;
    font-weight: 600;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .07em;
}
/* ── Search Bar ── */
.ent-search-section {
    margin-bottom: 8px;
}
.ent-search-wrap {
    position: relative;
    max-width: 560px;
}
.ent-search-icon-left {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--hint);
    font-size: 14px;
    pointer-events: none;
}
[dir="rtl"] .ent-search-icon-left {
    left: auto;
    right: 14px;
}
.ent-search-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--surface);
    padding: 0 130px 0 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    transition: var(--transition);
}
[dir="rtl"] .ent-search-input {
    padding: 0 44px 0 130px;
}
.ent-search-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(38,78,255,.1);
}
.ent-search-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 36px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: inherit;
}
[dir="rtl"] .ent-search-btn {
    right: auto;
    left: 6px;
}
.ent-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(38,78,255,.3);
}
/* ── Filter Bar ── */
.ent-filter-section {
    margin: 28px 0 24px;
}
.ent-filter-bar {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.ent-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 160px;
    min-width: 140px;
}
.ent-filter-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
    .ent-filter-label i {
        font-size: 11px;
        color: var(--blue);
    }
.ent-filter-select {
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
[dir="rtl"] .ent-filter-select {
    background-position: left 12px center;
    padding-right: 14px;
    padding-left: 32px;
}
.ent-filter-select:hover {
    border-color: var(--blue);
    background-color: #fff;
}
.ent-filter-select:focus {
    outline: none;
    border-color: var(--blue);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(38,78,255,.1);
}
.ent-filter-apply {
    height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(38,78,255,.25);
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}
    .ent-filter-apply:hover {
        background: linear-gradient(135deg, var(--blue-dark), var(--blue));
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(38,78,255,.35);
    }
.ent-filter-clear {
    height: 44px;
    padding: 0 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}
    .ent-filter-clear:hover {
        border-color: var(--blue);
        color: var(--blue);
    }
/* ── Toolbar ── */
.ent-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.ent-results-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
}
    .ent-results-count strong {
        font-size: 22px;
        color: var(--blue);
        font-weight: 900;
    }
    .ent-results-count i {
        color: var(--blue);
        font-size: 14px;
    }
/* ── Projects Grid ── */
.ent-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
/* ── Project Card ── */
.ent-project-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
}
    .ent-project-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.45s ease-out, transform 0.45s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .ent-project-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg), var(--shadow-blue);
        border-color: rgba(38,78,255,.2);
    }
    .ent-project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--blue-light));
        opacity: 0;
        transition: opacity .25s ease;
        z-index: 2;
    }
    .ent-project-card:hover::before {
        opacity: 1;
    }
/* Cover */
.ent-project-cover {
    height: 220px;
    background: linear-gradient(135deg, #EEF2FF, #F3F4FB);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
    .ent-project-cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.07));
    }
    .ent-project-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
.ent-project-card:hover .ent-project-cover img {
    transform: scale(1.05);
}
.ent-no-image {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
    background: linear-gradient(135deg, #EEF2FF, #F8FAFC);
    text-align: center;
    padding: 20px;
    letter-spacing: -0.02em;
}
/* Badge */
.ent-project-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10,20,40,.82);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}
    .ent-project-badge i {
        color: #34D399;
        font-size: 10px;
    }
[dir="rtl"] .ent-project-badge {
    right: auto;
    left: 10px;
}
/* Body */
.ent-project-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ent-project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}
.ent-project-cat {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: var(--blue-bg);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 4px;
}
.ent-project-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.ent-project-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ent-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line-light);
}
.ent-project-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.ent-provider-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
}
.ent-provider-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .ent-provider-verified::after {
        content: "";
        display: block;
        width: 5px;
        height: 3px;
        border-left: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
    }
.ent-provider-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ent-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
    .ent-card-arrow i {
        font-size: 12px;
        color: var(--blue);
        transition: var(--transition);
    }
.ent-project-card:hover .ent-card-arrow {
    background: var(--blue);
}
    .ent-project-card:hover .ent-card-arrow i {
        color: #fff;
    }
/* ── Empty ── */
.ent-empty {
    padding: 60px 20px;
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    grid-column: 1 / -1;
}
    .ent-empty i {
        font-size: 44px;
        color: var(--hint);
        display: block;
        margin-bottom: 14px;
    }
    .ent-empty h3 {
        font-size: 18px;
        color: var(--ink);
        font-weight: 800;
        margin-bottom: 8px;
    }
    .ent-empty p {
        color: var(--muted);
        font-size: 14px;
        margin-bottom: 20px;
    }
/* ── Pagination ── */
.ent-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.ent-page-btn {
    min-width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
    .ent-page-btn:hover:not(:disabled) {
        border-color: var(--blue);
        color: var(--blue);
        transform: translateY(-1px);
    }
    .ent-page-btn.active {
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        color: #fff;
        border-color: var(--blue);
        box-shadow: 0 4px 12px rgba(38,78,255,.25);
    }
    .ent-page-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }
/* ── Full CTA ── */
.ent-fullcta {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: var(--radius-lg);
    padding: 44px 24px;
    margin-top: 36px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-blue);
}
    .ent-fullcta::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 48px solid rgba(255,255,255,.06);
        pointer-events: none;
    }
    .ent-fullcta h2 {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 900;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    .ent-fullcta p {
        font-size: 15px;
        margin-bottom: 22px;
        opacity: .9;
        position: relative;
        z-index: 1;
    }
.ent-fullcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--blue);
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    position: relative;
    z-index: 1;
    text-decoration: none;
    font-family: inherit;
}
    .ent-fullcta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,.2);
        color: var(--blue);
    }
/* ── Footer desc ── */
.ent-footer-desc {
    margin-top: 32px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line-light);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
}
/* ── Sticky CTA ── */
.ent-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #0B1120;
    color: #fff;
    padding: 12px 50px 12px 16px;
    box-shadow: 0 -8px 28px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    transition: transform .2s ease-out, opacity .2s ease-out;
}
    .ent-sticky-cta.is-hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }
.ent-sticky-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
    .ent-sticky-close:hover {
        background: rgba(255,255,255,.25);
    }
.ent-sticky-text {
    font-size: 13px;
    max-width: 60ch;
}
    .ent-sticky-text b {
        color: #FBBF24;
    }
.ent-sticky-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
/* ── Responsive ── */
@media (max-width: 1024px) {
    .ent-hero-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .ent-hero-card {
        padding: 22px 18px;
    }
    .ent-projects-grid {
        grid-template-columns: 1fr;
    }
    .ent-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ent-footer-desc {
        padding: 22px 18px;
    }
    .ent-filter-bar {
        flex-direction: column;
    }
    .ent-filter-field {
        flex: 1 1 100%;
    }
    .ent-filter-apply {
        width: 100%;
        justify-content: center;
    }
    .ent-filter-clear {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .ent-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}