/* =========================================================
   HERO — Trust Strip + Right-Side Modern Showcase
========================================================= */

/* ---- Trust Strip ---- */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    font-family: var(--font-poppins);
}

.trust-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 18px;
    background: #D1D5DB;
}

/* =========================================================
   SHOWCASE CARD — Light Glass & Faded Mixed Image
========================================================= */

.hero-showcase.light-glass {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: transparent;
    overflow: visible;
}

/* ---- Image Wrap & Faded Mask ---- */
.hs-image-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.hs-faded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero-showcase:hover .hs-faded-img {
    transform: scale(1.03);
}



/* Overlay that fades the bottom edge of the image to blend into the stats card */
.hs-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8%;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}



/* =========================================================
   LIGHT GLASS STATS BAR — Line-Based Boxed Grid
========================================================= */

.hs-stats-bar.light {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-top: -30px; /* Pulls it slightly up over the bottom fade of the image */
    position: relative;
    z-index: 3;
}

.hs-stat-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hs-stat-block:not(:first-child) {
    border-left: none;
}

.hs-stat-block:first-child {
    border-radius: 4px 0 0 4px;
}

.hs-stat-block:last-child {
    border-radius: 0 4px 4px 0;
}

.hs-stat-block:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(94, 143, 43, 0.25);
}

/* ---- SVG Arc Ring ---- */
.hs-arc-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.hs-arc-svg {
    width: 100%;
    height: 100%;
}

.hs-arc-fill {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: arcDraw 1.8s ease-out 0.5s forwards;
}

@keyframes arcDraw {
    to { stroke-dashoffset: 0; }
}

/* Centered Number */
.hs-arc-num.light {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 750;
    color: #1a1a1a;
    font-family: var(--font-poppins);
    line-height: 1;
}

.hs-arc-num.light span {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    top: -3px;
    margin-left: 1px;
}

/* ---- Stat Meta Text ---- */
.hs-stat-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hs-stat-title.light {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-poppins);
    line-height: 1.2;
}

.hs-stat-sub.light {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    font-family: var(--font-poppins);
    line-height: 1.3;
}

/* =========================================================
   RESPONSIVE OVERRIDES
========================================================= */

@media (max-width: 1399px) {
    .hero-showcase.light-glass {
        max-width: 480px;
    }

    .hs-image-wrap {
        height: 320px;
    }

    .hs-stat-block {
        padding: 16px 14px;
    }

    .hs-arc-wrap {
        width: 46px;
        height: 46px;
    }

    .hs-arc-num.light {
        font-size: 15px;
    }

    .hs-stat-title.light {
        font-size: 12px;
    }
}

@media (max-width: 1199px) {
    .hero-showcase.light-glass {
        max-width: 420px;
    }

    .hs-image-wrap {
        height: 280px;
    }

    .hs-stats-bar.light {
        margin-top: -20px;
    }

    .hs-stat-block {
        padding: 12px 10px;
        gap: 8px;
    }

    .hs-arc-wrap {
        width: 40px;
        height: 40px;
    }

    .hs-arc-num.light {
        font-size: 13px;
    }

    .hs-stat-title.light {
        font-size: 11px;
    }

    .hs-stat-sub.light {
        font-size: 9px;
    }
}

@media (max-width: 991px) {
    .hero-trust-strip {
        gap: 12px;
    }
    .trust-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .trust-item {
        font-size: 12px;
    }
}
