/* Fix Vue scoped compiled selector */
.main-button[data-v-a938a365] {
    width: auto !important;
    max-width: max-content !important;
    display: inline-block !important;
    align-self: flex-start !important;
}
/* Force ALL remove buttons to use black icon */
.remove-btn svg path {
    fill: #000 !important;
    stroke: #000 !important;
}

/* Hover (turn red like before) */
.remove-btn:hover svg path {
    fill: #dc3545 !important;
    stroke: #dc3545 !important;
}

:root {
    --solar-primary: #0d65ae;
    /* deep sky blue */
    --solar-accent: #f6b100;
    /* sun yellow */
    --solar-ink: #0f172a;
    /* text */
    --solar-success: #19a15f;
    /* green tick */
}

.hero-solar {
    isolation: isolate;
}

/* Soft background mood (very subtle) */
.hero-solar::before {
    content: "";
    position: absolute;
    inset: -10% -10% -10% -10%;
    background: radial-gradient(
                closest-side,
                rgba(246, 177, 0, 0.14),
                transparent 60%
            )
            85% -20%/60vmax 60vmax no-repeat,
        radial-gradient(closest-side, rgba(13, 101, 174, 0.06), transparent 70%) -10%
            110%/55vmax 55vmax no-repeat,
        repeating-radial-gradient(
            circle at 90% 5%,
            rgba(13, 101, 174, 0.04) 0 2px,
            transparent 2px 6px
        );
    z-index: 0;
    filter: saturate(1.02);
}

/* === Sunlight beam sweeping from top-right === */
.hero-solar .sunbeam {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 140vmax;
    height: 60vmax;
    pointer-events: none;
    z-index: 3;
    /* above content but subtle */
    mix-blend-mode: screen;
    /* adds light without washing colors */
    filter: blur(8px) saturate(1.04);
    background: linear-gradient(
        90deg,
        rgba(255, 240, 180, 0) 0%,
        rgba(255, 240, 180, 0.18) 40%,
        rgba(255, 240, 180, 0.32) 50%,
        rgba(255, 240, 180, 0.18) 60%,
        rgba(255, 240, 180, 0) 100%
    );
    transform: rotate(-20deg) translate3d(0, 0, 0);
    animation: beamDrift 28s ease-in-out infinite;
}

.hero-solar .sunbeam::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 48%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(12px);
    opacity: 0.65;
}

@keyframes beamDrift {
    0% {
        transform: rotate(-20deg) translate3d(0%, -4%, 0);
        opacity: 0.85;
    }

    50% {
        transform: rotate(-20deg) translate3d(-22%, 2%, 0);
        opacity: 1;
    }

    100% {
        transform: rotate(-20deg) translate3d(-36%, -3%, 0);
        opacity: 0.9;
    }
}

/* Gentle noise layer to avoid banding (super light) */
.hero-solar .sun-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,\
                                                                                                                                <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">\
                                                                                                                                  <filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/></filter>\
                                                                                                                                  <rect width="100%" height="100%" filter="url(%23n)" opacity="0.03"/>\
                                                                                                                                </svg>');
    background-size: 140px 140px;
    animation: noiseShift 6s linear infinite;
}

@keyframes noiseShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 140px 140px;
    }
}

/* Left media column */
.hero-solar .media-wrap {
    position: relative;
    height: 100%;
    min-height: 520px;
    background: linear-gradient(180deg, #093a6b 0%, #0d65ae 100%);
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

@media (max-width: 991.98px) {
    .hero-solar .media-wrap {
        clip-path: none;
        min-height: 360px;
    }
}

.hero-solar .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
}

.hero-solar .media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: contrast(1.05) saturate(1.05) brightness(0.96);
    transform: scale(1.06);
    animation: kenBurns 18s ease-in-out infinite alternate;
}

/* Right column entrance */
.solar-right {
    animation: fadeRise 0.8s ease both 0.15s;
}

/* Headline / sub / KPIs */
.solar-title {
    font-weight: 800;
    line-height: 1.1;
    color: var(--solar-ink);
}

.solar-sub {
    color: #334155;
    font-size: 1.05rem;
}

.solar-kpi {
    border-radius: 16px;
    background: #fff;
    padding: 0.9rem 1rem;
    box-shadow: 0 10px 24px rgba(13, 101, 174, 0.1);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solar-kpi strong {
    font-size: 1.25rem;
    color: #22c55e;
}

.solar-kpi span {
    display: block;
    color: #475569;
    font-size: 0.9rem;
}

.solar-kpi:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 101, 174, 0.14);
}

/* Keyframes */
@keyframes kenBurns {
    0% {
        transform: scale(1.06) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.12) translate3d(1%, -1%, 0);
    }
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-solar .sunbeam,
    .hero-solar .sun-noise,
    .media-img,
    .solar-right,
    .solar-kpi {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
.about-badge {
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.about-img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 260px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about-tile {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about-pill {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.35);
    background: #f1c40f;
    color: #1f2937;
}

.about-metrics {
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.icon-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    color: #fff;
    line-height: 0;
    aspect-ratio: 1/1;
}

.icon-dot i {
    font-size: 20px;
}

.dot-green {
    background: #2ecc71;
}

.dot-yellow {
    background: #f1c40f;
    color: #0f172a;
}

.dot-blue {
    background: #0d65ae;
    color: #fff;
}

.about-lead {
    line-height: 1.7;
}

.check-divider {
    width: 1px;
    background: rgba(2, 6, 23, 0.08);
    height: 24px;
}

@media (min-width: 992px) {
    .about-img {
        height: 300px;
    }
}
/* Simple bright green card */
.vp-card {
    position: relative;
    display: block;
    text-decoration: none !important;
    color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    background: #19a15f;
    /* 🌿 bright green */
    box-shadow: 0 6px 18px rgba(25, 161, 95, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        background-color 0.25s ease;
    height: 100%;
}

.vp-card:hover,
.vp-card:focus-visible {
    transform: translateY(-6px);
    background-color: #22b36d;
    /* brighter on hover */
    box-shadow: 0 10px 28px rgba(25, 161, 95, 0.3);
    outline: none;
}

/* Yellow icon circle */
.vp-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f6b100;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 auto 0.9rem auto;
}

.vp-icon i {
    font-size: 28px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vp-card:hover .vp-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.vp-card:hover .vp-icon i {
    transform: rotate(360deg);
}

/* Text */
.vp-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.vp-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
    .vp-card,
    .vp-icon,
    .vp-icon i {
        transition: none !important;
        transform: none !important;
    }
}
