/* ==========================================================================
   CleanON — Luxury Editorial Design v2
   ========================================================================== */

:root {
    --co-white: #ffffff;
    --co-cream: #f4f7fa;
    --co-sand: #eef3f7;
    --co-warm: #e0e7f1;
    --co-dark: #202546;
    --co-dark-soft: #394170;
    --co-text: #1d2038;
    --co-text-soft: #565d8a;
    --co-text-muted: #8b90b0;
    --co-gold: #FFCC00;
    --co-gold-light: #FFDE58;
    --co-danger: #b84c30;
    --co-border: rgba(32, 37, 70, 0.08);

    /* Gradients from the screenshots */
    --gr-primary: linear-gradient(135deg, #394170 0%, #202546 100%);
    --gr-secondary: linear-gradient(135deg, #FFDE58 0%, #FFCC00 100%);

    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Inter', system-ui, sans-serif;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-pill: 100px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    color: var(--co-text);
    background: var(--co-white);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--co-gold);
    color: var(--co-white);
}

/* ── Typography ── */
.cleanon-h1, .cleanon-h2 {
    font-family: var(--font-h);
    font-weight: 400;
    color: var(--co-text);
}

.cleanon-h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.6rem;
    letter-spacing: -0.02em;
}

.cleanon-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.cleanon-h4 {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--co-text);
}

.cleanon-subtitle {
    color: var(--co-text-soft);
    font-weight: 400;
    font-size: 1.12rem;
    line-height: 1.75;
}

.cleanon-h5-muted {
    color: var(--co-text-muted);
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin: 0;
}

/* ── Logo ── */
.cleanon-logo {
    font-family: var(--font-b) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--co-text) !important;
}

/* ── Buttons ── */
.cleanon-btn-dark {
    background: var(--gr-primary);
    color: var(--co-white) !important;
    border: none;
    border-radius: var(--r-pill);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    padding: 15px 36px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.cleanon-btn-dark:hover,
.cleanon-btn-dark:focus {
    filter: brightness(1.2);
    color: var(--co-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32,37,70,0.2);
    text-decoration: none;
}

.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;
}

.cleanon-btn-compact {
    padding: 11px 22px;
    font-size: 0.82rem;
}

.cleanon-btn-text {
    color: var(--co-text);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: none;
    padding: 0;
    background: none;
    border: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cleanon-btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--co-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.cleanon-btn-text:hover { color: var(--co-text); text-decoration: none; }
.cleanon-btn-text:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Header ── */
.cleanon-navbar {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--co-border);
    padding: 0px 0;
}

/* Nav Pill — center links in bordered capsule */
.cleanon-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--co-border);
    border-radius: var(--r-pill);
    padding: 4px 6px;
    background: transparent;
}

.cleanon-nav-pill a {
    font-family: var(--font-b);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--co-text);
    text-decoration: none;
    padding: 6px 18px;
    border-radius: var(--r-pill);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.01em;
}

.cleanon-nav-pill a:hover {
    color: var(--co-text);
    background: var(--co-cream);
    text-decoration: none;
}

/* ── Language Switcher ── */
.cleanon-lang-switcher.uk-navbar-item {
    min-height: auto !important;
    padding: 6px 6px !important;
}

.cleanon-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    border: 1.5px solid var(--co-border);
    border-radius: var(--r-pill);
    padding: 8px 10px;
}

.cleanon-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--co-text-soft);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.02em;
}

.cleanon-lang-btn:hover {
    color: var(--co-text);
    background: var(--co-cream);
    text-decoration: none;
}

.cleanon-lang-btn.is-active {
    background: #202546;
    color: #ffffff;
}

.cleanon-lang-btn.is-active:hover {
    background: #394170;
    color: #ffffff;
    text-decoration: none;
}

/* ── Hero ── */
.cleanon-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Navbar inside hero — transparent initially */
.cleanon-navbar-wrap {
    position: relative;
    z-index: 10;
}

.cleanon-navbar-wrap .cleanon-navbar {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

/* When sticky kicks in after scrolling */
.cleanon-navbar-wrap.uk-navbar-sticky .cleanon-navbar {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--co-border);
}

.cleanon-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0rem 0rem 7rem 0rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cleanon-hero-content .cleanon-h1 {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.18;
    color: #202546;
    letter-spacing: -0.01em;
    margin-bottom: 2.2rem;
}

/* CTA Pill Group */
.cleanon-hero-cta-group {
    display: inline-flex;
    align-items: center;
    background: var(--co-white);
    border: 1.5px solid #e0dcd6;
    border-radius: var(--r-pill);
    padding: 5px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(32,37,70,0.06);
}

.cleanon-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-b);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--co-text);
    text-decoration: none;
    border-radius: var(--r-pill);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.cleanon-cta-outline:hover {
    background: var(--co-cream);
    color: var(--co-text);
    text-decoration: none;
}

