
        :root {
            --primary: #1e6fff;
            --primary-dark: #0f4ec7;
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --radius: 12px;
            --shadow: 0 8px 24px rgba(0,0,0,0.08);
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.5rem;
            --space-6: 2rem;
            --space-7: 3rem;
            --space-8: 4rem;
            --space-9: 5rem;
            --space-10: 6rem;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: "Inter", sans-serif;
            background: #f5f7fa;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* HEADER + NAV */
        .header {
    background: #000; /* BLACK NAV */
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

	.no-link {
  	color: inherit;
  	text-decoration: none;
  	cursor: normal;
	}

        .nav-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: var(--space-4) 0;
        }

        .nav-left { justify-self: start; }
        .nav-center { justify-self: center; }
        .nav-right { justify-self: end; }

        .logo {
            display: flex;
	    color: #fff;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            font-size: 1.3rem;
            letter-spacing: -0.4px;
        }

        .logo-mark {
            width: 26px;
            height: 26px;
            border-radius: 50% 50% 60% 60%;
            background: radial-gradient(circle at 30% 20%, #ffffff 0, #a9c9ff 35%, #1e6fff 100%);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

	

        .nav-toggle {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .nav-toggle span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
        }

        .nav {
            display: none;
            text-align: center;
            padding: 1rem 0;
        }

        .nav.open { display: block; }

        .nav ul { list-style: none; }
        .nav li { margin-bottom: 1rem; }

        .nav a {
            text-decoration: none;
            color: #fff;;
            font-weight: 600;
            position: relative;
            padding-bottom: 4px;
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: #fff;
            transition: width 0.3s ease;
        }

        .nav a:hover::after { width: 100%; }

        @media (min-width: 768px) {
            .nav { display: block !important; padding: 0; }
            .nav ul { display: flex; gap: 2rem; align-items: center; }
            .nav li { margin-bottom: 0; }
            .nav-toggle { display: none; }
        }

       .hero {
    position: relative;
    width: 100%;
    height: 70vh; /* SAME HEIGHT AS YOUR CURRENT HERO */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}


        .wc-hero-buttons {
            display: flex;
            justify-content: center;
            gap: var(--space-3);
        }

        

        .btn {
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn.primary { background: var(--primary); color: white; }
        .btn.primary:hover { background: var(--primary-dark); }

        .btn.secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        section { scroll-margin-top: 80px; }

        /* SERVICES */
        .wc-services {
            padding: var(--space-9) 0;
            background: #ffffff;
        }

        .wc-services h2 {
            text-align: center;
            margin-bottom: var(--space-6);
        }

        .wc-service-grid {
            display: grid;
            gap: var(--space-4);
        }

        @media (min-width: 768px) {
            .wc-service-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .wc-service-card {
            background: white;
            padding: var(--space-5);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .wc-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        }

        /* HOW IT WORKS */
        .how {
            padding: var(--space-9) 0;
            background: #f0f6ff;
        }

        .how h2 {
            text-align: center;
            margin-bottom: var(--space-6);
        }

        .how-grid {
            display: grid;
            gap: var(--space-4);
        }

        @media (min-width: 900px) {
    .how-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


        .how-step {
            background: white;
            padding: var(--space-5);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .how-step span {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: var(--space-3);
        }

        /* WHY US */
        .wc-why {
            padding: var(--space-9) 0;
            background: #eef5ff;
        }

        .wc-why h2 {
            text-align: center;
            margin-bottom: var(--space-5);
        }

        .wc-why-list {
            list-style: none;
            max-width: 700px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4);
        }

        .wc-why-list li {
            background: white;
            padding: var(--space-4);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .wc-why-list li::before {
            content: "✔";
            color: var(--primary);
            font-weight: bold;
        }

        /* TRUST */
        .trust {
            padding: var(--space-7) 0;
            background: white;
            text-align: center;
        }

        .trust-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .trust-item {
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* TESTIMONIALS + CAROUSEL */
        .testimonials {
            padding: var(--space-9) 0;
            background: #ffffff;
        }

        .testimonials h2 {
            text-align: center;
            margin-bottom: var(--space-6);
        }

        .testimonial-carousel {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            background: #f8faff;
            padding: var(--space-5);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            font-style: italic;
            display: none;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-nav {
            margin-top: var(--space-4);
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d0d7e6;
            cursor: pointer;
        }

        .testimonial-dot.active {
            background: var(--primary);
        }

        /* RECENT JOBS GALLERY */
        .gallery {
            padding: var(--space-9) 0;
            background: #eef5ff;
        }

        .gallery h2 {
            text-align: center;
            margin-bottom: var(--space-6);
        }

        .gallery-grid {
            display: grid;
            gap: var(--space-4);
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .gallery img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: block;
        }

      /* SECTION */
.areas {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

/* BADGE */
.areas-badge {
    background: #f7f7f7;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.badge-icon {
    font-size: 2.4rem;
    color: #4da3ff;
    display: block;
    margin-bottom: 0.8rem;
}

.areas-badge h2 {
    font-size: 2.2rem;
    margin: 0;
    color: #111;
    font-weight: 600;
}

.areas-badge p {
    margin-top: 0.6rem;
    font-size: 1.1rem;
    color: #444;
}

/* LIST */
.areas-list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.areas-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.areas-list li {
    background: #f7f7f7;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 1.05rem;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.areas-list li:hover {
    background: #ececec;
    transform: translateX(4px);
}

/* MOBILE */
@media (max-width: 700px) {
    .areas-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .areas-list ul {
        text-align: center;
    }
}


        /* CTA */
.wc-cta {
    text-align: center;
    padding: var(--space-9) 0;
    background: linear-gradient(135deg, #1e6fff, #0f4ec7);
    color: white;
}

.wc-cta .btn.primary {
    background: white;
    color: var(--primary-dark);
}

/* CONTACT SECTION (CTA ABOVE FOOTER) */
.contact-section {
    padding: 3rem 2rem 3.5rem; /* top | sides | bottom */
    text-align: center;
    background: black;
    margin-bottom: 0 !important;
}

.contact-section h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-sub {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem; /* reduced to tighten spacing */
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    display: inline-block;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.email {
    background: #0078ff;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* REMOVE ANY LAST-CHILD SPACING IN CTA */
.contact-section *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    color: rgba(148, 163, 184, 0.9);
    padding: 1.8rem 0;
    border-top: 1px solid rgba(55, 65, 81, 0.9);
    font-size: 0.85rem;
    margin-top: -0.5rem !important;
    padding-top: 1.8rem !important;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 0;
}

/* MINI LOGO IN WHITE BOX */
.footer-logo-box {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000000;
    font-family: "Montserrat";
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* FOOTER BRAND ROW */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-signature-inline {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(148,163,184,0.9);
}

.footer-signature-inline strong {
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}



        /* FLOATING BUTTONS */
        .float-quote,
        .float-whatsapp {
            position: fixed;
            right: 20px;
            border-radius: 50px;
            box-shadow: var(--shadow);
            font-weight: 600;
            text-decoration: none;
            z-index: 200;
        }

        .float-quote {
            bottom: 80px;
            background: var(--primary);
            color: white;
            padding: 0.9rem 1.4rem;
        }

        .float-whatsapp {
            bottom: 20px;
            background: #25D366;
            color: white;
            padding: 0.8rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
        }

        .float-whatsapp span {
            font-size: 1.2rem;
        }

        
        /* SCROLL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-zoom {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal-zoom.revealed {
            opacity: 1;
            transform: scale(1);
        }

        .reveal-slide {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal-slide.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 767px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .how-grid {
                grid-template-columns: 1fr 1fr;
            }
            .wc-why-list {
                grid-template-columns: 1fr;
            }
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }


/* Base style for all service cards with images */
.wc-service-card {
    position: relative;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Dark overlay for readability */
.wc-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.55)
    );
    z-index: 0;
}

.wc-service-card h3,
.wc-service-card p {
    position: relative;
    z-index: 1;
}

/* Individual backgrounds */
.wc-service-card.residential {
    background-image: url('res.jpg');
}

.wc-service-card.commercial {
    background-image: url('shop.jpg');
}

.wc-service-card.frames {
    background-image: url('sol.jpg');
}

/* MOBILE stack towns in a clean grid */
@media (max-width: 768px) {
    .areas-map {
        height: auto; /* let it grow naturally */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 1rem;
    }

    .area-item {
        position: static !important; /* remove absolute positioning */
        width: 100%;
        text-align: center;
    }
}


html {
    scroll-behavior: smooth;
}

.reviews-link {
    margin-top: 2rem;
    text-align: center;
}

.reviews-link a {
    display: inline-block;
    padding: 12px 22px;
    background: #0078ff;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.reviews-link a:hover {
    background: #005fcc;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* -------------------------------------- */
/* Gallery
/* -------------------------------------- */

:root {
    --primary: #1e6fff;
    --text-dark: #111;
    --text-light: #666;
    --space-4: 1rem;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(#ffffff, #f7f7f7);
    color: var(--text-dark);
    opacity: 0;
    animation: fadePageIn 0.6s ease forwards;
}

@keyframes fadePageIn {
    to { opacity: 1; }
}

/* -------------------------------------- */
/* NAVIGATION */
/* -------------------------------------- */

nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #000;
    padding: 10px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    border-bottom: none;

}

nav.shrink {
    padding: 10px 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
}

.nav-left { justify-self: start; }
.nav-center { justify-self: center; }
.nav-right { justify-self: end; }

.logo {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.4px;
}

.logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 60% 60%;
    background: radial-gradient(circle at 30% 20%, #ffffff 0, #a9c9ff 35%, #1e6fff 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;;
    border-radius: 2px;
}

.nav {
    display: none;
    text-align: center;
    padding: 1rem 0;
}

.nav.open { display: block; }

.nav ul { list-style: none; padding: 0; margin: 0; }
.nav li { margin-bottom: 1rem; }

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav a:hover::after { width: 100%; }

@media (min-width: 768px) {
    .nav { display: block !important; padding: 0; }
    .nav ul { display: flex; gap: 2rem; align-items: center; }
    .nav li { margin-bottom: 0; }
    .nav-toggle { display: none; }
}

/* -------------------------------------- */
/* SCROLL REVEAL */
/* -------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------- */
/* GALLERY HEADER */
/* -------------------------------------- */

.gallery-header {
    text-align: center;
    padding: 60px 20px 20px;
}

.gallery-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.gallery-header p {
    opacity: 0.7;
    font-size: 1.1rem;
}

/* -------------------------------------- */
/* LIGHTBOX GRID */
/* -------------------------------------- */

.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.lightbox-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.lightbox-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

/* LIGHTBOX POPUP */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* -------------------------------------- */
/* MASONRY LAYOUT */
/* -------------------------------------- */

.masonry {
    column-count: 3;
    column-gap: 15px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.masonry img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    break-inside: avoid;
    transition: 0.25s ease;
}

.masonry img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .masonry { column-count: 1; }
}

/* -------------------------------------- */
/* FADE-IN ANIMATION */
/* -------------------------------------- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* -------------------------------------- */
/* FLOATING WHATSAPP BUTTON */
/* -------------------------------------- */

.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.float-whatsapp:hover {
    transform: scale(1.05);
}

.float-whatsapp span {
    font-size: 1.2rem;
}

/* -------------------------------------- */
/* BACK TO TOP BUTTON */
/* -------------------------------------- */

#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

/* -------------------------------------- */
/* FOOTER */
/* -------------------------------------- */

.footer {
    background: black;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    margin-top: 20px;
    opacity: 1;
}
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 3rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s ease;
}

.lb-prev:hover, .lb-next:hover {
    background: rgba(255,255,255,0.35);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.split-info {
    padding: 4rem 2rem;
    background: #0a0a0a;
    color: white;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

.split-box h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: white;
}

/* MEET YOUR CLEANER */
.cleaner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cleaner-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden; /* IMPORTANT: clips the image into a circle */
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    flex-shrink: 0; /* prevents squashing in flex layouts */
}

.cleaner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* keeps proportions perfect */
    object-position: center;
    display: block;
}



.cleaner-text p {
    color: rgba(255,255,255,0.85);
}

/* FREQUENCY LIST */
.frequency-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.frequency-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
}

.frequency-list strong {
    color: #4da3ff;
}

.frequency-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* MOBILE */
@media (max-width: 640px) {
    .cleaner-inner {
        flex-direction: column;
        text-align: center;
    }
}

.guarantee-line {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    color: white;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}



 