/* UX Booster - Frontend Styles (Empire Standard - Ultra Compact) */

:root {
    --aoro-primary: #1F6F5C;
    /* Navy */
    --aoro-accent: #00846c;
    /* Teal/Green */
    --aoro-dark-green: #00503e;
    /* Darker Green */
    --bg-ribbon: #f1f5f9;
}

/* Prevent horizontal scrollbar from 100vw full-width containers */
html {
    overflow-x: hidden;
}

/* Global Full-Width Containers - Optimized for Responsiveness */
.ux-booster-cred-container,
.ux-partners-container,
.ux-services-grid-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    overflow-x: clip;
}

@media (max-width: 767px) {

    .ux-booster-cred-container,
    .ux-partners-container,
    .ux-services-grid-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }
}

/* 1. Credibility Block */
.ux-booster-cred-container {
    padding: 50px 0;
}

.ux-booster-cred-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.ux-booster-cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(31, 111, 92, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ux-booster-cred-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .ux-booster-cred-container {
        padding: 20px 0;
    }
}

.ux-booster-cred-card {
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid rgba(31, 111, 92, 0.08);
    transition: all 0.4s ease;
}

.ux-booster-cred-card:last-child {
    border-right: none;
}

.ux-booster-cred-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.ux-booster-cred-icon-wrap {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ux-booster-cred-card:hover .ux-booster-cred-icon-wrap {
    background: var(--aoro-primary);
}

.ux-booster-cred-card:hover .ux-booster-cred-icon-wrap svg path {
    stroke: #ffffff;
}

.ux-booster-cred-label {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

/* 2. Partners Ribbon - Ultra Modern & Wide */
.ux-partners-container.ux-partners-ribbon {
    background: #ffffff;
    padding: 20px 0 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 3px solid var(--aoro-primary);
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.ux-partners-inner.ribbon-layout {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.ux-partners-branding {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-right: 25px;
    border-right: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.ux-branding-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
}

.ux-partners-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--aoro-primary);
    white-space: nowrap;
    letter-spacing: 0.1em;
    line-height: 1.1;
    padding: 0;
    margin: 0;
    border: none;
}

.ux-partners-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.ux-partners-trustpilot {
    line-height: 0;
    display: flex;
    align-items: center;
}

.trust-logo-final {
    max-width: 130px;
    height: auto;
    opacity: 1;
}

.ux-partners-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.ux-partners-authority {
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0.02em;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding: 12px 20px;
}

.ux-partners-swiper {
    flex-grow: 1;
    overflow: hidden;
}

.ux-partner-logo-compact {
    height: 40px;
    /* Compact logos */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.ux-partner-logo-compact img {
    max-height: 100%;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.ux-partner-logo-compact img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .ux-partners-inner.ribbon-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .ux-partners-branding {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 20px;
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .ux-partners-container.ux-partners-ribbon {
        padding: 40px 0;
    }

    .ux-partners-inner.ribbon-layout {
        padding: 0 20px;
    }

    .ux-partner-logo-compact {
        height: 35px;
    }
}

/* 3. Services Overview Grid - Empire Elite (Full-Width & Compact) */
.ux-services-grid-container {
    padding: 0;
    background: #0e192d;
    /* Empire Dark Base */
    margin: 0;
}

.ux-services-grid-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Standard equal grid */
    width: 100%;
    gap: 0;
}

.ux-service-card {
    position: relative;
    height: 480px;
    /* Ultra Compact Height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ux-service-card:last-child {

    border-right: none;
}

/* Vignette Fade (Empire style) */
.ux-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 20, 38, 0.98) 0%,
            rgba(11, 31, 59, 0.65) 35%,
            transparent 75%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism Hover (from empire.css logic) */
.ux-service-card:hover::before {
    background: rgba(31, 111, 92, 0.4);
    backdrop-filter: blur(5px) saturate(1.5);
    -webkit-backdrop-filter: blur(5px) saturate(1.5);
}

.ux-service-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-service-icon-wrap {
    margin-bottom: 20px;
}

.ux-service-icon-wrap svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    stroke: #fff;
}

.ux-service-title {
    font-size: 24px;
    /* More Compact */
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #fff !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.ux-service-desc {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffffff !important;
    max-width: 250px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Official Empire Button Style */
.ux-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 50px !important;
    color: var(--aoro-primary) !important;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(31, 111, 92, 0.3);
    border: 2px solid transparent;
}

.ux-service-btn:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
    box-shadow: none;
}


/* CTA Ribbon Refusal */
.ux-services-cta-wrap {
    padding: 35px 0;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.ux-services-cta-btn {
    display: inline-block;
    color: black;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.ux-services-cta-btn strong {
    color: var(--aoro-primary);
    margin-left: 6px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--aoro-primary);
}

.ux-services-cta-btn:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .ux-services-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ux-services-grid-inner {
        grid-template-columns: 1fr;
    }

    .ux-service-card {
        height: 320px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ux-service-content {
        padding: 20px;
    }

    .ux-service-title {
        font-size: 20px;
    }

    .ux-service-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* ---------------------------------------------------------------
   4. HOW WE WORK ï¿½ AORO Ultra-Modern Dark Edition
   Dark navy gradient, glassmorphism cards, cinematic images
   --------------------------------------------------------------- */

.ux-hww-container {
    padding: 50px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;

    overflow: hidden;
}

.ux-hww-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* -- Header -- */
.ux-hww-header {
    text-align: center;
    margin-bottom: 64px;
}

.ux-hww-title {
    font-size: 34px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.ux-hww-subtitle {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    line-height: 25px;
    max-width: 620px;
    margin: 0 auto;
}

/* -- Grid -- */
.ux-hww-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* -- Card -- */
.ux-hww-step {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    border-radius: 0 !important;
    border: 2px solid transparent;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.5s ease;
}

.ux-hww-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(31, 111, 92, 0.07);
    border-color: var(--aoro-primary);
}

/* -- Image wrapper -- */
.ux-hww-step-media {
    position: relative;
    flex-shrink: 0;
}

.ux-hww-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.ux-hww-img-wrapper,
.ux-hww-img-wrapper img {
    border-radius: 0 !important;
}

.ux-hww-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.7s ease;
}

.ux-hww-step:hover .ux-hww-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Cinematic gradient overlay on image */
.ux-hww-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 20, 38, 0.7) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.ux-hww-step:hover .ux-hww-img-wrapper::after {
    opacity: 0.4;
}

/* Placeholder */
.ux-hww-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    position: relative;
    flex-shrink: 0;
}

.ux-hww-img-placeholder>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    color: #94a3b8;
}

/* -- Step Number ï¿½ floating badge on the image -- */
.ux-hww-step-number {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aoro-primary);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    box-shadow: 0 4px 12px rgba(31, 111, 92, 0.3);
    transition: background 0.4s ease, transform 0.4s ease;
}

.ux-hww-step:hover .ux-hww-step-number {
    background: #0e2a4f;
    transform: scale(1.1);
}

/* -- Text Content -- */
.ux-hww-step-inner-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ux-hww-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 24px;
}

.ux-hww-step-title {
    font-size: 20px !important;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 12px;
}

/* Accent underline on title */
.ux-hww-step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--aoro-primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-hww-step:hover .ux-hww-step-title::after {
    width: 56px;
}

.ux-hww-step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* ------- Responsive ------- */
@media (max-width: 1200px) {
    .ux-hww-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .ux-hww-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ux-hww-container {
        padding: 70px 0;
    }
}

/* =========================================================================
   Real Client Result Section [ux_real_results]
========================================================================= */

.ux-rr-wrapper {
    width: 100%;
    padding: 80px 20px;
    background: #f8fafc;
    /* light gray background to break from adjacent sections */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.ux-rr-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ux-rr-header {
    text-align: center;
    margin-bottom: 50px;
}

.ux-rr-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #1F6F5C;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ux-rr-subheading {
    font-size: 18px;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

.ux-rr-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.3s ease;
}

.ux-rr-card:hover {
    transform: translateY(-4px);
}