.cleanon-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gr-secondary);
    color: #202546;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.cleanon-cta-primary:hover {
    filter: brightness(1.05);
    color: #202546;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,204,0,0.35);
}

.cleanon-cta-icon {
    width: 15px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(12%) sepia(20%) saturate(2000%) hue-rotate(200deg) brightness(95%);
}

/* Hero Background — absolute, covers full section */
.cleanon-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #C2E8F3;
}

/* Gradient overlay: white → sky blue to blend with cropped photo */
.cleanon-hero-bg::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-hero-bg-img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
}

.cleanon-hero-plane {
    position: absolute;
    z-index: 2;
    width: clamp(100px, 14vw, 200px);
    top: 55%;
    left: -15%;
    animation: planeFly 14s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

@keyframes planeFly {
    0% {
        transform: translate(0, 0) scale(0.4);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(130vw, -20vh) scale(1);
        opacity: 0;
    }
}

/* ── Services Section ── */
.cleanon-services {
    background: #EEF3F6;
    padding: 20px 0 60px;
}

/* Grid layouts */
.cleanon-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.cleanon-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 16px;
}

/* Service Card */
.cleanon-scard {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--co-text);
    transition: all 0.4s var(--ease);
    position: relative;
}

.cleanon-scard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(32,37,70,0.10);
    text-decoration: none;
    color: var(--co-text);
}

/* Card image area */
.cleanon-scard-img {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(155deg, var(--co-cream) 0%, var(--co-sand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cleanon-scard-img img.cleanon-scard-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrow badge */
.cleanon-scard-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.35s var(--ease);
}

.cleanon-scard:hover .cleanon-scard-arrow {
    background: #FFCC00;
    transform: scale(1.08);
}

.cleanon-scard-arrow--yellow {
    background: #FFCC00;
}

/* Card info (bottom bar) */
.cleanon-scard-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 8px;
    background: #fff;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.cleanon-scard-title {
    font-family: var(--font-b);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--co-text);
    line-height: 1.3;
}

.cleanon-scard-price {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.8rem;
    color: #202546;
    background: #EEF3F6;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}

/* Overlay card (bottom row) — label inside image */
.cleanon-scard--overlay .cleanon-scard-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
}

.cleanon-scard-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--co-white);
    color: var(--co-text);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    z-index: 2;
}

/* ── CTA Block (Yellow) ── */
.cleanon-cta-block {
    background: #FFCC00;
    border-radius: var(--r-lg);
    padding: 32px 32px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 220px;
}

.cleanon-cta-block-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
}

.cleanon-cta-block-title {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 1.4rem;
    color: #202546;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.cleanon-cta-block-sub {
    font-family: var(--font-b);
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(32,37,70,0.6);
    margin: 0 0 16px;
}

.cleanon-cta-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #202546;
    color: #ffffff;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: all 0.35s var(--ease);
}

.cleanon-cta-block-btn:hover {
    background: #394170;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.cleanon-cta-block-btn img {
    width: 13px;
    height: 14px;
}

/* Person image */
.cleanon-cta-block-person {
    position: relative;
    z-index: 1;
    height: 210px;
    width: auto;
    object-fit: contain;
    align-self: flex-end;
    flex-shrink: 0;
}

/* Rotating 24/7 badge */
.cleanon-cta-badge {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 110px;
    height: 110px;
    z-index: 3;
}

.cleanon-cta-badge-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: auto;
}

.cleanon-cta-badge-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateBadge 12s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Why Choose Us Section ── */
.cleanon-why-us {
    background: #fff;
    padding: 60px 0;
}

.cleanon-section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cleanon-section-title-line {
    flex: 1;
    height: 1px;
    background: var(--co-border);
}

.cleanon-section-title {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 1.2rem;
    color: #202546;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.cleanon-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cleanon-why-card {
    background: var(--co-white);
    border: 1px solid var(--co-border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.cleanon-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(32,37,70,0.06);
}

.cleanon-why-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    background: var(--co-white);
    border-right: 1px solid var(--co-border);
    flex-shrink: 0;
    padding: 16px;
}

.cleanon-why-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cleanon-why-text {
    padding: 20px 20px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cleanon-why-title {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.95rem;
    color: #202546;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cleanon-why-desc {
    font-family: var(--font-b);
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--co-text-soft);
    margin: 0;
    line-height: 1.5;
}

.cleanon-card {
    background: var(--co-white);
    border: 1px solid var(--co-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.45s var(--ease);
}

.cleanon-card:hover {
    box-shadow: 0 20px 50px rgba(32,37,70,0.10);
    transform: translateY(-8px);
    border-color: transparent;
}

.cleanon-card-media {
    background: linear-gradient(155deg, var(--co-cream) 0%, var(--co-sand) 100%);
    height: 220px;
    position: relative;
    overflow: hidden;
}

.cleanon-card-media::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
}

