/* ── Inner Hero Overlay ── */
.cleanon-inner-hero {
    position: relative;
    padding: 100px 0 160px;
    background: #C2E8F3;
    overflow: hidden;
    z-index: 1;
}

.cleanon-inner-hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    object-fit: cover;
    z-index: -2;
}

/* Gradient fade to white above the image */
.cleanon-inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 30%, rgba(255,255,255,0.9) 50%, rgba(194,232,243,0.5) 80%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.cleanon-inner-media-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(32, 37, 70, 0.15);
    height: 480px;
}

.cleanon-inner-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cleanon-hero-badges-grid {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cleanon-hero-badge {
    background: transparent;
    color: #ffffff;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 0;
    line-height: 1.3;
    box-shadow: none;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* ── Circular Pain Points ── */
.cleanon-pain-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E8F4F8; /* Light blue */
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cleanon-pain-title {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 1rem;
    color: #202546;
    margin: 0;
}

/* ── Pricing Card Specifics ── */
.cleanon-pricing-card {
    background: #ffffff;
    border: 1px solid var(--co-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(32, 37, 70, 0.04);
}
.cleanon-pricing-card-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.cleanon-pricing-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cleanon-pricing-card-title {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 1.1rem;
    color: #202546;
    margin-bottom: 8px;
}
.cleanon-pricing-card-desc {
    color: var(--co-text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}
.cleanon-pricing-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cleanon-pricing-price {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.9rem;
    color: #202546;
    background: #ffffff;
    border: 1px solid var(--co-border);
    padding: 8px 16px;
    border-radius: var(--r-pill);
}

/* ── Specific Overrides for inner ── */
.cleanon-nav-links {
    display: flex;
    gap: 32px;
}
.cleanon-nav-links a {
    font-family: var(--font-b);
    font-weight: 500;
    font-size: 0.9rem;
    color: #202546;
    text-decoration: none;
    transition: color 0.3s;
}
.cleanon-nav-links a:hover {
    color: var(--co-gold);
}

.cleanon-btn-yellow {
    background: #FFCC00;
    color: #202546;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--r-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.cleanon-btn-yellow:hover {
    background: #FFDE58;
    color: #202546;
    transform: translateY(-2px);
    text-decoration: none;
}

/* -- Custom FAQ Accordion -- */
.uk-accordion {
    margin-top: 40px;
}
.uk-accordion > li {
    background: #ffffff;
    border-radius: var(--r-md);
    padding: 24px 32px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(32, 37, 70, 0.03);
}
.uk-accordion-title {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 1.05rem;
    color: #202546;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.uk-accordion-title::before {
    display: none !important;
}
.uk-accordion-title::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: #202546;
    font-size: 1.5rem;
    font-weight: 400;
    transition: all 0.3s var(--ease);
}
.uk-accordion > li.uk-open .uk-accordion-title::after {
    content: '?';
    color: var(--co-gold);
}
.uk-accordion-content {
    color: var(--co-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    padding-right: 40px;
}

/* -- Slider Customization -- */
.uk-dotnav {
    margin-top: 30px;
}
.uk-dotnav > * > * {
    background-color: #e2e8f0;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.uk-dotnav > .uk-active > * {
    background-color: #FFCC00;
    width: 32px;
    border-radius: 6px;
}
.uk-dotnav > * > *:hover,
.uk-dotnav > * > *:focus {
    background-color: #FFDE58;
}

/* -- Mobile Responsive Overrides -- */
@media (max-width: 639px) {
    .cleanon-inner-hero {
        padding: 30px 0 40px;
    }
    
    /* Reorder hero elements: Title -> Image -> Subtitle -> Buttons */
    .cleanon-inner-hero [uk-grid] {
        display: flex;
        flex-direction: column;
        margin-left: 0 !important;
    }
    .cleanon-inner-hero .uk-width-1-2\@m {
        display: contents;
    }
    .cleanon-service-hero-title {
        order: 1;
        font-size: 2.2rem !important;
        margin-bottom: 16px !important;
        line-height: 1.15 !important;
    }
    .cleanon-inner-media-wrap {
        order: 2;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    .cleanon-inner-hero .uk-flex {
        order: 3;
        margin-bottom: 20px !important;
    }
    .cleanon-subtitle {
        order: 4;
        margin-bottom: 16px !important;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 16px;
        border-radius: 12px;
    }
    .cleanon-inner-hero-bg {
        height: auto !important;
    }
    .cleanon-hero-badges-grid {
        grid-template-columns: 1fr;
        bottom: 12px; left: 12px; right: 12px;
    }
    .cleanon-hero-badge {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    .cleanon-inner-media-wrap {
        height: 380px;
        margin-top: 32px;
    }
    .cleanon-pricing-card-img {
        height: 180px;
    }
    .uk-accordion > li {
        padding: 16px 20px;
    }
    .cleanon-section-title {
        white-space: normal !important;
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.35;
    }
}

/* -- Brand Section Fix -- */
.cleanon-brand-section {
    background: #E8F4F8;
    padding: 80px 0;
    margin-top: 0;
}
@media (max-width: 639px) {
    .cleanon-brand-section {
        padding: 40px 0;
    }
    .cleanon-cta-responsive {
        width: 100%;
        box-sizing: border-box !important;
        justify-content: center;
        padding: 14px !important;
        font-size: 1.05rem !important;
        box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3) !important;
    }
}