.ux-rr-card-left {
    padding: 25px 25px 20px;
    background: linear-gradient(135deg,
            #071426 0%,
            #0B1F3B 30%,
            #123C4A 65%,
            #1F6F5C 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent in left column */
.ux-rr-card-left::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ux-rr-icon {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ux-rr-icon svg {
    width: 20px;
    height: 20px;
}

.ux-rr-highlight {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
}

.ux-rr-accent {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #22c55e !important;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.ux-rr-card-right {
    flex: 1;
    padding: 25px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.ux-rr-quote-icon {
    margin-bottom: 12px;
    opacity: 0.25;
}

.ux-rr-quote-icon svg {
    width: 24px;
    height: 18px;
}

.ux-rr-quote {
    font-size: 15px;
    line-height: 1.5;
    color: #334155;
    font-style: italic;
    margin: 0 0 20px;
    font-weight: 400;
    flex-grow: 1;
}

.ux-rr-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.ux-rr-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ux-rr-author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.ux-rr-author-system {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 4px;
}

.ux-rr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.ux-rr-cta-container {
    text-align: center;
    margin-top: 50px;
}

.ux-rr-global-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1F6F5C;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(31, 111, 92, 0.25);
}

.ux-rr-global-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(31, 111, 92, 0.35);
    background: #1e4b85;
}

.ux-rr-stats-corner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.ux-rr-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
}

.ux-rr-stat-item.outcome {
    background: #f0fdf4;
    color: #16a34a;
}

@media (max-width: 1024px) {
    .ux-rr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ux-rr-title {
        font-size: clamp(24px, 6vw, 28px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ux-rr-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ux-rr-wrapper {
        padding: 40px 15px;
        /* Ultra compact */
    }

    .ux-rr-card-left,
    .ux-rr-card-right {
        padding: 20px 15px;
        /* Minimum padding */
    }

    .ux-rr-accent {
        font-size: 40px !important;
    }

    .ux-rr-title {
        font-size: 22px;
    }

    .ux-rr-grid {
        gap: 20px;
        /* Tighter grid */
    }

    .ux-rr-stats-corner {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ux-rr-global-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .ux-hww-container {
        padding: 56px 0;
    }

    .ux-hww-inner {
        padding: 0 16px;
    }

    .ux-hww-header {
        margin-bottom: 40px;
    }

    .ux-hww-title {
        font-size: 30px;
    }

    .ux-hww-subtitle {
        font-size: 15px;
    }

    .ux-hww-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ux-hww-step-content {
        padding: 18px 16px 20px;
    }
}

/* ---------------------------------------------------------------
   5. ENGINEERING DIFFERENCE ï¿½ Glass Cards Overlay Redesign
   Full-width cinematic hero + 5 glass cards overlaid at bottom
   White CTA strip below.
   --------------------------------------------------------------- */

.ux-engdiff-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    overflow: hidden;
    background: #ffffff;
}

@media (max-width: 767px) {
    .ux-engdiff-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }
}

/* -- Full-width hero (taller to accommodate badge + headline + glass row) -- */
.ux-engdiff-hero {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    flex-direction: column;
    /* Parallax handled via JS scroll — background-attachment: fixed
       breaks when any ancestor has a CSS transform */
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    transition: background-position 0.05s linear;
}

/* Hide the <img> tag — image is now set as CSS background-image */
.ux-engdiff-hero-img {
    display: none !important;
}

.ux-engdiff-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 20, 38, 0.8) 0%, rgba(11, 31, 59, 0.65) 30%, rgba(31, 111, 92, 0.6) 100%);
    z-index: 1;
}

.ux-engdiff-hero-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 72px 0;
    max-width: 1220px;
    bottom: 350px;
}

.ux-engdiff-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ux-engdiff-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--aoro-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.ux-engdiff-headline {
    font-size: 40px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    margin: 0 0 24px 0 !important;
    letter-spacing: -0.8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* -- AORO Badge -- */
.aoro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1F6F5C 0%, #16423C 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aoro-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.aoro-badge__text {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.ux-engdiff-label-badge {
    margin-bottom: 20px;
}

/* ---------------------------------------------------------
   GLASS CARDS ROW ï¿½ positioned at the bottom of the hero
   --------------------------------------------------------- */

.ux-engdiff-glass-row {
    position: absolute;
    bottom: 56px;
    /* Space for the bottom card */
    left: 0;
    right: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    /* subtle top shadow to lift the glass strip from image */
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.28);
}

.ux-engdiff-glass-card {
    background: #1F6F5Ca1;
    backdrop-filter: blur(62px) saturate(2.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    padding: 26px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: background 0.3s ease;
    cursor: default;
}

.ux-engdiff-glass-card:last-child {
    border-right: none;
}

.ux-engdiff-glass-card:hover {
    background: #1F6F5Cce;
}

/* Icon bubble inside glass card */
.ux-engdiff-glass-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ux-engdiff-glass-icon svg {
    width: 17px;
    height: 17px;
    stroke: #ffffff;
    color: #ffffff;
    display: block;
}

.ux-engdiff-glass-card:hover .ux-engdiff-glass-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.ux-engdiff-glass-body {
    flex: 1;
}

.ux-engdiff-glass-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.ux-engdiff-glass-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.55;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.ux-engdiff-trust-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    width: 100% !important;
    pointer-events: all;
    background: none !important;
}

.ux-trust-card {
    background: #1F6F5Cd1 !important;
    backdrop-filter: blur(40px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(40px) saturate(1.8) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 18px 72px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    transition: background 0.3s ease !important;
    cursor: default;
}

.ux-trust-card:hover {
    background: #1F6F5Cef !important;
}

.ux-trust-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.ux-trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    color: #ffffff;
}

.ux-trust-text {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 1024px) {
    .ux-trust-card {
        padding: 15px 30px !important;
    }
}

/* ---------------------------------------------------------
   CTA STRIP ï¿½ white background below the hero
   --------------------------------------------------------- */

.ux-engdiff-body {
    background: #ffffff;
    border-top: 3px solid var(--aoro-primary);
}

.ux-engdiff-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.ux-engdiff-cta-wrap {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ux-engdiff-cta-wrap::before {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--aoro-primary);
    opacity: 0.2;
}

/* Header-style button: solid navy with radius, hover = white ghost */
/* CTA button ï¿½ lives inside the hero on the dark image */
.ux-engdiff-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--aoro-primary) !important;
    padding: 13px 32px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    margin-top: 4px;
}

.ux-engdiff-cta:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

/* ------- Responsive ------- */
@media (max-width: 1200px) {
    .ux-engdiff-hero {
        height: 700px;
    }

    .ux-engdiff-glass-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ux-engdiff-hero {
        height: auto;
        min-height: 400px;
        /* Disable fixed attachment on mobile — causes rendering bugs on iOS */
        background-attachment: scroll;
    }

    .ux-engdiff-hero-overlay {
        position: absolute;
        height: 100%;
    }

    .ux-engdiff-hero-text {
        position: relative;
        z-index: 2;
        padding: 40px 20px 30px;
        max-width: 100%;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
    }

    .ux-engdiff-glass-row {
        position: relative;
        z-index: 2;
        grid-template-columns: repeat(2, 1fr);
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        bottom: 0;
    }

    .ux-engdiff-headline {
        font-size: 26px !important;
    }

    .ux-engdiff-glass-card {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 20px 15px;
    }

    .ux-engdiff-glass-card:nth-child(even) {
        border-right: none;
    }

    .ux-engdiff-cta-wrap {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ux-engdiff-hero-text {
        padding: 32px 16px 20px;
    }

    .ux-engdiff-headline {
        font-size: 22px !important;
    }

    .ux-engdiff-glass-row {
        grid-template-columns: 1fr;
    }

    .ux-engdiff-glass-card {
        border-right: none;
    }

    .ux-engdiff-cta {
        width: 100%;
        justify-content: center;
    }

    .ux-client-exp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------------------------------------------------------------
   6. AORO SOL MONITORING  Split Panel Design
   Dark left (image + stats) / White right (content + bullets)
   --------------------------------------------------------------- */

.ux-solmon-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    display: grid;
    grid-template-columns: 42% 58%;
    /* Reduced left panel dominance */
    min-height: 520px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ux-solmon-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        grid-template-columns: 1fr;
    }
}

/* -- LEFT: dark image panel -- */
.ux-solmon-left {
    position: relative;
    background-color: #0b1a2e;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-end;
    min-height: 480px;
    overflow: hidden;
}

.ux-solmon-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 20, 38, 0.9) 0%, rgba(31, 111, 92, 0.5) 100%);
    z-index: 1;
}

.ux-solmon-left-inner {
    position: relative;
    z-index: 2;
    padding: 60px 48px 40px;
    /* Adjusted padding */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
}

.ux-solmon-badge {
    align-self: flex-start;
}

/* -- Stats row -- */
.ux-solmon-stats {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 20px 0;
}

.ux-solmon-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ux-solmon-stat:last-child {
    border-right: none;
}



.ux-solmon-stat-value {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.ux-solmon-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* -- RIGHT: white content panel -- */
.ux-solmon-right {
    background: #ffffff;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--aoro-primary);
}

.ux-solmon-right-inner {
    padding: 72px 72px;
    /* Increased padding for better hierarchy */
    max-width: 640px;
}

.ux-solmon-headline {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f1d33 !important;
    line-height: 1.2 !important;
    margin: 0 0 18px 0 !important;
    letter-spacing: -0.5px;
}

.ux-solmon-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

/* -- Energy Monitoring Widget -- */
.ux-solmon-widget {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding: 20px;
    background: #f8faff;
    border: 1px solid #dde7f5;
    border-radius: 14px;
    overflow: hidden;
}

/* LIVE badge */
.ux-solmon-widget-live {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: 0.8px;
}

.ux-solmon-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    animation: solmon-pulse-dot 1.6s ease-in-out infinite;
}

@keyframes solmon-pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Gauge circle */
.ux-solmon-widget-gauge {
    flex-shrink: 0;
}

.ux-solmon-ring-svg {
    width: 96px;
    height: 96px;
    transform: rotate(-90deg);
}

.ux-solmon-ring-track {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 8;
}