.cleanon-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.cleanon-card-body p { color: var(--co-text-soft); flex: 1; line-height: 1.65; font-size: 0.94rem; }

.cleanon-card-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--co-border);
    padding-top: 1.5rem;
}

.cleanon-price {
    font-family: var(--font-h);
    font-size: 1.5rem;
    color: var(--co-text);
}

.cleanon-link {
    color: var(--co-text);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.cleanon-link:hover { color: var(--co-gold); text-decoration: none; }

/* ── Brand Value ── */
.cleanon-brand-value { background: var(--co-cream); }

.cleanon-value-media {
    background: linear-gradient(155deg, var(--co-sand), var(--co-warm));
    height: 480px;
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: 0 20px 50px rgba(32,37,70,0.08);
}

.cleanon-strong-offer {
    font-size: 1.12rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--co-gold);
    display: inline-block;
    margin-top: 0.5rem;
}

/* ── Gallery ── */
.cleanon-gallery-section { background: var(--co-white); }

img-comparison-slider {
    border-radius: var(--r-lg);
    box-shadow: 0 8px 30px rgba(32,37,70,0.07);
    outline: none;
    width: 100%;
}

img-comparison-slider figure { margin: 0; }

img-comparison-slider img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

img-comparison-slider figcaption {
    position: absolute;
    bottom: 20px;
    background: #ffffff;
    color: #202546;
    width: 80px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--font-b);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.cleanon-before-label figcaption { left: 24px; }
.cleanon-after-label figcaption { right: 24px; }

.cleanon-slider-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #ffd014;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.16);
    color: #202546;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

img-comparison-slider:hover .cleanon-slider-handle {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

img-comparison-slider {
  visibility: hidden;
}

img-comparison-slider [slot='second'] {
  display: none;
}

img-comparison-slider.rendered {
  visibility: inherit;
}

img-comparison-slider.rendered [slot='second'] {
  display: unset;
}

/* ── Reviews ── */
.cleanon-reviews-section { background: var(--co-cream); }

.cleanon-review-card {
    background: var(--co-white);
    border-radius: var(--r-lg);
    box-shadow: 0 2px 16px rgba(32, 37, 70, 0.03);
    padding: 2rem;
    border: 1px solid var(--co-border);
    transition: all 0.4s var(--ease);
    position: relative;
}

.cleanon-review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 24px;
    font-family: var(--font-h);
    font-size: 4rem;
    color: var(--co-sand);
    line-height: 1;
    pointer-events: none;
}

.cleanon-review-card:hover {
    box-shadow: 0 12px 40px rgba(32,37,70,0.08);
    transform: translateY(-4px);
}

.cleanon-stars {
    color: #FFCC00;
}
.cleanon-stars .uk-icon svg * {
    fill: currentcolor;
}

.cleanon-review-text {
    color: var(--co-text-soft);
    font-size: 0.94rem;
    line-height: 1.75;
    font-style: italic;
}

.cleanon-stars { color: var(--co-gold); margin-bottom: 5px; }

.cleanon-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--co-sand), var(--co-warm));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--co-text-muted);
}

.cleanon-slider-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: var(--co-dark);
    color: var(--co-white);
    border-radius: 50%;
    transition: all 0.35s var(--ease);
    text-decoration: none;
}

.cleanon-slider-nav:hover {
    background: var(--co-gold);
    color: var(--co-white);
    text-decoration: none;
    transform: scale(1.08);
}

.cleanon-slider-nav svg { color: var(--co-white); }

/* ── FAQ ── */
#faq { background: var(--co-cream) !important; }

.uk-accordion > li {
    background: var(--co-white);
    border-radius: var(--r-md) !important;
    margin-bottom: 12px;
    padding: 4px 24px;
    border: 1px solid var(--co-border);
    transition: box-shadow 0.3s var(--ease);
}

.uk-accordion > li:hover { box-shadow: 0 4px 16px rgba(32,37,70,0.04); }

.uk-accordion > li.uk-open {
    box-shadow: 0 8px 24px rgba(32,37,70,0.06);
    border-color: var(--co-gold-light);
}

.uk-accordion-title {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--co-text);
    padding: 18px 0;
    transition: color 0.3s;
}

.uk-accordion-title:hover { color: var(--co-gold); text-decoration: none; }
.uk-accordion-title::before { background-image: none !important; }

.uk-accordion-content { padding: 0 0 16px; }
.uk-accordion-content p { color: var(--co-text-soft); line-height: 1.75; }

/* FAQ accordion marker (+ / ?) & card look — mirrored from inner-page.css so the
   homepage FAQ matches the service-page FAQ (homepages load only styles.css). */
.uk-accordion { margin-top: 40px; }
.uk-accordion > li {
    background: #ffffff;
    padding: 24px 32px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(32, 37, 70, 0.03);
}
.uk-accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    color: #202546;
}
.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 {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    padding-right: 40px;
}

/* ── Service Area ── */
.cleanon-service-area-section { background: var(--co-white); }

.cleanon-map-container {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(32,37,70,0.06);
    border: 1px solid var(--co-border);
}

.cleanon-map-container > div {
    background: linear-gradient(155deg, var(--co-cream), var(--co-sand)) !important;
}

/* ── Form ── */
.cleanon-form-section { background: var(--co-cream); }

.cleanon-contacts-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--co-text);
    font-weight: 500;
}

.cleanon-contacts-list li span[uk-icon] { color: var(--co-gold); }

.cleanon-form-card {
    background: var(--co-white);
    padding: 2.5rem;
    border-radius: var(--r-xl);
    box-shadow: 0 16px 48px rgba(32,37,70,0.07);
    border: 1px solid var(--co-border);
    position: relative;
}

.cleanon-form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--co-gold), transparent);
    border-radius: 0 0 4px 4px;
}

.uk-form-label {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--co-text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.uk-input, .uk-textarea, .uk-select {
    background: var(--co-cream);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    font-family: var(--font-b);
    font-size: 0.95rem;
    color: var(--co-text);
    padding: 13px 18px;
    transition: all 0.3s var(--ease);
}

.uk-input:focus, .uk-textarea:focus {
    border-color: var(--co-gold);
    background: var(--co-white);
    box-shadow: 0 0 0 4px rgba(184,155,106,0.1);
}

.uk-input::placeholder, .uk-textarea::placeholder {
    color: var(--co-text-muted);
    font-weight: 400;
}

.cleanon-upload-placeholder {
    border: 2px dashed var(--co-warm);
    padding: 32px 20px;
    background: var(--co-cream);
    cursor: pointer;
    border-radius: var(--r-md);
    transition: all 0.35s var(--ease);
}

.cleanon-upload-placeholder:hover {
    border-color: var(--co-gold);
    background: rgba(255, 204, 0, 0.06);
}

.cleanon-btn-submit {
    height: 56px;
    font-size: 1rem;
    border-radius: var(--r-pill);
}

/* ── Modal ── */
.uk-modal-dialog {
    border-radius: var(--r-xl) !important;
    padding: 2.5rem !important;
    box-shadow: 0 32px 80px rgba(32, 37, 70, 0.18) !important;
    overflow: hidden;
    position: relative;
}

.uk-modal-close-default {
    top: 1.5rem !important;
    right: 1.5rem !important;
    background: var(--co-sand) !important;
    color: var(--co-text-soft) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: all 0.3s var(--ease) !important;
    box-shadow: 0 4px 12px rgba(32, 37, 70, 0.05) !important;
    border: none !important;
}

.uk-modal-close-default:hover {
    background: var(--co-warm) !important;
    color: var(--co-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(32, 37, 70, 0.1) !important;
}

.uk-modal-dialog .cleanon-h2 { font-size: 1.8rem; }

/* ── Footer ── */
.cleanon-footer {
    background: linear-gradient(180deg, #394170 0%, #202546 100%);
    color: rgba(255, 255, 255, 0.4);
    padding: 6.5rem 0 5.5rem;
    font-size: 0.88rem;
    font-family: var(--font-b);
}

.cleanon-footer p { color: rgba(255, 255, 255, 0.4); }

.cleanon-footer-logo-wrap {
    margin-bottom: 1.6rem;
}

.cleanon-footer-logo {
    display: inline-block;
    width: 380px;
    max-width: 100%;
    height: auto;
}

.cleanon-footer-tagline {
    display: inline-block;
    font-size: 0.95rem;
    margin: 0 0 2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    /* Shine Animation Properties */
    color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(
        110deg,
        #ffffff 0%,
        #ffffff 42%,
        rgba(255, 255, 255, 0.9) 48%,
        #FFCC00 50%,
        rgba(255, 255, 255, 0.9) 52%,
        rgba(255, 255, 255, 0.4) 58%,
        rgba(255, 255, 255, 0.4) 100%
    );
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cleanon-shine-active {
    animation: wipe-clean 2.5s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wipe-clean {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0% 0;
    }
}

.cleanon-footer-links {
    margin-bottom: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cleanon-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s var(--ease);
}

.cleanon-footer-links a:hover {
    color: #FFCC00;
}

.cleanon-footer-divider {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

.cleanon-footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.cleanon-footer-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1.8rem;
}

.cleanon-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFCC00;
    font-family: var(--font-b);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: opacity 0.3s var(--ease);
}

.cleanon-footer-phone:hover {
    color: #FFCC00;
    opacity: 0.8;
}

/* ── Cookie Banner ── */
.cleanon-cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--co-white);
    border-top: 1px solid var(--co-border);
    z-index: 1000;
    padding: 14px 0;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
}

.cleanon-cookie-text { font-size: 13px; line-height: 1.5; color: var(--co-text-soft); }

.cleanon-cookie-btn-outline {
    background: var(--co-white);
    border: 1.5px solid var(--co-dark);
    color: var(--co-dark);
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 600;
    height: 38px;
    padding: 0 22px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--r-pill);
    transition: all 0.3s;
}