.ux-solmon-ring-fill {
    fill: none;
    stroke: url(#ringGrad);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 276.46;
    /* 2pï¿½44 */
    stroke-dashoffset: 276.46;
    animation: solmon-ring-fill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes solmon-ring-fill {
    to {
        stroke-dashoffset: 60.82;
    }

    /* 276.46 ï¿½ (1 - 0.78) */
}

.ux-solmon-ring-pct {
    fill: #1F6F5C;
    font-size: 20px;
    font-weight: 900;
    text-anchor: middle;
    dominant-baseline: middle;
    transform: rotate(90deg) translateX(55px) translateY(-55px);

    letter-spacing: -0.5px;
}

.ux-solmon-ring-lbl {
    fill: #94a3b8;
    font-size: 8.5px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
    transform: rotate(90deg) translateX(67px) translateY(-55px);

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right side */
.ux-solmon-widget-right {
    flex: 1;
    min-width: 0;
}

/* Chart */
.ux-solmon-widget-chart-wrap {
    margin-bottom: 14px;
}

.ux-solmon-widget-chart-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ux-solmon-chart-svg {
    width: 100%;
    height: 48px;
    display: block;
}

.ux-solmon-chart-area {
    fill: url(#chartAreaGrad);
}

.ux-solmon-chart-line {
    fill: none;
    stroke: #1F6F5C;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: solmon-chart-draw 2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.ux-solmon-chart-dot {
    fill: #1F6F5C;
    opacity: 0;
    animation: solmon-dot-appear 0.3s ease 2.5s forwards;
}

@keyframes solmon-chart-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes solmon-dot-appear {
    to {
        opacity: 1;
    }
}

/* Metrics */
.ux-solmon-widget-metrics {
    display: flex;
    gap: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.ux-solmon-widget-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 14px;
    border-right: 1px solid #e2e8f0;
}

.ux-solmon-widget-metric:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 14px;
}

.ux-solmon-widget-metric:nth-child(2) {
    padding-left: 14px;
}

.ux-solmon-wm-val {
    font-size: 15px;
    font-weight: 800;
    color: #1F6F5C;
    line-height: 1;
    letter-spacing: -0.3px;
}

.ux-solmon-wm-green {
    color: #16a34a;
}

.ux-solmon-wm-lbl {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}



/* -- Bullet list -- */
.ux-solmon-bullets {
    list-style: none;
    margin: 0 0 36px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ux-solmon-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ux-solmon-bullet-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--aoro-primary);
    display: flex;
}

.ux-solmon-bullet-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--aoro-primary);
    display: block;
}

.ux-solmon-bullet-text {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

/* -- Link -- */
.ux-solmon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--aoro-primary) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 2px solid var(--aoro-primary);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.ux-solmon-link-text {
    display: inline-block;
}

.ux-solmon-link-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.ux-solmon-link:hover {
    opacity: 0.75;
}

.ux-solmon-link:hover .ux-solmon-link-arrow {
    transform: translateX(6px);
    opacity: 1;
}

.ux-solmon-footer-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ux-solmon-footer-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 4px;
}

.ux-solmon-footer-text {
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
}