.cleanon-cookie-btn-outline:hover { background: var(--co-cream); }

.cleanon-cookie-btn-solid {
    background: var(--co-dark);
    border: 1.5px solid var(--co-dark);
    color: var(--co-white);
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 600;
    height: 38px;
    padding: 0 22px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--r-pill);
    transition: all 0.3s;
}

.cleanon-cookie-btn-solid:hover { background: var(--co-gold); border-color: var(--co-gold); }

/* ── Zone Badges ── */
.cleanon-zones-bar { background: var(--co-cream); padding: 1.5rem 0; border-top: 1px solid var(--co-border); border-bottom: 1px solid var(--co-border); }
.cleanon-badges { gap: 10px; }
.cleanon-badge { background: var(--co-white); border: 1px solid var(--co-border); border-radius: var(--r-pill); padding: 8px 22px; font-size: 0.86rem; font-weight: 500; color: var(--co-text-soft); text-decoration: none; transition: all 0.3s var(--ease); }
.cleanon-badge:hover { background: var(--co-dark); color: var(--co-white); border-color: var(--co-dark); text-decoration: none; }

/* ── Misc ── */
.cleanon-health-focus { background: var(--co-cream) !important; }

.uk-section-large { padding-top: 90px; padding-bottom: 90px; }

.uk-checkbox { border-radius: 4px; border-color: var(--co-warm); }
.uk-checkbox:checked { background-color: var(--co-gold); border-color: var(--co-gold); }

/* ── Combined Results and Reviews Section ── */
.cleanon-results-reviews {
    background: #EEF3F6;
    padding: 60px 0;
}

.cleanon-results-slider {
    margin-top: 60px;
    margin-bottom: 20px;
}

.cleanon-results-card {
    background: var(--co-white);
    border: 1px solid var(--co-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(32,37,70,0.04);
}

.cleanon-results-media {
    overflow: hidden;
}

.cleanon-results-media img-comparison-slider {
    border-radius: 0;
    box-shadow: none;
}

.cleanon-results-content {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--co-white);
}

.cleanon-results-text-wrap {
    display: flex;
    flex-direction: column;
}

.cleanon-results-text {
    font-family: var(--font-b);
    font-size: 1.05rem;
    font-style: italic;
    color: #202546;
    line-height: 1.7;
    margin: 0 0 24px;
}

.cleanon-results-author {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--co-text-soft);
}

.cleanon-results-nav {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.cleanon-results-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--co-border);
    background: var(--co-white);
    color: var(--co-text);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.cleanon-results-nav-btn:hover {
    background: var(--co-dark);
    color: var(--co-white);
    border-color: var(--co-dark);
    transform: scale(1.05);
}

.cleanon-results-nav-btn span {
    display: flex;
}

/* ── Responsive ── */
/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION — Burger & Offcanvas
   ═══════════════════════════════════════════════ */

/* Burger button */
.cleanon-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--co-sand);
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    padding: 0;
    margin-right: 4px;
    transition: background 0.2s;
}
.cleanon-burger:hover { background: var(--co-warm); }
.cleanon-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--co-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Offcanvas panel */
.cleanon-offcanvas {
    background: #ffffff !important;
    padding: 40px 28px 40px !important;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 290px !important;
    /* Override UIKit dark theme text defaults */
    color: var(--co-text) !important;
}

/* Force UIKit to stop making everything white text */
.cleanon-offcanvas * {
    color: inherit;
}

.cleanon-offcanvas .uk-offcanvas-close {
    top: 16px;
    right: 16px;
    background: var(--co-sand);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--co-dark);
}

.cleanon-offcanvas-logo {
    padding-top: 8px;
}

.cleanon-offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cleanon-offcanvas-nav a {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--co-text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--co-border);
    transition: color 0.2s;
}
.cleanon-offcanvas-nav a:hover { color: var(--co-dark-soft); }
.cleanon-offcanvas-nav a:last-child { border-bottom: none; }

.cleanon-offcanvas-actions {
    margin-top: auto;
}
.cleanon-offcanvas-cta {
    width: 100%;
    justify-content: center;
    padding: 11px 22px;
}
/* Force dark text on yellow button — UIKit uk-light overrides to white */
.cleanon-offcanvas .cleanon-cta-primary,
.cleanon-offcanvas .cleanon-cta-primary:hover,
.cleanon-offcanvas .cleanon-cta-primary:focus {
    color: #202546 !important;
}
/* UIKit offcanvas white-text fix for lang buttons */
.cleanon-offcanvas .cleanon-lang-btn {
    color: var(--co-text-soft) !important;
}
.cleanon-offcanvas .cleanon-lang-btn.is-active {
    background: var(--co-dark) !important;
    color: #ffffff !important;
}
.cleanon-offcanvas .cleanon-lang-btn:hover:not(.is-active) {
    background: var(--co-sand) !important;
    color: var(--co-text) !important;
}

.cleanon-offcanvas-lang {
    display: flex;
    gap: 4px;
    border: 1.5px solid var(--co-border);
    border-radius: var(--r-pill);
    padding: 6px 8px;
    width: fit-content;
}

/* ═══════════════════════════════════════════════
   TABLET — max 959px
   ═══════════════════════════════════════════════ */
@media (max-width: 959px) {
    /* Typography */
    .cleanon-h1 { font-size: 2.2rem; }
    .cleanon-h2 { font-size: 1.8rem; }

    /* Hero */
    .cleanon-hero { min-height: 65vh; }
    .cleanon-hero-content { padding: 4rem 1.5rem 3rem; }
    .cleanon-hero-content .cleanon-h1 { font-size: 2.2rem; }
    .cleanon-hero-bg { min-height: 280px; }
    .cleanon-hero-plane { width: 120px; right: 10%; top: 15%; }

    /* Services grid */
    .cleanon-grid-top { grid-template-columns: repeat(2, 1fr); }
    .cleanon-grid-bottom { grid-template-columns: 1fr 1fr; }
    .cleanon-cta-block { grid-column: 1 / -1; }

    /* Why us */
    .cleanon-why-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Results */
    .cleanon-form-card { padding: 1.5rem; }
    .cleanon-value-media { height: 300px; }
    .cleanon-results-content { padding: 30px 24px 90px; }
    .cleanon-results-slider { margin-top: 40px; }
    .cleanon-results-nav {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
    .uk-section-large { padding-top: 55px; padding-bottom: 55px; }
    .uk-accordion > li { padding: 16px 20px; }
}

/* ═══════════════════════════════════════════════
   MOBILE — max 639px
   ═══════════════════════════════════════════════ */
@media (max-width: 639px) {
    /* --- Typography --- */
    .cleanon-h1,
    .cleanon-hero-content .cleanon-h1 { font-size: 1.85rem; line-height: 1.2; }
    .cleanon-h2 { font-size: 1.5rem; }
    .cleanon-subtitle { font-size: 0.97rem; }
    .cleanon-section-title { font-size: 1rem; }

    /* --- Hero --- */
    .cleanon-hero { min-height: 50vh; overflow: hidden; }
    .cleanon-hero-content {
        padding: 0 1.2rem 3rem;
        justify-content: center;
        min-height: 0;
    }
    .cleanon-hero-bg { min-height: 200px; }
    .cleanon-hero-plane { width: 80px; right: 5%; top: 18%; opacity: 0.9; }

    /* CTA group: side by side on mobile */
    .cleanon-hero-cta-group {
        flex-direction: row;
        border-radius: var(--r-pill);
        width: auto;
        max-width: 100%;
        padding: 5px;
        gap: 0;
        box-sizing: border-box;
    }
    .cleanon-cta-outline,
    .cleanon-cta-primary {
        width: auto;
        justify-content: center;
        border-radius: var(--r-pill) !important;
        font-size: 0.82rem;
        padding: 10px 18px;
        box-sizing: border-box;
    }

    /* --- Services Grid --- */
    .cleanon-services { padding: 40px 0; }
    .cleanon-grid-top {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }
    .cleanon-grid-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }
    .cleanon-scard { min-height: 0; height: 100%; }
    .cleanon-scard-img {
        height: 150px;
        aspect-ratio: unset;
        min-height: 0;
        flex-shrink: 0;
    }
    .cleanon-scard-info { flex: 1; }
    .cleanon-scard--overlay .cleanon-scard-img { height: 160px; min-height: 0; }
    .cleanon-scard-info { padding: 10px 12px; }
    .cleanon-scard-title { font-size: 0.82rem; }
    .cleanon-scard-price { font-size: 0.78rem; }

    /* CTA block — 2 columns on mobile: text|person */
    .cleanon-cta-block {
        grid-column: 1 / -1;
        padding: 20px 16px 0;
        min-height: 0;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    .cleanon-cta-block-content {
        flex: 1;
        padding-bottom: 20px;
        justify-content: center;
        gap: 10px;
    }
    .cleanon-cta-block-title { font-size: 1rem; }
    .cleanon-cta-block-sub { font-size: 0.78rem; margin-bottom: 12px; }
    .cleanon-cta-block-person {
        height: 140px;
        align-self: flex-end;
        flex-shrink: 0;
    }
    .cleanon-cta-badge {
        width: 64px;
        height: 64px;
        top: 10px;
        right: 10px;
        bottom: auto;
    }
    .cleanon-cta-badge-num { width: 28px; }

    /* --- Why Us Section --- */
    .cleanon-why-us { padding: 40px 0; }
    .cleanon-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .cleanon-why-card { padding: 0px 0px; gap: 14px; }
    .cleanon-why-icon-box { width: 44px; height: 44px; min-width: 44px; }
    .cleanon-why-title { font-size: 0.95rem; }
    .cleanon-why-desc { font-size: 0.85rem; }

    /* --- Results Slider --- */
    .cleanon-results-slider { margin-top: 24px; }
    .cleanon-results-card {
        border-radius: var(--r-lg);
    }
    .cleanon-results-content { padding: 22px 18px 80px; }
    .cleanon-results-text { font-size: 0.9rem; margin-bottom: 14px; }
    .cleanon-results-nav {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    .cleanon-results-name { font-size: 0.88rem; }

    /* --- Section title wrap --- */
    .cleanon-section-title-wrap { gap: 10px; margin-bottom: 28px; }
    .cleanon-section-title-line { width: 30px; }

    /* --- Card Media --- */
    .cleanon-card-media { height: 180px; }

    /* --- Hero actions (old) --- */
    .cleanon-hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cleanon-hero-actions .uk-margin-left { margin-left: 0 !important; }

    /* --- Footer --- */
    .cleanon-footer { padding: 3.5rem 1.2rem 3rem !important; }
    .cleanon-footer-logo { width: 220px !important; }
    .cleanon-footer-tagline { font-size: 0.85rem; }
    .cleanon-footer-legal { flex-direction: column; gap: 10px; align-items: center; }
    .cleanon-footer-sep { display: none; }
    .cleanon-footer-copy { font-size: 0.78rem; margin-top: 8px; }

    /* --- Modal --- */
    .uk-modal-dialog {
        margin: 10px !important;
        border-radius: var(--r-lg) !important;
        padding: 1.8rem 1.3rem !important;
    }
    .uk-modal-dialog .cleanon-h2 { font-size: 1.4rem !important; }
    .uk-modal-close-default {
        top: 1rem !important;
        right: 1rem !important;
    }
    .cleanon-upload-placeholder { padding: 20px 12px; }

    /* --- Cookie Banner --- */
    .cleanon-cookie-banner { padding: 14px 16px; }
    .cleanon-cookie-text { font-size: 0.82rem; }

    /* --- General spacing --- */
    .uk-section { padding-top: 40px; padding-bottom: 40px; }
    .uk-section-large { padding-top: 40px; padding-bottom: 40px; }
    .uk-container { padding-left: 16px; padding-right: 16px; }
}

/* ── Service Area Map Section ── */
.cleanon-map-section {
    position: relative;
    width: 100%;
    background: #fdfdfd;
    overflow: hidden;
}

.cleanon-map-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1512 / 914;
    box-sizing: border-box;
}

.cleanon-map-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cleanon-map-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.cleanon-map-bg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pins */
.cleanon-map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--co-white);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 15px rgba(32, 37, 70, 0.08);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s var(--ease);
    animation: pinPulse 3s infinite ease-in-out;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(32, 37, 70, 0.08);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.03);
        box-shadow: 0 8px 24px rgba(32, 37, 70, 0.12), 0 0 0 6px rgba(255, 204, 0, 0.25);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(32, 37, 70, 0.08);
    }
}