/* ------- Responsive ------- */
@media (max-width: 1024px) {
    .ux-solmon-container {
        grid-template-columns: 1fr;
    }

    .ux-solmon-left {
        min-height: 360px;
    }

    .ux-solmon-right {
        border-left: none;
        border-top: 3px solid var(--aoro-primary);
    }

    .ux-solmon-right-inner {
        padding: 48px 40px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .ux-solmon-left-inner {
        padding: 36px 24px;
    }

    .ux-solmon-stats {
        flex-direction: column;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .ux-solmon-stat {
        border-right: none;
        padding: 0 0 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ux-solmon-stat:last-child {
        border-bottom: none;
        padding: 0;
    }

    .ux-solmon-stat:not(:first-child):not(:last-child) {
        padding-left: 0;
    }

    .ux-solmon-stat-value {
        font-size: 28px;
    }

    .ux-solmon-right-inner {
        padding: 36px 24px;
    }

    .ux-solmon-headline {
        font-size: 26px !important;
    }
}


/* ================================================================
   8. WHY HOMEOWNERS CHOOSE AORO ï¿½ Custom Editorial Layout
   ================================================================ */

.ux-wcu-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafb;

    padding: 40px 0;
    overflow: hidden;
}

/* Vertical accent bar ï¿½ left edge */
.ux-wcu-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1F6F5C 0%, #071426 100%);
    z-index: 2;
}

.ux-wcu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* -- Left: Content -- */
.ux-wcu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Headline with Logo Badge */
.ux-wcu-headline {
    font-size: clamp(28px, 3vw, 42px) !important;
    font-weight: 900 !important;
    color: #0a1223 !important;
    margin: 0 0 40px 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.8px;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
}

.ux-wcu-logo-badge {
    display: inline-flex;
    align-items: center;
    background: #1F6F5C;
    padding: 10px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(31, 111, 92, 0.2);
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.ux-wcu-logo-badge:hover {
    transform: translateY(-2px);
}

.ux-wcu-logo-badge img {
    height: 22px !important;
    width: auto !important;
    display: block !important;
}

/* -- Numbered Feature List -- */
.ux-wcu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

.ux-wcu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px !important;
    font-weight: 600;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid rgba(31, 111, 92, 0.07);
    transition: all 0.3s ease;
}

.ux-wcu-item:last-child {
    border-bottom: none;
}

.ux-wcu-item:hover {
    padding-left: 6px;
    color: var(--aoro-primary, #1F6F5C);
}

/* Number badge */
.ux-wcu-num {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--aoro-primary, #1F6F5C);
    opacity: 0.35;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    width: 22px;
    transition: opacity 0.3s ease;
}

.ux-wcu-item:hover .ux-wcu-num {
    opacity: 1;
}

.ux-wcu-text {
    flex: 1;
}

/* -- CTA Button ï¿½ pill, matches site header -- */
.ux-wcu-cta-wrapper {
    margin-top: 8px;
}

.ux-wcu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: var(--aoro-primary, #1F6F5C) !important;
    color: #ffffff !important;
    padding: 15px 36px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: 2px solid var(--aoro-primary, #1F6F5C) !important;
    box-shadow: 0 8px 28px rgba(31, 111, 92, 0.25) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
}

.ux-wcu-btn::after {
    content: '?';
    font-size: 16px;
    font-weight: 400;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.ux-wcu-btn:hover {
    background: transparent !important;
    color: var(--aoro-primary, #1F6F5C) !important;
    border-color: var(--aoro-primary, #1F6F5C) !important;
    box-shadow: none !important;
    transform: translateY(-2px) !important;
}

.ux-wcu-btn:hover::after {
    transform: translateX(5px);
}

/* -- Right: Image Panel with Blur Extension -- */
.ux-wcu-media-wrap {
    position: relative;
    z-index: 5;
}

/* Blurred background image ï¿½ extends to the left */
.ux-wcu-blur {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: -40px;
    right: 20px;
    background-size: cover;
    background-position: center;
    filter: blur(28px) saturate(1.3);
    opacity: 0.35;
    border-radius: 24px;
    z-index: 0;
    transform: scale(1.05);
    pointer-events: none;
}

/* Main image ï¿½ square */
.ux-wcu-media {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.ux-wcu-media:hover img {
    transform: scale(1.04);
}

.ux-wcu-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 !important;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle cinematic gradient overlay */
.ux-wcu-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            transparent 50%,
            rgba(10, 18, 35, 0.25) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

/* Glassmorphism trust badge */
.ux-wcu-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 16px 8px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.ux-wcu-img-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: wcu-pulse 2s ease-in-out infinite;
}

@keyframes wcu-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

.ux-wcu-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #071426 0%, #0B1F3B 30%, #123C4A 65%, #1F6F5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .ux-wcu-container {
        padding: 60px 0;
    }

    .ux-wcu-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 28px;
    }

    .ux-wcu-media-wrap {
        order: -1;
    }

    .ux-wcu-media {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .ux-wcu-blur {
        left: -20px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .ux-wcu-container {
        padding: 48px 0;
    }

    .ux-wcu-inner {
        padding: 0 16px;
        gap: 32px;
    }

    .ux-wcu-accent-bar {
        display: none;
    }

    .ux-wcu-blur {
        display: none;
    }

    .ux-wcu-media {
        border-radius: 12px;
    }

    .ux-wcu-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .ux-wcu-container {
        padding: 36px 0;
    }

    .ux-wcu-headline {
        font-size: 24px !important;
    }

    .ux-wcu-item {
        font-size: 14px !important;
    }
}

/* ---------------------------------------------------------------
   9. INSIGHTS / BLOG PREVIEW ï¿½ Ultra-Modern Cinematic Grid
   --------------------------------------------------------------- */

.ux-blog-container {
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;

    overflow: hidden;
}

.ux-blog-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* -- Header -- */
.ux-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.ux-blog-title {
    font-size: 34px !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    margin: 0 !important;
    letter-spacing: -0.5px;
    line-height: 1.15 !important;
}

.ux-blog-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--aoro-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.ux-blog-cta-header:hover {
    opacity: 0.7;
}

.ux-blog-cta-header .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ux-blog-cta-header:hover .dashicons {
    transform: translateX(4px);
}

/* -- Grid -- */
.ux-blog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* -- Card -- */
.ux-blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px -4px rgba(31, 111, 92, 0.12);
}

/* -- Image -- */
.ux-blog-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.ux-blog-img-wrapper img {
    width: 100%;
    border-radius: 0 !important;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-blog-card:hover .ux-blog-img-wrapper img {
    transform: scale(1.05);
}

.ux-blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 20, 38, 0.6) 0%, rgba(31, 111, 92, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Category Badge */
.ux-blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--aoro-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* -- Content -- */
.ux-blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ux-blog-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ux-blog-post-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.35 !important;
    transition: color 0.3s ease;
}

.ux-blog-card:hover .ux-blog-post-title {
    color: var(--aoro-primary) !important;
}

.ux-blog-excerpt {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}



.ux-blog-read-more {
    font-size: 13px;
    font-weight: 800;
    color: var(--aoro-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.ux-blog-read-more .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ux-blog-card:hover .ux-blog-read-more .dashicons {
    transform: translateX(4px);
}

.ux-blog-mobile-cta {
    display: none;
    text-align: center;
    margin-top: 30px;
}

/* ------- Responsive ------- */
@media (max-width: 1400px) {
    .ux-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .ux-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ux-blog-container {
        padding: 50px 0;
    }

    .ux-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 30px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .ux-blog-cta-header {
        display: none;
        /* Hide on mobile initially */
    }

    .ux-blog-mobile-cta {
        display: block;
        /* Show at bottom on mobile */
    }

    .ux-blog-btn {
        display: inline-block;
        background: var(--aoro-primary);
        color: #fff !important;
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .ux-blog-grid {
        grid-template-columns: 1fr;
    }

    .ux-blog-inner {
        padding: 0 16px;
    }

    .ux-blog-title {
        font-size: 28px !important;
    }
}




/* ---------------------------------------------------------------
   10. FAQ SECTION  Ultra-Energetic AORO Design
   --------------------------------------------------------------- */

.ux-faq-container {
    padding: 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;
    overflow: hidden;
}

.ux-faq-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.ux-faq-headline {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    margin: 0 0 50px 0 !important;
    text-align: center;
    letter-spacing: -0.8px;
    line-height: 1.1 !important;
    text-transform: uppercase;
}

.ux-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ux-faq-item {
    background: #ffffff;
    border-top: 2px solid #1F6F5C;
    border-bottom: 2px solid #1F6F5C;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: none !important;
}

/* Energetic animated border effect */
.ux-faq-item.active {
    border-top-color: #1F6F5C;
    border-bottom-color: #1F6F5C;
    animation: ux-faq-border-shimmer 2s infinite linear;
}

@keyframes ux-faq-border-shimmer {
    0% {
        border-top-color: #1F6F5C;
        border-bottom-color: #1F6F5C;
    }

    50% {
        border-top-color: #1F6F5C;
        border-bottom-color: #1F6F5C;
    }

    100% {
        border-top-color: #1F6F5C;
        border-bottom-color: #1F6F5C;
    }
}

/* Additional energy glow on active */
.ux-faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 111, 92, 0.05) 0%, transparent 100%);
    animation: ux-faq-energy-sweep 3s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ux-faq-energy-sweep {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ux-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(31, 111, 92, 0.1);
}

.ux-faq-item.active {
    border-top-width: 3px;
    border-bottom-width: 3px;
    box-shadow: 0 20px 25px -5px rgba(31, 111, 92, 0.12);
}

.ux-faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    outline: none;
    user-select: none;
    position: relative;
    z-index: 2;
}

.ux-faq-question {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    padding-right: 40px;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ux-faq-item.active .ux-faq-toggle {
    background: rgba(31, 111, 92, 0.03);
}

.ux-faq-toggle:hover .ux-faq-question,
.ux-faq-item.active .ux-faq-question {
    color: var(--aoro-primary);
}

.ux-faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(31, 111, 92, 0.05);
    color: var(--aoro-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.ux-faq-item.active .ux-faq-icon {
    background: var(--aoro-primary);
    color: #ffffff;
    transform: rotate(135deg);
}

.ux-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.ux-faq-content-inner {
    padding: 10px 20px 30px 20px;
}

.ux-faq-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.ux-faq-question::before {
    content: '';
    margin-right: 12px;
    font-size: 14px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.ux-faq-item.active .ux-faq-question::before {
    opacity: 1;
    color: var(--aoro-primary);
    text-shadow: 0 0 8px rgba(31, 111, 92, 0.3);
}

@media (max-width: 768px) {
    .ux-faq-container {
        padding: 30px 0;
    }

    .ux-faq-inner {
        padding: 0 15px;
    }

    .ux-faq-toggle {
        padding: 15px;
    }

    .ux-faq-headline {
        font-size: 28px !important;
    }

    .ux-faq-question {
        font-size: 15px;
    }
}

/* ---------------------------------------------------------------
   11. CLOSING CTA  Premium Empire Glass Design
   --------------------------------------------------------------- */

.ux-ccta-container {
    padding: 100px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;
    /* Clean light background */
    overflow: hidden;
}

.ux-ccta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.ux-ccta-glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(31, 111, 92, 0.08);
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.ux-ccta-headline {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin: 0 0 45px 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.ux-ccta-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.ux-ccta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 42px;
    background: #ffffff;
    color: #1F6F5C;
    border: 2px solid #1F6F5C;
    border-radius: 100px;
    /* Pill shape */
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ux-ccta-btn:hover {
    background: #1F6F5C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 111, 92, 0.15);
}

.ux-ccta-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ux-ccta-btn:hover .ux-ccta-btn-icon {
    transform: translateX(5px);
}

.ux-ccta-subtext {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ux-ccta-container {
        padding: 60px 0;
    }

    .ux-ccta-glass-card {
        padding: 50px 30px;
    }

    .ux-ccta-headline {
        font-size: 32px !important;
    }

    .ux-ccta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
    }
}

.ux-wcu-btn:hover svg {
    transform: translateX(5px) !important;
}

/* ---------------------------------------------------------------
   12. FINAL CLOSING CTA  Compact, Full-Width, Dark Theme
   --------------------------------------------------------------- */

.ux-aoro-ccta-final {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 70px 0;
    background: linear-gradient(135deg, #050f0c 0%, #08150f 25%, #0d2219 55%, #1F6F5C 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

/* Subtle energy grid background */
.ux-aoro-ccta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Radial glow */
.ux-aoro-ccta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(160, 255, 212, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ux-aoro-ccta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Keep it compact */
    margin: 0 auto;
    padding: 0 30px;
}

.ux-aoro-ccta-headline {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 35px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px;
}

.ux-aoro-ccta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.ux-aoro-ccta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1F6F5C;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ux-aoro-ccta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #0f172a;
}

.ux-aoro-ccta-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon {
    transform: translateX(4px);
}

.ux-aoro-ccta-fast-resp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.ux-aoro-ccta-fast-resp svg {
    opacity: 0.9;
    color: #ffffff;
}

.ux-aoro-ccta-subtext {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .ux-aoro-ccta-final {
        padding: 50px 0;
    }

    .ux-aoro-ccta-headline {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }

    .ux-aoro-ccta-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* === User Requested Container Overrides === */

.solar-inst-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #f8fafc !important;
    overflow-x: clip !important;
    padding: 20px 20px !important;
    box-sizing: border-box !important;
}

.ux-wcu-container {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: white !important;
    padding: 40px 0 !important;
    overflow: hidden !important;
}

.ux-faq-container {
    padding: 30px 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: -25px;
    background: #f8fafc !important;
    overflow: hidden !important;
}

/* === Reverting to Glass Card CTA Design === */

.ux-aoro-ccta-final {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    background: #050f0c;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    z-index: 10;
}

.ux-aoro-ccta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.ux-aoro-ccta-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(2);
    -webkit-backdrop-filter: blur(25px) saturate(2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.ux-aoro-ccta-headline {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #1F6F5C !important;
    margin: 0 0 35px 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -1px;
}

.ux-aoro-ccta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

/* User Button styling */
.ux-aoro-ccta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1F6F5C;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    border: 2px solid #1F6F5C;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(31, 111, 92, 0.4);
}

.ux-aoro-ccta-button:hover {
    background: #ffffff;
    color: #1F6F5C;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(31, 111, 92, 0.2);
}

.ux-aoro-ccta-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon {
    transform: translateX(4px);
}

.ux-aoro-ccta-subtext {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .ux-aoro-ccta-final {
        padding: 50px 20px;
    }

    .ux-aoro-ccta-content {
        padding: 40px 20px;
    }

    .ux-aoro-ccta-headline {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }

    .ux-aoro-ccta-button {
        padding: 16px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* === Elementor Override for Closing CTA Button === */

a.ux-aoro-ccta-button {
    color: #ffffff !important;
    background: #1F6F5C !important;
    border: 2px solid #1F6F5C !important;
}

a.ux-aoro-ccta-button:hover {
    background: #ffffff !important;
    color: #1F6F5C !important;
}

a.ux-aoro-ccta-button:hover svg {
    stroke: #1F6F5C !important;
}

/* === Reliable Premium Background for CTA === */
.ux-aoro-ccta-final {
    background: radial-gradient(circle at 50% 100%, #0B3B2F 0%, #061208 100%) !important;
    background-size: cover !important;
    position: relative;
}

.ux-aoro-ccta-overlay {
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    opacity: 1 !important;
}

/* Consolidated CCTA definition handled below */

/* === Header Blue Tints requested by User === */
header#masthead,
.elementor-location-header,
.site-header {
    background: radial-gradient(circle at 50% 100%, rgba(11, 59, 47, 0.39) 0%, rgba(15, 23, 42, 0.49) 100%) !important;
}

header.sticky-header-active,
.elementor-sticky--active {
    background: radial-gradient(circle at 50% 100%, rgba(11, 59, 47, 0.55) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
    backdrop-filter: blur(25px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(25px) saturate(1.8) !important;
}

/* === ULTRA PREMIUM CLOSING CTA DESIGN — no background-image (WP Rocket fix) === */
.ux-aoro-ccta-final {
    background: #050f0c !important;
    background-attachment: scroll !important;
    padding: 120px 0 !important;
    position: relative;
}

/* Deep AORO Green overlay — NO blue */
.ux-aoro-ccta-overlay {
    background: linear-gradient(256deg, rgba(5, 14, 11, 0.7) 0%, rgba(8, 22, 17, 0.82) 35%, rgba(13, 34, 25, 0.93) 65%, rgba(31, 111, 92, 0.55) 100%) !important;
    backdrop-filter: blur(8px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(8px) saturate(1.2) !important;
    opacity: 1 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* The actual glass card containing content */
.ux-aoro-ccta-content {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(2) !important;
    -webkit-backdrop-filter: blur(20px) saturate(2) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 70px 50px !important;
}

/* Make text pop */
.ux-aoro-ccta-headline {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.ux-aoro-ccta-subtext {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Ultra Button */
a.ux-aoro-ccta-button {
    background: #ffffff !important;
    color: #1F6F5C !important;
    border: none !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 20px 50px !important;
    font-size: 17px !important;
}

a.ux-aoro-ccta-button:hover {
    background: #f8fafc !important;
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* === ULTRA-COMPACT & SITE-ALIGNED REDESIGN === */

.ux-aoro-ccta-final {
    padding: 60px 0 !important;
    /* Significantly reduced vertical padding */
    min-height: auto !important;
}

.ux-aoro-ccta-content {
    max-width: 1100px !important;
    /* Wider for a more horizontal, sleek feel */
    padding: 40px 60px !important;
    /* Compact but spacious horizontally */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
}

.ux-aoro-ccta-headline {
    font-size: 34px !important;
    /* Slightly smaller, more refined */
    margin-bottom: 0 !important;
    text-shadow: none !important;
    /* Cleaner look */
    letter-spacing: -0.8px !important;
}

.ux-aoro-ccta-actions {
    margin-bottom: 0 !important;
}

a.ux-aoro-ccta-button {
    padding: 16px 40px !important;
    /* More balanced button size */
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.ux-aoro-ccta-subtext {
    font-size: 13px !important;
    margin-top: -10px !important;
    opacity: 0.7 !important;
}

@media (min-width: 1024px) {
    .ux-aoro-ccta-content {
        flex-direction: row !important;
        /* Switch to horizontal layout on desktop */
        justify-content: space-between !important;
        text-align: left !important;
    }

    .ux-aoro-ccta-headline {
        max-width: 50% !important;
        margin-bottom: 0 !important;
    }

    .ux-aoro-ccta-actions-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .ux-aoro-ccta-final {
        padding: 40px 20px !important;
    }

    .ux-aoro-ccta-content {
        padding: 40px 30px !important;
        gap: 25px !important;
    }

    .ux-aoro-ccta-headline {
        font-size: 26px !important;
    }
}

/* === CTA Layout Refinements: Left-aligned Text + Divider === */

.ux-aoro-ccta-content {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    text-align: left !important;
}

.ux-aoro-ccta-left {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ux-aoro-ccta-divider {
    width: 2px !important;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    display: block !important;
}

.ux-aoro-ccta-headline {
    font-size: 32px !important;
    margin: 0 !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
}

.ux-aoro-ccta-subtext {
    margin-top: 0 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
}

/* Button Hover Refinement: Solid Border + White Font */
a.ux-aoro-ccta-button:hover {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile Adjustments for Divider & Layout */
@media (max-width: 1024px) {
    .ux-aoro-ccta-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .ux-aoro-ccta-divider {
        width: 60px !important;
        height: 2px !important;
        margin: 0 auto !important;
    }

    .ux-aoro-ccta-left {
        width: 100% !important;
    }
}

/* === PIXEL-PERFECT BUTTON INTERACTION REFINE === */

a.ux-aoro-ccta-button {
    border: 2px solid transparent !important;
    /* Initial transparent border to prevent shift */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
    transform: none !important;
    /* Force no initial transform */
}

a.ux-aoro-ccta-button:hover {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    /* Solid border on hover */
    transform: none !important;
    /* No scaling or movement */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure SVG icon turns white on hover */
a.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon svg {
    stroke: #ffffff !important;
}

/* Remove any lingering SVG movement if applied previously */
a.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon {
    transform: none !important;
}

/* === COMPACT HORIZONTAL CTA (REFINED) === */
@media (min-width: 1024px) {
    .ux-aoro-ccta-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        padding: 30px 60px !important;
    }

    .ux-aoro-ccta-left {
        flex: 1 !important;
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .ux-aoro-ccta-headline {
        white-space: nowrap !important;
        max-width: none !important;
        width: auto !important;
        margin: 0 !important;
    }

    .ux-aoro-ccta-divider {
        height: 60px !important;
        width: 2px !important;
        margin: 0 40px !important;
        display: block !important;
    }
}

/* === Button Text Refinement: Larger & Single Line === */
a.ux-aoro-ccta-button {
    white-space: nowrap !important;
    font-size: 18px !important;
    /* Increased font size */
    padding: 18px 45px !important;
    /* Adjusted padding for larger text */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: max-content !important;
}

.ux-aoro-ccta-btn-text {
    line-height: 1 !important;
}

/* === Button Hover: Glassmorphism Blur Fill === */
a.ux-aoro-ccta-button:hover {
    background: rgba(31, 111, 92, 0.3) !important;
    /* Semi-transparent blue fill */
    backdrop-filter: blur(15px) saturate(1.8) !important;
    /* Strong blur to mask background */
    -webkit-backdrop-filter: blur(15px) saturate(1.8) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Ensure the text and icon stays sharp over the blur */
a.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-text,
a.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon svg {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* === Button Hover: Intense Opaque Blur Fill === */
a.ux-aoro-ccta-button:hover {
    backdrop-filter: blur(20px) saturate(2) !important;
    -webkit-backdrop-filter: blur(20px) saturate(2) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* === ULTIMA COREC?IE: Lipire Footer + Simetrie Card === */

/* Target specific Elementor section to force 0 gaps */
.elementor-element-f5ea2bc {
    --widgets-spacing: 0px 0px !important;
    --widgets-spacing-row: 0px !important;
    --widgets-spacing-column: 0px !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Ensure container doesn't add padding-bottom */
.elementor-element-f5ea2bc .elementor-widget-container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Symmetrical Padding for the CTA Card itself */
.ux-aoro-ccta-final {
    padding: 70px 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}


/* === USER REQUESTED FIXES (Glass Hover & Spacing) === */

.ux-aoro-ccta-actions-wrap {
    transition: all 0.3s ease !important;
    border-radius: 50px !important;
    padding: 10px !important;
    display: inline-block !important;
}




/* For the ready to explore section spacing */
.elementor-element:has(.ux-aoro-ccta-final),
.elementor-element-f5ea2bc {
    --widgets-spacing: 0 !important;
    --widgets-spacing-row: 0 !important;
    --widgets-spacing-column: 0 !important;
}

@media (min-width: 1024px) {
    .ux-aoro-ccta-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        padding: 30px 60px !important;
        border-radius: 0 !important;
    }
}



/* === REFINING BUTTON HOVER === */
.ux-aoro-ccta-actions-wrap {
    transition: all 0.3s ease !important;
    border-radius: 50px !important;
    padding: 10px !important;
    display: inline-block !important;
}







/* === CCTA FINAL PADDING OVERRIDE (with !important) === */
.ux-aoro-ccta-final {
    padding: 70px 0 !important;
    margin-bottom: -30px !important;
    margin-top: 0 !important;
}

/* === CCTA ACTIONS HOVER: blur + white text + white border only === */
.ux-aoro-ccta-actions.ux-anim.ux-in:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

.ux-aoro-ccta-actions.ux-anim.ux-in:hover .ux-aoro-ccta-button,
.ux-aoro-ccta-actions.ux-anim.ux-in:hover a.ux-aoro-ccta-button {
    background: transparent !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

.ux-aoro-ccta-actions.ux-anim.ux-in:hover .ux-aoro-ccta-btn-text {
    color: #ffffff !important;
}

.ux-aoro-ccta-actions.ux-anim.ux-in:hover .ux-aoro-ccta-btn-icon svg {
    stroke: #ffffff !important;
}


/* === CCTA BUTTON CLEAN RESET + SIMPLE HOVER === */

/* Reset complet buton - border transparent 2px ca sa nu sara layout-ul */
.ux-aoro-ccta-button,
a.ux-aoro-ccta-button {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: 2px solid transparent !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Icon SVG */
.ux-aoro-ccta-button .ux-aoro-ccta-btn-icon svg,
a.ux-aoro-ccta-button .ux-aoro-ccta-btn-icon svg {
    stroke: #ffffff !important;
    transition: stroke 0.25s ease !important;
}

/* Hover - 2px white border + glass fill */
.ux-aoro-ccta-actions.ux-anim.ux-in:hover .ux-aoro-ccta-button,
.ux-aoro-ccta-actions.ux-anim.ux-in:hover a.ux-aoro-ccta-button,
.ux-aoro-ccta-button:hover,
a.ux-aoro-ccta-button:hover {
    border: 2px solid #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon svg,
a.ux-aoro-ccta-button:hover .ux-aoro-ccta-btn-icon svg {
    stroke: #ffffff !important;
}


/* ================================================================
   BATCH FIXES 2026-02-24
   ================================================================ */

/* 1. CTA content max-width fix */
@media (min-width: 1024px) {
    .ux-aoro-ccta-content {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* 2. CTA Button - clean base, no flicker */
.ux-aoro-ccta-button,
a.ux-aoro-ccta-button {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: 3px solid transparent !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: none !important;
    /* No transition on all - only specific props to avoid flicker */
    transition: border-color 0.25s ease, background 0.25s ease !important;
    will-change: border-color, background !important;
}

.ux-aoro-ccta-button .ux-aoro-ccta-btn-icon svg,
a.ux-aoro-ccta-button .ux-aoro-ccta-btn-icon svg {
    stroke: #ffffff !important;
}

.ux-aoro-ccta-button:hover,
a.ux-aoro-ccta-button:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

/* 3. Remove ::after from .ux-wcu-btn */
.ux-wcu-btn::after {
    display: none !important;

}

.ux-wcu-btn:hover::after {
    display: none !important;
}

/* 4. WCU numbered list (01-05) redesign */
.ux-wcu-list {
    list-style: none !important;
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.ux-wcu-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(31, 111, 92, 0.1) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    transition: color 0.2s ease !important;
}

.ux-wcu-item:first-child {
    border-top: 1px solid rgba(31, 111, 92, 0.1) !important;
}

.ux-wcu-item:hover {
    color: #1F6F5C !important;
}

.ux-wcu-num {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    color: #1F6F5C !important;
    opacity: 0.5 !important;
    min-width: 26px !important;
    line-height: 1 !important;
    font-variant-numeric: tabular-nums !important;
}


/* ================================================================
   WCU LIST 01-05  PREMIUM AORO REDESIGN
   ================================================================ */

/* Container */
.ux-wcu-list {
    list-style: none !important;
    margin: 8px 0 36px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Each item  glass card with left accent */
.ux-wcu-item {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 5px 10px !important;
    border: none !important;
    border-left: 3px solid transparent !important;
    border-radius: 10px !important;
    background: rgba(31, 111, 92, 0.03) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    letter-spacing: 0.01em !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: default !important;
    position: relative !important;
}

.ux-wcu-item:first-child {
    border-top: none !important;
}

/* Hover  slide accent + glass glow */
.ux-wcu-item:hover {
    background: rgba(31, 111, 92, 0.07) !important;
    border-left-color: #1F6F5C !important;
    color: #1F6F5C !important;
    transform: translateX(4px) !important;
    box-shadow: 0 2px 12px rgba(31, 111, 92, 0.08) !important;
}

/* Number badge */
.ux-wcu-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #071426 0%, #0B1F3B 30%, #123C4A 65%, #1F6F5C 100%) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    opacity: 1 !important;
    line-height: 1 !important;
    font-variant-numeric: tabular-nums !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(31, 111, 92, 0.2) !important;
    transition: all 0.3s ease !important;
}

/* Hover on item -> badge pops */
.ux-wcu-item:hover .ux-wcu-num {
    background: linear-gradient(135deg, #071426 0%, #0B1F3B 30%, #123C4A 65%, #1F6F5C 100%) !important;
    box-shadow: 0 4px 16px rgba(31, 111, 92, 0.3) !important;
    transform: scale(1.08) !important;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .ux-wcu-item {
        padding: 14px 16px !important;
        gap: 14px !important;
        font-size: 14px !important;
    }

    .ux-wcu-num {
        min-width: 30px !important;
        height: 30px !important;
        font-size: 11px !important;
    }
}

/* ================================================================
   NEW SECTION: SOLAR SAVINGS (Ultra Premium Refinement)
   ================================================================ */

.ux-solar-savings-container {
    padding: 40px 0;
    /* Compact: Reduced even more */
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.ux-solar-savings-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Reveal Animations --- */
.ux-reveal-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ux-reveal-section.ux-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ux-reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ux-reveal-card.ux-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ux-solar-savings-header {
    text-align: center;
    margin-bottom: 40px;
}

.ux-solar-savings-title {
    font-size: 40px;
    font-weight: 800;
    color: #1F6F5C;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ux-solar-savings-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.ux-solar-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* --- The Card: Ultra Design --- */
.ux-solar-card {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    /* Constant 2px width to prevent jumpy effect */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ux-solar-card:hover {
    transform: translateY(-8px);
    border-color: #1F6F5C;
    /* Just change color for an instant, clean effect */
    box-shadow: 0 20px 40px rgba(31, 111, 92, 0.08);
}

.ux-solar-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.ux-solar-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(0deg, rgba(7, 20, 38, 0.8) 0%, transparent 100%);
}

.ux-solar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    /* Instant radius and no movement */
    border-radius: 0 !important;
}

.ux-solar-card:hover .ux-solar-card-image img {
    transform: none !important;
    border-radius: 0 !important;
}

.ux-solar-card-content {
    padding: 15px;
    /* Compact as requested */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Slightly more than 5 for readability but tight */
    z-index: 2;
    margin-top: -10px;
}

.ux-solar-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.ux-solar-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ux-solar-stat-label {
    font-size: 9px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ux-solar-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.highlight-annual .ux-solar-stat-value {
    color: #64748b;
    font-size: 18px;
    font-weight: 700;
}

.highlight-annual .ux-solar-stat-value small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.highlight-lifetime {
    background: rgba(16, 185, 129, 0.06);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: 5px;
    margin-bottom: 5px;
}

.highlight-lifetime .ux-solar-stat-value {
    color: #059669;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.ux-solar-availability-note {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
}

.ux-solar-availability-note p {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
    text-transform: none;
}

/* --- Footer & CTA --- */
.ux-solar-footer {
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.ux-solar-explanatory-text {
    font-size: 14px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

.ux-solar-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ux-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.ux-trust-badge i {
    font-size: 18px;
    color: #1F6F5C;
}

.ux-solar-cta {
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.ux-solar-cta-question {
    font-size: 22px;
    font-weight: 800;
    color: #1F6F5C;
    margin-bottom: 15px;
}

.ux-solar-cta-button {
    display: inline-block;
    background: #1F6F5C !important;
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #1F6F5C !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-solar-cta-button:hover {
    background: transparent !important;
    color: #1F6F5C !important;
    border: 2px solid #1F6F5C !important;
}

.ux-solar-cta-note {
    font-size: 15px;
    /* Requested value */
    font-weight: 500;
    /* Requested value */
    color: #94a3b8;
    margin-top: 15px;
    /* Requested value */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .ux-solar-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ux-solar-savings-container {
        padding: 30px 0;
    }

    .ux-solar-savings-title {
        font-size: 30px;
    }

    .ux-solar-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ux-solar-savings-inner {
        padding: 0 20px;
    }

    .ux-solar-cta {
        padding: 30px 20px;
    }
}

/* ---------------------------------------------------------------
   6ï¸âƒ£ GROUP EXPERIENCE STRIP - Premium Minimal
   --------------------------------------------------------------- */

.ux-group-exp-strip {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
    z-index: 5;
}

.ux-group-exp-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ux-group-exp-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ux-group-exp-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ux-group-exp-val {
    font-size: 32px;
    font-weight: 800;
    color: #1F6F5C;
    line-height: 1;
    letter-spacing: -0.5px;
}

.ux-group-exp-lbl {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ux-group-exp-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.ux-group-exp-text-item {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ux-group-exp-desc {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.ux-group-exp-desc i {
    font-size: 18px;
    color: #1F6F5C;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .ux-group-exp-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ux-group-exp-divider {
        display: none;
    }

    .ux-group-exp-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .ux-group-exp-text-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .ux-group-exp-item {
        flex: 1 1 100%;
    }
}

/* ---------------------------------------------------------------
   7ï¸âƒ£ CLIENT EXPERIENCE - Dashboard + Support Combined
   --------------------------------------------------------------- */

.ux-client-exp-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #050e0a 0%, #0a2218 100%);
    padding: 60px 0 70px;
    overflow: hidden;
    margin-bottom: -25px;
}

/* Ambient blobs */
.ux-client-exp-bg-anim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ux-anim-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}

.ux-anim-blob:nth-child(1) {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(31, 111, 92, 0.22) 0%, transparent 70%);
    top: -120px;
    left: -80px;
    animation: ux-blob-drift 28s infinite alternate ease-in-out;
}

.ux-anim-blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 34, 24, 0.4) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    animation: ux-blob-drift 22s 4s infinite alternate-reverse ease-in-out;
}

@keyframes ux-blob-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

/* Inner 2-column layout */
.ux-client-exp-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* ---- LEFT COLUMN ---- */
.ux-cexp-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Eyebrow label */
.ux-client-exp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 111, 92, 0.15);
    border: 1px solid rgba(31, 111, 92, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5de8b0;
    margin-bottom: 20px;
    width: fit-content;
}

.ux-client-exp-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1F6F5C;
    box-shadow: 0 0 0 3px rgba(31, 111, 92, 0.25);
    animation: ux-pulse-dot 2s infinite;
}

@keyframes ux-pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(31, 111, 92, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(31, 111, 92, 0.08);
    }
}

.ux-client-exp-intro {
    margin-bottom: 28px;
}

.ux-client-exp-intro p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

/* Feature grid - compact 2 col */
.ux-client-exp-features {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 30px;
}

.ux-client-exp-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.028);
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    transition: all 0.3s ease;
}

.ux-client-exp-feature:hover {
    background: rgba(31, 111, 92, 0.1);
    border-color: rgba(31, 111, 92, 0.35);
    transform: translateY(-1px);
}

.ux-client-exp-check {
    width: 17px;
    height: 17px;
    min-width: 17px;
    background: rgba(31, 111, 92, 0.18);
    color: #5de8b0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(31, 111, 92, 0.28);
}

.ux-client-exp-check svg {
    width: 10px;
    height: 10px;
}

.ux-client-exp-ftext {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.2;
}

.ux-client-exp-cta-box {
    display: flex;
}

.ux-client-exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1F6F5C;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-decoration: none;
    border: 2px solid #1F6F5C;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.ux-client-exp-btn:hover {
    background: transparent !important;
    color: #5de8b0 !important;
    border-color: #1F6F5C !important;
    box-shadow: 0 0 22px rgba(31, 111, 92, 0.35) !important;
}

/* ---- RIGHT COLUMN: Solar Energy Orbital Animation ---- */
.ux-cexp-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-solar-vis {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric rings */
.ux-sv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(31, 111, 92, 0.18);
}

.ux-sv-ring-1 {
    width: 360px;
    height: 360px;
    border-color: rgba(31, 111, 92, 0.1);
    animation: ux-spin-cw 60s linear infinite;
    border-style: dashed;
}

.ux-sv-ring-2 {
    width: 255px;
    height: 255px;
    border-color: rgba(31, 111, 92, 0.2);
    animation: ux-spin-ccw 35s linear infinite;
}

.ux-sv-ring-3 {
    width: 155px;
    height: 155px;
    border-color: rgba(31, 111, 92, 0.3);
    animation: ux-spin-cw 20s linear infinite;
}

@keyframes ux-spin-cw {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ux-spin-ccw {
    to {
        transform: rotate(-360deg);
    }
}

/* Glowing core */
.ux-sv-core {
    position: absolute;
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(31, 111, 92, 0.35) 0%, rgba(5, 14, 10, 0.9) 70%);
    border-radius: 50%;
    border: 1px solid rgba(31, 111, 92, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(31, 111, 92, 0.3), 0 0 60px rgba(31, 111, 92, 0.1);
}

.ux-sv-core-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(31, 111, 92, 0.2);
    animation: ux-sv-pulse 3s ease-in-out infinite;
}

@keyframes ux-sv-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.ux-sv-sun-icon {
    width: 28px;
    height: 28px;
    color: #5de8b0;
    animation: ux-spin-cw 12s linear infinite;
    filter: drop-shadow(0 0 6px rgba(93, 232, 176, 0.5));
}

/* Orbiting particles */
.ux-sv-orbit {
    position: absolute;
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ux-sv-orbit-1 {
    width: 155px;
    height: 155px;
    animation: ux-spin-cw 8s linear infinite;
}

.ux-sv-orbit-2 {
    width: 255px;
    height: 255px;
    animation: ux-spin-ccw 14s linear infinite;
}

.ux-sv-orbit-3 {
    width: 360px;
    height: 360px;
    animation: ux-spin-cw 22s linear infinite;
}

.ux-sv-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1F6F5C;
    box-shadow: 0 0 8px rgba(31, 111, 92, 0.8), 0 0 16px rgba(31, 111, 92, 0.3);
}

.ux-sv-orbit-2 .ux-sv-dot {
    background: #5de8b0;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 6px rgba(93, 232, 176, 0.8);
}

.ux-sv-orbit-3 .ux-sv-dot {
    background: rgba(31, 111, 92, 0.6);
    width: 5px;
    height: 5px;
}

/* Floating stat badges */
.ux-sv-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(5, 14, 10, 0.85);
    border: 1px solid rgba(31, 111, 92, 0.3);
    border-radius: 10px;
    padding: 7px 13px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.ux-sv-bval {
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.ux-sv-blbl {
    font-size: 8.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.ux-sv-b1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: ux-float-b 5s 0s ease-in-out infinite;
}

.ux-sv-b2 {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: ux-float-b 5s 1.2s ease-in-out infinite;
}

.ux-sv-b3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: ux-float-b 5s 2.4s ease-in-out infinite;
}

.ux-sv-b4 {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: ux-float-b 5s 3.6s ease-in-out infinite;
}

@keyframes ux-float-b {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

.ux-sv-b2 {
    animation-name: ux-float-b2;
}

.ux-sv-b4 {
    animation-name: ux-float-b4;
}

@keyframes ux-float-b2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

@keyframes ux-float-b4 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

/* Responsive */
@media (max-width: 960px) {
    .ux-client-exp-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 540px;
    }

    .ux-solar-vis {
        width: 280px;
        height: 280px;
    }

    .ux-sv-ring-1 {
        width: 280px;
        height: 280px;
    }

    .ux-sv-ring-2 {
        width: 198px;
        height: 198px;
    }

    .ux-sv-ring-3 {
        width: 120px;
        height: 120px;
    }

    .ux-sv-orbit-1 {
        width: 120px;
        height: 120px;
    }

    .ux-sv-orbit-2 {
        width: 198px;
        height: 198px;
    }

    .ux-sv-orbit-3 {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .ux-client-exp-inner {
        padding: 0 20px;
    }

    .ux-client-exp-features {
        grid-template-columns: 1fr;
    }

    .ux-client-exp-section {
        padding: 44px 0 55px;
    }

    .ux-solar-vis {
        width: 240px;
        height: 240px;
    }

    .ux-sv-ring-1 {
        width: 240px;
        height: 240px;
    }

    .ux-sv-ring-2 {
        width: 168px;
        height: 168px;
    }

    .ux-sv-ring-3 {
        width: 100px;
        height: 100px;
    }

    .ux-sv-orbit-1 {
        width: 100px;
        height: 100px;
    }

    .ux-sv-orbit-2 {
        width: 168px;
        height: 168px;
    }

    .ux-sv-orbit-3 {
        width: 240px;
        height: 240px;
    }

    .ux-sv-b1,
    .ux-sv-b3 {
        display: none;
    }
}


/* ---------------------------------------------------------------
   8ï¸âƒ£ TRUST SECTION - Clear Process
   --------------------------------------------------------------- */
.ux-trust-sec-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc !important;
    /* Blends with solar-inst-section */
    padding: 60px 0;
    /* More compact padding */
    overflow: hidden;
}

.ux-trust-sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    /* Reduced gap */
    align-items: center;
}

.ux-trust-sec-title {
    font-size: clamp(28px, 3.5vw, 36px) !important;
    /* Slightly smaller title */
    font-weight: 900 !important;
    color: #0f1d33 !important;
    line-height: 1.15 !important;
    margin: 0 0 16px 0 !important;
    /* Reduced margin */
    letter-spacing: -1px;
}

.ux-trust-sec-intro p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.ux-trust-sec-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ux-trust-sec-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Tighter gap */
}



.ux-trust-sec-bullet:hover {
    border-color: rgba(31, 111, 92, 0.2);
    background: #ffffff;
    transform: translateY(-2px);
    /* Modern lift instead of horizontal slide */
    box-shadow: 0 8px 20px rgba(31, 111, 92, 0.08);
    /* More pronounced shadow on hover */
}

.ux-trust-sec-icon {
    width: 20px;
    height: 20px;
    background: var(--aoro-primary);
    /* Use primary color for icon background */
    color: #ffffff;
    /* White icon */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(31, 111, 92, 0.2);
    /* Small shadow for icon */
}

.ux-trust-sec-icon svg {
    width: 14px;
    height: 14px;
}

.ux-trust-sec-btext {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
}

.ux-trust-sec-cta-wrap {
    margin-top: 10px;
}

.ux-trust-sec-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #1F6F5C !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.ux-trust-sec-btn:hover {
    border-bottom-color: #1F6F5C;
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .ux-trust-sec-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---------------------------------------------------------------
   User Requested Overrides
   --------------------------------------------------------------- */
.solar-inst-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    overflow-x: clip !important;
    padding: 20px 20px !important;
    box-sizing: border-box !important;
}

/* ---------------------------------------------------------------
   9️⃣ WARRANTY OVERVIEW - Expert Card Layout
   --------------------------------------------------------------- */
.ux-warranty-sec-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.ux-warranty-sec-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ux-warranty-sec-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 10px;
}

.ux-warranty-sec-title {
    font-size: clamp(32px, 4vw, 42px) !important;
    font-weight: 900 !important;
    color: #0f1d33 !important;
    line-height: 1.15 !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -1px;
}

.ux-warranty-sec-intro p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Glassmorphism List Container */
.ux-warranty-sec-list {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 29, 51, 0.04);
    border: 1px solid rgba(31, 111, 92, 0.06);
    overflow: hidden;
}

.ux-warranty-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 22px 30px;
    background: #ffffff;
    border-bottom: 1px solid rgba(31, 111, 92, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

.ux-warranty-row:last-child {
    border-bottom: none;
}

/* Row Hover Highlight */
.ux-warranty-row:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(31, 111, 92, 0.08);
    /* Elevated feel */
    z-index: 2;
}

/* Elegant Left Edge Indicator */
.ux-warranty-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0%;
    background: var(--aoro-primary);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
}

.ux-warranty-row:hover::before {
    height: 70%;
}

.ux-warranty-col-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ux-warranty-icon {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    color: var(--aoro-primary);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.ux-warranty-row:hover .ux-warranty-icon {
    background: var(--aoro-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(31, 111, 92, 0.2);
    transform: scale(1.05);
    /* Pop effect */
}

/* Fixing SVG stretching issue */
.ux-warranty-icon svg {
    width: 24px !important;
    height: 24px !important;
    display: block;
}

.ux-warranty-label {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.2px;
}

.ux-warranty-col-value {
    display: flex;
    align-items: center;
}

/* Minimalist Badge */
.ux-warranty-badge {
    display: inline-flex;
    align-items: center;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* Active Status Dot */
.ux-warranty-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aoro-accent, #00846c);
    margin-right: 12px;
    box-shadow: 0 0 0 4px rgba(0, 132, 108, 0.1);
}



/* Responsive Table */
@media (max-width: 900px) {
    .ux-warranty-row {
        padding: 18px 22px;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .ux-warranty-row {
        grid-template-columns: 1fr auto;
        padding: 18px 20px;
        gap: 15px;
    }

    .ux-warranty-label {
        font-size: 14px;
    }

    .ux-warranty-badge {
        font-size: 13px;
    }

    .ux-warranty-sec-inner {
        padding: 0 20px;
    }
}

/* Cinematic Lightbox Styles */
.ux-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(7, 20, 38, 0.98) 0%, rgba(11, 31, 59, 0.98) 30%, rgba(18, 60, 74, 0.98) 65%, rgba(31, 111, 92, 0.8) 100%);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ux-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.ux-lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-lightbox-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.ux-lightbox-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.ux-lb-close-unique {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #1F6F5C !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.ux-lb-close-unique:hover {
    transform: rotate(90deg) scale(1.1);
    background: #fff !important;
    color: #1F6F5C !important;
    border-color: #1F6F5C !important;
}

/* Old close style cleanup */
.ux-lightbox-close {
    display: none !important;
}

/* Next/Prev Navigation */
.ux-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
    box-sizing: border-box;
}

.ux-lightbox-btn {
    pointer-events: auto;
    background: rgba(31, 111, 92, 0.25) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.ux-lightbox-btn:hover {
    background: #1F6F5C !important;
    transform: scale(1.1);
}

/* Next/Prev Previews */
.ux-lightbox-preview {
    position: absolute;
    width: 100px;
    height: 60px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ux-lightbox-btn.prev .ux-lightbox-preview {
    left: 80px;
}

.ux-lightbox-btn.next .ux-lightbox-preview {
    right: 80px;
}

.ux-lightbox-btn:hover .ux-lightbox-preview {
    opacity: 1;
    visibility: visible;
}

.ux-lightbox-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ux-lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
}

/* =========================================================================
   Global Section Background and Padding Overrides
========================================================================= */

.ux-trust-sec-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: white !important;
    padding: 60px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ux-trust-sec-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 30px 0 !important;
    }
}

.ux-wcu-container {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #f8fafc !important;
    padding: 40px 0 !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .ux-wcu-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 30px 0 !important;
    }
}

.ux-blog-container {
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: white !important;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ux-blog-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 30px 0 !important;
    }
}

.ux-warranty-sec-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc !important;
    padding: 40px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767px) {
    .ux-warranty-sec-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 30px 0 !important;
    }
}

.ux-faq-container {
    padding: 30px 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: -25px;
    background: white !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .ux-faq-container {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 20px 0 !important;
    }
}

.ux-trust-sec-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 29, 51, 0.03);
}

.ux-blog-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.ux-blog-title-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: left !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.ux-blog-title {
    font-size: clamp(28px, 4vw, 36px) !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    display: block !important;
}

.ux-blog-subtitle {
    margin: 0 !important;
    color: #475569 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    max-width: 600px !important;
    line-height: 1.4 !important;
    display: block !important;
}

/* =========================================================================
   Final Expert Mobile Polish & Menu Fix
   ========================================================================= */
@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }

    /* Fixed Menu Toggle Z-Index (Ensures clickability) */
    .th-menu-toggle,
    .hamburger,
    .mobile-nav-toggle {
        z-index: 999999 !important;
        position: relative;
    }

    /* Global Typography Scaling */
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Global Padding Reduction */
    .elementor-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

/* ── Expert Mobile Refinements (Requested overrides) ── */

/* Sub 504px: Services CTA Text Wrapping */
@media (max-width: 504px) {
    a.ux-services-cta-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 5px !important;
    }

    .ux-services-cta-btn strong {
        display: block !important;
    }
}

/* Sub 438px: Solar CTA Button Styling */
@media (max-width: 438px) {
    .ux-solar-cta-button {
        display: inline-block !important;
        background: #1F6F5C !important;
        color: #ffffff !important;
        padding: 10px 20px !important;
        border-radius: 100px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        border: 2px solid #1F6F5C !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}

/* Sub 398px: Warranty Row Stacking */
@media (max-width: 398px) {
    .ux-warranty-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 15px !important;
    }

    .ux-warranty-col-value {
        padding-left: 34px !important;
        /* Align with text under icon */
    }
}

/* Sub 372px: Service Button Styling */
@media (max-width: 372px) {
    .ux-service-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        background: #ffffff !important;
        border-radius: 50px !important;
        color: var(--aoro-primary, #1F6F5C) !important;
        padding: 8px 12px !important;
        text-decoration: none !important;
        font-weight: 800 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 8px 25px rgba(31, 111, 92, 0.3) !important;
        border: 2px solid transparent !important;
    }
}

/* ── Module Specific Refinements (WCU, Monitor, Credibility) ── */

/* WCU Headline - Balanced Typography */
.ux-wcu-headline {
    font-size: clamp(28px, 3vw, 42px) !important;
    font-weight: 900 !important;
    color: #0a1223 !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.8px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
}

/* WCU Items - Mobile Layout */
@media (max-width: 416px) {
    .ux-wcu-item {
        padding: 4px 16px !important;
        gap: 8px !important;
        font-size: 14px !important;
    }
}

/* WCU Button - Mobile Scale */
@media (max-width: 418px) {
    .ux-wcu-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        background: var(--aoro-primary, #1F6F5C) !important;
        color: #ffffff !important;
        padding: 7px 16px !important;
        border-radius: 50px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: 0.9px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        border: 2px solid var(--aoro-primary, #1F6F5C) !important;
        box-shadow: 0 8px 28px rgba(31, 111, 92, 0.25) !important;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        position: relative;
        overflow: hidden;
    }
}

/* Solar Monitoring Stats - Column Stacking */
@media (max-width: 606px) {
    .ux-solmon-stats {
        flex-direction: column !important;
        gap: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding: 10px !important;
        text-align: center !important;
    }
}

/* Client Experience - Container Spacing */
.ux-client-exp-content {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 10px !important;
}

/* Client Experience Footer Text - Small Screens */
@media (max-width: 372px) {
    .ux-client-exp-ftext {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
    }
}

/* Client Experience CTA Button - Mobile Scale */
@media (max-width: 434px) {
    .ux-client-exp-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: #1F6F5C !important;
        color: #ffffff !important;
        padding: 6px 14px !important;
        border-radius: 50px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        text-decoration: none !important;
        border: 2px solid #1F6F5C !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
    }
}

/* Credibility Cards - Better Stacking Visibility */
@media (max-width: 774px) {
    .ux-booster-cred-card {
        padding: 7px 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        border-right: 1px solid rgba(31, 111, 92, 0.08) !important;
        transition: all 0.4s ease !important;
    }

    .ux-booster-cred-label {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        line-height: 1.3 !important;
    }
}

/* ── Engineering Difference Responsive Refinements ── */



/* Sub 1218px: Redesign glass cards to ROW layout & adjust hero text constraints */
@media (max-width: 1218px) {
    .ux-engdiff-glass-card {
        background: #1F6F5Ca1 !important;
        backdrop-filter: blur(62px) saturate(2.5) !important;
        -webkit-backdrop-filter: blur(22px) saturate(1.5) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.13) !important;
        padding: 8px 8px 5px !important;
        /* Minimal padding */
        display: flex !important;
        flex-direction: row !important;
        /* Horizontal layout */
        align-items: center !important;
        gap: 11px !important;
        transition: background 0.3s ease !important;
        cursor: default !important;
    }

    .ux-engdiff-hero-text {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 22px 72px 0 !important;
        max-width: 1220px !important;
        bottom: 400px !important;
    }

    .ux-engdiff-headline {
        font-size: 32px !important;
        max-width: 80% !important;
    }
}

/* Sub 1100px: Move Trust Footer below the visual row */
@media (max-width: 1100px) {
    .ux-engdiff-hero {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .ux-engdiff-hero-img {
        position: relative !important;
        height: 400px !important;
    }

    .ux-engdiff-glass-row {
        position: relative !important;
        bottom: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        background: #0d1f38d1 !important;
    }

    .ux-engdiff-trust-footer {
        position: relative !important;
        bottom: auto !important;
        background: #1F6F5Cd1 !important;
        /* Solid blue base for flow */
    }

    .ux-trust-card {
        padding: 20px 30px !important;
    }
}

/* Sub 794px: Full-width Hero Text & Card Stacking */
@media (max-width: 794px) {
    .ux-engdiff-hero-text {
        width: 100% !important;
        padding: 40px 20px !important;
        bottom: auto !important;
    }

    .ux-engdiff-headline {
        font-size: 28px !important;
        max-width: 100% !important;
    }

    .ux-engdiff-glass-row {
        grid-template-columns: 1fr !important;
    }
}

/* ── Blog, FAQ, and Final CTA Responsive Polish ── */

/* Sub 1414px: Final CTA Spacing Refinement */
@media (max-width: 1414px) {
    .ux-aoro-ccta-final {
        padding: 40px 20px !important;
        margin-bottom: -30px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {

    /* Blog Button - Full Width on Mobile */
    .ux-blog-btn {
        display: inline-block !important;
        background: var(--aoro-primary, #1F6F5C) !important;
        color: #fff !important;
        padding: 14px 28px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        text-decoration: none !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* FAQ Question - Targeted Typography */
    .ux-faq-question {
        font-size: 14px !important;
        padding-right: 35px !important;
        /* Space for plus/minus icon */
    }

    /* General Mobile Stacking & Font Scaling */
    .ux-aoro-ccta-final .elementor-column {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .ux-faq-item {
        margin-bottom: 10px !important;
    }
}

/* Extreme Mobile - Even smaller FAQ fonts */
@media (max-width: 480px) {
    .ux-faq-question {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}

/* Sub 474px: Final CTA Content Stacking */
@media (max-width: 474px) {
    .ux-aoro-ccta-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 10px !important;
    }
}

/* ============================================================
   CCTA FINAL — DEFINITIVE TERMINAL OVERRIDE
   Removes all background images + blue, forces pure AORO green
   ============================================================ */
.ux-aoro-ccta-final {
    background-image: none !important;
    background-attachment: scroll !important;
    background: linear-gradient(135deg, #050f0c 0%, #08160f 30%, #0d2219 65%, #1a5c48 100%) !important;
    padding: 28px 0 !important;
    border-top: 2px solid #1F6F5C !important;
    border-bottom: 3px solid #1F6F5C !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Fix overlay to match — pure green, no blue */
.ux-aoro-ccta-final .ux-aoro-ccta-overlay {
    background: linear-gradient(135deg, rgba(5, 14, 11, 0.6) 0%, rgba(13, 34, 25, 0.5) 100%) !important;
}


/* === Hero CTAs — mobile padding only === */
@media (max-width: 767px) {
    .ux-hero-ctas {
        padding-left: 20px !important;
        padding-right: 20px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .ux-hero-btn--primary,
    .ux-hero-btn--ghost {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Hero Section Container Padding Fix - Targeting inner div */
    .elementor-23 .elementor-element.elementor-element-1d02ec60>.e-con-inner {
        padding-top: 150px !important;
        padding-bottom: 50px !important;
    }
}