.cleanon-pin-icon {
    width: 18px;
    height: 18px;
}

.cleanon-pin-name {
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.95rem;
    color: #202546;
    white-space: nowrap;
}

/* Large Pin (Málaga) */
.cleanon-map-pin--large {
    padding: 10px 22px;
}

.cleanon-map-pin--large .cleanon-pin-icon {
    width: 22px;
    height: 22px;
}

.cleanon-map-pin--large .cleanon-pin-name {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Pins without background pill (Marbella, Ojén, Istán, Benahavís) */
.cleanon-map-pin--no-pill {
    background: transparent;
    box-shadow: none;
    padding: 0;
    transform: translate(-50%, -50%);
}

.cleanon-map-pin--no-pill .cleanon-pin-icon {
    width: 20px;
    height: 20px;
}

.cleanon-map-pin--no-pill .cleanon-pin-name {
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff;
}

/* Marbella Featured pin styling */
.cleanon-map-pin--marbella .cleanon-pin-icon {
    width: 24px;
    height: 24px;
}

.cleanon-map-pin--marbella .cleanon-pin-name {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Floating Cards */
.cleanon-map-card {
    position: absolute;
    background: var(--co-white);
    border-radius: var(--r-md);
    border: 1px solid var(--co-border);
    box-shadow: 0 10px 30px rgba(32, 37, 70, 0.06);
    padding: 24px;
    z-index: 5;
    max-width: 440px;
    width: 100%;
    box-sizing: border-box;
}

/* Top-Left Card (Info) */
.cleanon-map-card--info {
    top: 40px;
    left: 40px;
}

.cleanon-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.cleanon-card-header-icon {
    width: 18px;
    height: 18px;
}

.cleanon-card-header-title {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #202546;
    margin: 0;
    text-transform: uppercase;
}

.cleanon-card-text {
    font-family: var(--font-b);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--co-text-soft);
    margin: 0;
}

/* Bottom-Right Card (Contact) */
.cleanon-map-card--contact {
    bottom: 40px;
    right: 40px;
    max-width: 480px;
}

.cleanon-map-card--contact .cleanon-card-title {
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #202546;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.cleanon-map-card--contact .cleanon-card-text {
    margin-bottom: 18px;
}

/* Buttons in Contact Card */
.cleanon-card-actions {
    display: flex;
    gap: 12px;
}

.cleanon-btn-wa,
.cleanon-btn-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    height: 44px;
    border-radius: var(--r-pill);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.cleanon-btn-wa {
    background: var(--gr-primary);
    color: var(--co-white);
}

.cleanon-btn-wa:hover {
    filter: brightness(1.2);
    color: var(--co-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.cleanon-btn-wa .cleanon-btn-icon {
    color: #FFCC00;
}

.cleanon-btn-request {
    background: var(--gr-secondary);
    color: #202546;
}

.cleanon-btn-request:hover {
    filter: brightness(1.05);
    color: #202546;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 204, 0, 0.25);
}

.cleanon-btn-request .cleanon-btn-icon {
    color: #202546;
}

/* Responsive Map Section */
@media (max-width: 959px) {
    .cleanon-map-section { background: var(--co-sand); }

    .cleanon-map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        background: transparent;
        padding: 32px 20px;
        gap: 16px;
    }

    .cleanon-map-viewport {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1512 / 914;
        overflow: hidden;
        border-radius: var(--r-lg);
        box-shadow: 0 8px 24px rgba(32, 37, 70, 0.08);
        background: #fff;
    }

    .cleanon-map-content {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .cleanon-map-bg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .cleanon-map-card {
        position: static;
        max-width: 100%;
        width: 100%;
        border-radius: var(--r-lg);
        box-shadow: 0 4px 20px rgba(32, 37, 70, 0.06);
        padding: 20px;
    }

    /* Scale down pins on tablet/mobile */
    .cleanon-map-pin {
        padding: 4px 8px;
        gap: 4px;
    }
    .cleanon-pin-icon { width: 12px; height: 12px; }
    .cleanon-pin-name { font-size: 0.6rem; }

    .cleanon-map-pin--large { padding: 5px 10px; }
    .cleanon-map-pin--large .cleanon-pin-icon { width: 14px; height: 14px; }
    .cleanon-map-pin--large .cleanon-pin-name { font-size: 0.75rem; }

    .cleanon-map-pin--no-pill .cleanon-pin-icon { width: 14px; height: 14px; }
    .cleanon-map-pin--no-pill .cleanon-pin-name { font-size: 0.7rem; }

    .cleanon-map-pin--marbella .cleanon-pin-icon { width: 16px; height: 16px; }
    .cleanon-map-pin--marbella .cleanon-pin-name { font-size: 0.85rem; }
}

@media (max-width: 639px) {
    .cleanon-map-wrapper {
        padding: 20px 16px;
        gap: 12px;
    }

    .cleanon-map-viewport {
        border-radius: var(--r-md);
    }

    .cleanon-map-card {
        padding: 16px;
        border-radius: var(--r-md);
    }

    .cleanon-card-header-title { font-size: 0.82rem; }
    .cleanon-card-text { font-size: 0.79rem; }
    .cleanon-map-card--contact .cleanon-card-title { font-size: 0.82rem; }

    .cleanon-card-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cleanon-btn-wa,
    .cleanon-btn-request {
        width: 100%;
        flex: none;
        height: 46px;
        font-size: 0.82rem;
    }
}

/* ── Shimmer / Glare Sweep Animation for Lead Buttons ── */
.cleanon-cta-primary,
.cleanon-btn-request,
.cleanon-cta-block-btn {
    position: relative;
    overflow: hidden;
}

.cleanon-cta-primary::after,
.cleanon-btn-request::after,
.cleanon-cta-block-btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    left: -150%;
    pointer-events: none;
    animation: cleanon-shimmer 4.5s infinite ease-in-out;
}

@keyframes cleanon-shimmer {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}
