:root {
    --ink: #0b0d12;
    --gold: #d6af52;
    --gold2: #f0d889;
    --cream: #f6f2e8;
    --muted: #666b73;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav {
    height: 86px;
    padding: 10px max(5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e2d5;
    background: #fff;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}
.brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}
.brand span {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.14em;
}
.brand b {
    font-family: Georgia, serif;
    font-size: 19px;
}
.brand small {
    font-size: 9px;
    color: #806927;
}
.navnote {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #5c6066;
}
.navnote b {
    color: #0b0d12;
}
.callpill {
    background: #0b0d12;
    color: #fff;
    padding: 13px 20px;
    border-radius: 4px;
    font-weight: 700;
}
.hero {
    min-height: 630px;
    padding: 86px max(6vw, 32px);
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;

    align-items: center;
    color: white;
    background: radial-gradient(circle at 80% 40%, #29240f 0, #0b0d12 38%, #050609 100%);
    position: relative;
    overflow: hidden;
}
.hero:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -260px;
    width: 540px;
    height: 540px;
    border: 1px solid #917b3c;
    border-radius: 50%;
    box-shadow:
        0 0 0 70px #ffffff05,
        0 0 0 140px #ffffff04;
}
.heroCopy,
.heroCard {
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;

    padding: 7px 14px;
    background: #fff4cf;
    border: 1px solid #e7c96b; text-transform: uppercase;
    border-radius: 50px;

    letter-spacing: 0.4px;
    box-shadow: 0 4px 12px rgba(184, 135, 24, 0.12);
}  
.dark1{font-size:13px;}

.eyebrow.dark {
    color: #222;
}
.hero h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 5.4vw, 42px);
    line-height: 1.1;

    max-width: 900px;
    margin: 0;
}
.hero h2 em {
    display: block;
    color: var(--gold2);
    font-style: normal;
}
.lead {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 750px;
}



.cardTop {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cardTop b {
    font-size: 18px;
}

.cardTop span {
    font-size: 15px;
    font-weight: 600;
    color: #e0b94f;
}









.ticks {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 10px;
    margin: 25px 0;
    color: #f0e9d7;
    font-size: 16px;
}
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 23px;
    border-radius: 3px;
    font-weight: 700;
}
.gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    color: #16130a;
}

.gold.wa {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.gold.wa span {
    display: inline-block;
    position: relative;
    animation: arrowMove 1.2s ease-in-out infinite;
}

/* Button ke andar moving shine */
.gold.wa::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: buttonShine 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes buttonShine {
    0% {
        left: -120%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}
.ghost {
    border: 1px solid #74683f;
    color: #fff;

    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ghost::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);

    animation: ghostShine 2.5s ease-in-out infinite;

    z-index: -1;
}

@keyframes ghostShine {
    0% {
        left: -120%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}
.micro {
    font-size: 16px;
    color: #fff;
}
.heroCard {
    border: 1px solid #8c783b;
    background: #101216;
    padding: 32px;
    box-shadow: 18px 18px 0 #d6af5214;
}
.cardTop span {
    color: var(--gold2);
    font-size: 15px; margin-top:5px;

}
.cardTop b {
    display: block;
    font-family: Georgia, serif;
    font-size: 24px;
    margin-top: 9px;
}
.heroCard ul {
    padding: 0;
    list-style: none;
    margin: 24px 0;
}
.heroCard li {
    border-top: 1px solid #292b31;
    padding: 13px 0;
    color: #d5d5d5;
    font-size: 16px;
}
.heroCard li:before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
}
.heroCard a {
    display: flex;
    justify-content: space-between;
    background: var(--gold);
    color: #111;
    padding: 16px;
    font-weight: 700;
}
.heroCard small {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #888;
}


.rejectionNote {
    margin-top: 16px;
    padding-left: 12px;
    border-left: 3px solid #f0d889;
    color: #d8d8d8;
    font-size: 13px;
    line-height: 1.55;
}

.rejectionNote strong {
    color: #f0d889;
    font-weight: 700;
    display: inline;
    animation: rejectionPulse 1.8s ease-in-out infinite;
}

@keyframes rejectionPulse {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 7px rgba(255, 80, 80, 0.35);
    }
}



.scrapBadge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;

    width: fit-content;
    padding: 7px 14px;

    margin-bottom: 12px;

    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px;

    color: #8a6414 !important;

    background: linear-gradient(
        135deg,
        #fff8df,
        #fff2bd
    );

    border: 1px solid rgba(184, 135, 24, 0.35);
    border-radius: 50px;

    box-shadow:
        0 4px 12px rgba(184, 135, 24, 0.12);

    position: relative;
    overflow: hidden;
}

/* Small indicator */
.badgeDot {
    width: 7px;
    height: 7px;
    background: #d49b18;
    border-radius: 50%;
    flex-shrink: 0;

    box-shadow: 0 0 0 4px rgba(212, 155, 24, 0.12);

    animation: badgePulse 1.8s ease-in-out infinite;
}

/* Soft shine */
.scrapBadge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.65),
        transparent
    );

    transform: skewX(-20deg);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes badgeShine {
    0%, 55% {
        left: -80%;
    }

    100% {
        left: 130%;
    }
}








.proofbar {
    background: var(--gold);
    padding: 20px max(5vw, 24px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    font-size: 16px;
}
.proofbar b {
    font-size: 15px;
    margin-right: 20px;
}
.proofbar i {
    font-style: normal;
}
.section {
    padding: 40px max(6vw, 32px);
}
.warning {
    background: var(--cream);
}
.sectionHead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}
.sectionHead h2,
.clearance h2,
.broom h2,
.why h2,
.audience h2,
.finalCta h2 {
    font-family: Georgia, serif;
    font-size: clamp(35px, 4vw, 42px);
    line-height: 1.08;
    margin: 0 0 17px;
}
.sectionHead p:last-child,
.why > div > p:last-child {
    color:#111;
    line-height: 1.7;
}
.questionGrid {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.questionGrid article {
    background: #fff;
    padding: 23px;
    display: flex;
    gap: 18px;
    border: 1px solid #e3dccd;
}
.questionGrid article:last-child {
    grid-column: 1/-1;
}
.questionGrid article > span {
    font-family: Georgia, serif;
    color: #a78943;
    font-size: 28px;
}
.questionGrid h3 {
    margin: 2px 0 7px;
    font-size: 17px;
}
.questionGrid p {
    margin: 0;
    color: #111;
    line-height: 1.55;
    font-size: 16px;
}
.center {
    text-align: center;
    margin-top: 32px;
}
.darkbtn {
    background: #101216;
    color: #fff;
    border: 1px solid #101216;
    position: relative;
    overflow: hidden;
    animation: darkBtnPulse 2s ease-in-out infinite;
}

.darkbtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    animation: darkBtnShine 2.5s ease-in-out infinite;
}

@keyframes darkBtnShine {
    0% {
        left: -120%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes darkBtnPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(16, 18, 22, 0);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 18, 22, 0.25);
    }
}
.services {
    background: #fff;
}
.serviceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: auto;
}
.serviceGrid article {
    border: 1px solid #e5e1d7;
    padding: 15px;
    min-height: 275px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}
.serviceGrid article:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 16px 35px #0000000c;
}
.serviceNo {
    color: #bfa65f;
    font-family: Georgia, serif;
}
.serviceGrid h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin: 5px 0 2px;
}
.serviceGrid p {
    color: #111;
    line-height: 1.65;
    font-size: 16px;
}
.serviceGrid a {

    color: #715c25;
    font-weight: 700;
    font-size: 15px;
}
.clearance {
    padding: 40px max(6vw, 32px);
    background: #0b0d12;
    color: white;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 7vw;
}
.clearance > div > p:not(.eyebrow) {
    color: #fff;
    line-height: 1.7;
    max-width: 750px;
}
.flow {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin: 28px 0;
}
.flow b {
    border: 1px solid #4e4937;
    padding: 9px 12px;
    font-size: 12px;
}
.flow i {
    color: var(--gold);
    font-style: normal;
}
.clearance aside {
    border-left: 1px solid #443d28;
    padding-left: 35px;
}
.clearance aside h3 {
    font-family: Georgia, serif;
    font-size: 25px;
}
.clearance ul {
    padding: 0;
    list-style: none;
}
.clearance li {
    padding: 10px 0;
    color: #ccc;
    border-bottom: 1px solid #222;
}
.clearance li:before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
}
.broom {

    max-width: 1100px;
    margin: auto;
    gap: 45px;
    align-items: center;
}
.broomMark {
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 70px;
    color: #967a35;
    background: #f9f5e9;
}
.broom p {
    color: #111;
    line-height: 1.75;
}
.why {
    background: var(--cream);
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 8vw;
}
.whyList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.stepGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: auto;
}
.stepGrid article {
    padding: 28px;
    border-left: 1px solid #ddd;
}
.stepGrid b {
    font-family: Georgia, serif;
    font-size: 34px;
    color: #b59850;
}
.stepGrid h3 {
    font-size: 18px;
    margin: 25px 0 10px;
}
.stepGrid p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
.audience {
    background: #d7b052;
    padding: 70px max(6vw, 32px);
    text-align: center;
}
.audience > p {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: bold;
}
.audience div {
    max-width: 1000px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.audience span {
    background: #0b0d12;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
}
.faqGrid {
    max-width: 900px;
    margin: auto;
}
.faq details {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}
.faq summary {
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.faq summary span {
    color: #9a7e37;
    font-size: 20px;
}
.faq details p {
    color: #111;
    line-height: 1.7;
    padding-right: 40px;
}
.finalCta {
    padding: 40px 24px;
    text-align: center;
    background: #0a0b0e;
    color: white;
}
.finalCta > p:not(.eyebrow) {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}
.finalCta .actions {
    justify-content: center;
}
.finalCta small {
    display: block;
    margin-top: 25px;
    color: #fff; font-size:14px;
}
footer {
    padding: 35px max(6vw, 32px) 35px;
    background: #050609;
    color: #ddd;
    display: grid;
    grid-template-columns: 1fr 0.6fr 1.4fr;
    gap: 30px;
    border-top: 1px solid #222; 
}
.footbrand img {
    width: 70px;
    height: 70px;
}

.footbrand b {
    color: white;
}
footer > div:not(.brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    line-height: 1.6;
}
footer > div > b {
    color: var(--gold2);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
}
footer p {
    margin: 0;
    color: #fff; font-size:16px;
}
footer a {
    margin: 0;
    color: #fff; font-size:16px;
}
.mobileBar {
    display: none;
}
@media (max-width: 850px) {
    .nav {
        height: 74px;
        padding: 7px 15px;
    }
    .brand img {
        width: 54px;
        height: 54px;
    }
    .brand b {
        font-size: 15px;
    }
    .navnote {
        display: none;
    }
    .callpill {
        font-size: 12px;
        padding: 11px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 22px;
    }
    .hero h2 {
        font-size: 32px;
    }
    .heroCard {
        padding: 24px;
    }
    .proofbar {
        overflow: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }
    .proofbar b {
        display: none;
    }
    .section {
        padding: 65px 22px;
    }
    .questionGrid,
    .serviceGrid,
    .clearance,
    .why {
        grid-template-columns: 1fr;
    }
    .questionGrid article:last-child {
        grid-column: auto;
    }
    .serviceGrid article {
        min-height: 230px;
    }
    .clearance {
        padding: 65px 22px;
    }
    .clearance aside {
        border-left: 0;
        border-top: 1px solid #443d28;
        padding: 25px 0 0;
    }
    .broom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .broomMark {
        margin: auto;
    }
    .whyList {
        grid-template-columns: 1fr;
    }
    .stepGrid {
        grid-template-columns: 1fr 1fr;
    }
    .audience {
        padding: 60px 22px;
    }
    footer {
        grid-template-columns: 1fr;
        padding-bottom: 35px;
    }
    .mobileBar {
        position: fixed;
        z-index: 20;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0 -5px 20px #0003;
    }
    .mobileBar a {
        padding: 16px;
        text-align: center;
        background: #15171c;
        color: white;
        font-weight: bold;
        font-size: 13px;
    }
    .mobileBar a:last-child {
        background: var(--gold);
        color: #111;
    }
}
@media (max-width: 520px) {
    .hero h2 {
        font-size: 26px;
    }
    .ticks {
        grid-template-columns: 1fr;
    }
    .lead {
        font-size: 16px;
    }
    .actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .sectionHead h2,
    .clearance h2,
    .broom h2,
    .why h2,
    .audience h2,
    .finalCta h2 {
        font-size: 32px;
    }
    .stepGrid {
        grid-template-columns: 1fr;
    }
    .stepGrid article {
        border-left: 0;
        border-top: 1px solid #ddd;
    }
    .broomMark {
        width: 120px;
        height: 120px;
    }
    .flow {
        gap: 7px;
    }
    .flow b {
        padding: 8px;
    }
    .proofbar {
        font-size: 11px;
    }
}

.hero {
    min-height: 690px;
    background:
        linear-gradient(
            90deg,
            rgba(3, 11, 20, 0.5) 0%,
            rgba(3, 11, 20, 0.5) 40%,
            rgba(3, 11, 20, 0.5) 68%,
            rgba(3, 11, 20, 0.5) 100%
        ),
        url("assets/cityline-scrap-hero.webp") center/cover no-repeat;
}
.directBadge {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    padding: 10px 16px;
    border-left: 3px solid var(--gold);
    background: #050b12cc;
    color: #fff;    font-size: 16px;
    font-weight:700;
}
.heroGlow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 70% 35%, rgba(214, 175, 82, 0.12), transparent 32%);
}


.microHighlight {
    display: inline-block;
    color: #f5d98a !important;
    font-weight: 600;
    animation: softGlow 2s ease-in-out infinite;
}

@keyframes softGlow {
    0%, 100% {
        opacity: 0.75;
        text-shadow: 0 0 0 rgba(245, 217, 138, 0);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(245, 217, 138, 0.45);
    }
}


.service-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.serviceGrid article:hover .service-img img {
    transform: scale(1.06);
}




.broomInner {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 55px;

    padding: 50px 55px;

    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================
   ANIMATED ICON
========================= */

.broomIcon {
    width: 125px;
    height: 125px;
    min-width: 125px;

    border-radius: 50%;
    background: #101216;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.18),
        0 0 0 10px rgba(166, 197, 55, 0.10);

    animation: broomPulse 2.5s ease-in-out infinite;
}

.broomIcon span {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d6af52;
    color: #101216;

    font-size: 38px;
    font-weight: 700;

    position: relative;
    z-index: 3;

    animation: checkPop 2.5s ease-in-out infinite;
}

/* Rotating outer ring */

.broomIconRing {
    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border: 2px dashed #d6af52;

    animation: ringRotate 7s linear infinite;
}

/* Pulse */

@keyframes broomPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.18),
            0 0 0 10px rgba(166, 197, 55, 0.10);
    }

    50% {
        transform: scale(1.05);
        box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.20),
            0 0 0 18px rgba(166, 197, 55, 0.04);
    }
}

/* Check animation */

@keyframes checkPop {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Ring rotation */

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================
   CONTENT
========================= */

.broomContent {
    flex: 1;
}

.broom .eyebrow {
    margin: 0 0 12px;
    color: #111;
    font-size: 13px;
    font-weight: 700;

}

.broomContent h2 {
    margin: 0 0 18px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;

    color: #101216;
    font-weight: 700;
}

.broomContent h2 span {
    color: #d6af52;
}

.broomText {
    max-width: 780px;

    margin: 0 0 25px;

    color: #5d6268;

    font-size: 17px;
    line-height: 1.75;
}

.broomPromise {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    border-radius: 50px;

    background: #101216;
    color: #fff;

    font-size: 15px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Auto inner shine */
.broomPromise::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );

    transform: skewX(-20deg);

    animation: broomPromiseShine 2.8s ease-in-out infinite;

    z-index: -1;
}

@keyframes broomPromiseShine {

    0% {
        left: -120%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }

}
.broomPromise span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d6af52;
    color: #101216;

    font-size: 14px;
    font-weight: 700;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .broom {
        padding: 55px 15px;
    }

    .broomInner {
        flex-direction: column;
        text-align: center;

        gap: 30px;

        padding: 40px 22px;

        border-radius: 20px;
    }

    .broomIcon {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .broomIcon span {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .broomContent h2 {
        font-size: 30px;
    }

    .broomText {
        font-size: 15px;
        line-height: 1.65;
    }

    .broomPromise {
        justify-content: center;
        font-size: 13px;
        padding: 12px 16px;
    }
}




.why {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;

    padding: 90px 7%;

    background:
        radial-gradient(circle at 90% 20%, rgba(166, 197, 55, 0.10), transparent 30%),
        #f6f7f3;

    overflow: hidden;
}

/* Decorative circle */

.why::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;

    border: 1px solid rgba(166, 197, 55, 0.15);

    right: -170px;
    bottom: -170px;
}

.whyIntro {
    position: relative;
    z-index: 2;
}

.whyIntro .eyebrow {
    margin-bottom: 12px;

    color: #111;
    font-size: 13px;
    font-weight: 700;

}

.whyIntro h2 {
    margin: 0 0 18px;

    color: #101216;

    font-size: clamp(32px, 4vw, 38px);
    line-height: 1.08;
    font-weight: 700;
}

.whyIntro h2 span {
    color: #d6af52;
}

.whyIntro > p:not(.eyebrow) {
    max-width: 500px;

    margin: 0;

    color: #111;

    font-size: 17px;
    line-height: 1.7;
}

/* Badge */

.whyBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
    padding: 10px 18px 10px 10px;

    background: #101216;
    color: #fff;

    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.whyBadge strong {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d6af52;
    color: #101216;

    font-size: 15px;
}

.whyBadge span {
    font-size: 16px;
    font-weight: 600;
}


/* =========================
   WHY LIST
========================= */

.whyList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    position: relative;
    z-index: 2;
}

.whyItem {
    min-height: 64px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 17px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;

    color: #30343a;

    font-size: 16px;
    font-weight: 600;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.whyItem i {
    width: 29px;
    height: 29px;
    min-width: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(166, 197, 55, 0.16);
    color: #d6af52;

    font-style: normal;
    font-size: 14px;
    font-weight: 900;
}

.whyItem:hover {
    transform: translateY(-4px);

    border-color: rgba(166, 197, 55, 0.45);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.whyItem:hover i {
    background: #d6af52;
    color: #101216;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .why {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 60px 18px;
    }

    .whyIntro {
        text-align: center;
    }

    .whyIntro > p:not(.eyebrow) {
        font-size: 15px;
        margin: auto;
    }

    .whyIntro h2 {
        font-size: 32px;
    }

    .whyBadge {
        margin-top: 22px;
    }

    .whyList {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .whyItem {
        min-height: 58px;
        padding: 12px 14px;
        font-size: 13.5px;
    }
}







.steps {
    position: relative;
    padding: 90px 7%;

    background: #101216;
    overflow: hidden;
}

/* Decorative background */

.steps::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(166, 197, 55, 0.08);

    top: -280px;
    right: -180px;
}

.steps::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(166, 197, 55, 0.10);

    bottom: -220px;
    left: -150px;
}


/* =========================
   SECTION HEADING
========================= */

.steps .sectionHead {
    max-width: 750px;
    margin: 0 auto 55px;

    text-align: center;

    position: relative;
    z-index: 2;
}

.steps .eyebrow {
    margin: 0 0 12px;

    color: #111;

    font-size: 13px;
    font-weight: 700;

}

.steps .sectionHead h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 700;
}

.steps .sectionHead h2 span {
    color: #d6af52;
}

.stepsIntro {
    max-width: 650px;

    margin: 18px auto 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   STEP GRID
========================= */

.stepGrid {
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    position: relative;
    z-index: 2;
}

/* Connecting line */

.stepGrid::before {
    content: "";

    position: absolute;

    top: 43px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(166, 197, 55, 0.45),
        rgba(166, 197, 55, 0.45),
        transparent
    );

    z-index: -1;
}


/* =========================
   STEP CARD
========================= */

.stepCard {
    position: relative;

    padding: 28px 25px 30px;



    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 20px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.stepCard:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(166, 197, 55, 0.45);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}


/* Top */

.stepTop {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}


/* Number */

.stepNumber {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d6af52;
    color: #101216;

    font-size: 15px;
    font-weight: 900;

    box-shadow: 0 0 0 7px rgba(166, 197, 55, 0.10);

    animation: stepPulse 2.5s ease-in-out infinite;
}


/* Arrow / Check */

.stepIcon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #d6af52;

    font-size: 17px;

    transition: 0.3s ease;
}

.stepCard:hover .stepIcon {
    background: #d6af52;
    color: #101216;
    border-color: #d6af52;
}


/* Content */

.stepCard h3 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 20px;
    font-weight: 750;
}

.stepCard p {
    margin: 0;

    color:#fff;

    font-size: 16px;
    line-height: 1.7;
}


/* Number animation */

@keyframes stepPulse {

    0%, 100% {
        transform: scale(1);

        box-shadow:
            0 0 0 7px rgba(166, 197, 55, 0.10);
    }

    50% {
        transform: scale(1.06);

        box-shadow:
            0 0 0 12px rgba(166, 197, 55, 0.035);
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .steps {
        padding: 75px 30px;
    }

    .stepGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepGrid::before {
        display: none;
    }

    .stepCard {
        min-height: 230px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .steps {
        padding: 60px 18px;
    }

    .steps .sectionHead {
        margin-bottom: 35px;
    }

    .steps .sectionHead h2 {
        font-size: 31px;
    }

    .stepsIntro {
        font-size: 14px;
        line-height: 1.65;
    }

    .stepGrid {
        grid-template-columns: 1fr;

        gap: 14px;

        max-width: 520px;
    }

    .stepCard {
        min-height: auto;

        padding: 22px 20px 25px;

        border-radius: 17px;
    }

    .stepTop {
        margin-bottom: 24px;
    }

    .stepNumber {
        width: 48px;
        height: 48px;

        font-size: 14px;
    }

    .stepIcon {
        width: 34px;
        height: 34px;
    }

    .stepCard h3 {
        font-size: 19px;
    }

    .stepCard p {
        font-size: 14px;
    }

}









.copyrightBar {
    background: #0a0b0d;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.copyrightInner {
    max-width: 1200px;
    margin: auto;

    padding: 18px 30px;


    gap: 20px;
}

.copyrightInner p {
    margin: 0;

    color: #fff;

    font-size: 14px;
    line-height: 1.5; text-align: center;
}


/* Mobile */

@media (max-width: 767px) {

    .copyrightInner {
        flex-direction: column;
        text-align: center;

        padding: 16px 20px;
        gap: 5px;
    }

    .copyrightInner p {
        font-size: 14px;
    }

    .copyrightInner p:last-child {
        text-align: center;
    }
}









/* =================================
   DESKTOP FLOATING ACTIONS
================================= */

.floatingActions {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9998;
}

.floatBtn {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 21px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: transform 0.3s ease;
}

.floatBtn:hover {
    transform: scale(1.10);
    color: #fff;
}

.callFloat {
    background: #d7b052;
    animation: floatingPulse 2.5s ease-in-out infinite;
}

.whatsappFloat {
    background: #25D366;
    animation: floatingPulse 2.5s ease-in-out infinite 0.5s;
}

@keyframes floatingPulse {

    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
    }

    50% {
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.20),
            0 0 0 8px rgba(166, 197, 55, 0.10);
    }
}


/* =================================
   MOBILE BOTTOM CTA
================================= */

.mobileBottomCta {
    display: none;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .floatingActions {
        display: none;
    }

   .mobileBottomCta {
    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;

    gap: 7px;

    padding: 8px;

    background: #101216;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.20);

    z-index: 99999;
}

.mobileCta {
    min-width: 0;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 0;
    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: transform 0.25s ease;
}

.mobileCta i {
    font-size: 16px;
    flex-shrink: 0;
}


/* Call */

.callCta {
    background: #fff;
    color: #101216;
}

.callCta:hover {
    color: #101216;
}


/* WhatsApp */

.whatsappCta {
    background: #25D366;
    color: #fff;
}

.whatsappCta:hover {
    color: #fff;
}


/* Enquire */

.enquireCta {
    background: #a6c537;
    color: #101216;

    cursor: pointer;

    animation: enquireGlow 2.5s ease-in-out infinite;
}

.enquireCta:hover {
    color: #101216;
}


/* Enquire auto animation */

@keyframes enquireGlow {

    0%, 100% {
        box-shadow: 0 0 0 rgba(166, 197, 55, 0);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(166, 197, 55, 0.12);
    }
}

}
/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .mobileBottomCta {
        display: grid;
    }

    body {
        padding-bottom: 72px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .mobileBottomCta {
        gap: 5px;
        padding: 7px;
    }

    .mobileCta {
        height: 48px;
        font-size: 13px;
        border-radius: 8px;
        gap: 5px;
    }

    .mobileCta i {
        font-size: 14px;
    }
}











.enquiryOverlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 100000;
}

.enquiryOverlay.active {
    opacity: 1;
    visibility: visible;
}

.enquiryBox {
    width: 100%;
    max-width: 460px;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    position: relative;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.30);

    transform: translateY(25px) scale(0.96);

    transition: 0.35s ease;
}

.enquiryOverlay.active .enquiryBox {
    transform: translateY(0) scale(1);
}


/* Close */

.enquiryClose {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: #101216;
    color: #fff;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Header */

.enquiryHeader {
    padding-right: 35px;
    margin-bottom: 25px;
}

.enquiryHeader span {
    color: #71851e;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.enquiryHeader h2 {
    margin: 7px 0 8px;

    color: #101216;

    font-size: 22px;
    line-height: 1.15;
}

.enquiryHeader p {
    margin: 0;

    color: #111;

    font-size: 14px;
    line-height: 1.5;
}


/* Form */

.formGroup {
    margin-bottom: 16px;
}

.formGroup label {
    display: block;

    margin-bottom: 6px;

    color: #25282d;

    font-size: 13px;
    font-weight: 700;
}

.formGroup input,
.formGroup select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 9px;

    background: #f9faf8;

    color: #202328;

    font-size: 14px;

    outline: none;

    transition: 0.25s ease;
}

.formGroup input:focus,
.formGroup select:focus {
    border-color: #a6c537;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(166, 197, 55, 0.12);
}


/* Submit */

.enquirySubmit {
    width: 100%;
    height: 52px;

    margin-top: 5px;

    border: 0;
    border-radius: 9px;

    background: #101216;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    position: relative;
    overflow: hidden;
}

.enquirySubmit span {
    margin-left: 8px;

    display: inline-block;

    animation: enquiryArrow 1.2s ease-in-out infinite;
}

@keyframes enquiryArrow {

    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}


/* Mobile */

@media (max-width: 480px) {

    .enquiryOverlay {
        padding: 15px;
    }

    .enquiryBox {
        padding: 28px 20px;
        border-radius: 17px;
    }

    .enquiryHeader h2 {
        font-size: 24px;
    }

}

.formGroup textarea {
    width: 100%;
    min-height: 90px;

    padding: 13px 14px;

    border: 1px solid #ddd;
    border-radius: 9px;

    background: #f9faf8;
    color: #202328;

    font-size: 14px;
    line-height: 1.5;

    resize: vertical;
    outline: none;

    transition: 0.25s ease;
}

.formGroup textarea:focus {
    border-color: #a6c537;
    background: #fff;

    box-shadow: 0 0 0 3px rgba(166, 197, 55, 0.12);
}

.enquiryNote {
    margin: 14px 0 0;

    color: #111;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}
/* ================================
   DIRECT BADGE - DESKTOP
================================ */

.directBadge {

    white-space: nowrap !important;
    overflow: visible !important;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.highlightText {
    display: inline !important;
    white-space: nowrap;
    color: #f0d889;
    font-weight: 700;
    position: relative;
}

.highlightText::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #f0d889;
    animation: blinkUnderline 1.2s ease-in-out infinite;
}

@keyframes blinkUnderline {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 767px) {

    .directBadge {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
        padding: 12px 14px !important;
        box-sizing: border-box;
    }

    .directBadge .normalText {
        display: inline !important;
    }

    .directBadge .highlightText {
        display: inline-block !important;
        position: relative !important;
        white-space: nowrap !important;

        color: #f0d889 !important;
        font-weight: 700 !important;
    }

    .directBadge .highlightText::after {
        content: "" !important;

        position: absolute !important;
        left: 0 !important;
        bottom: -3px !important;

        width: 100% !important;
        height: 2px !important;

        background: #f0d889 !important;
        border-radius: 10px;

        animation: phoneBlinkLine 1.3s ease-in-out infinite !important;
    }
}

@keyframes phoneBlinkLine {

    0% {
        opacity: 0;
        transform: scaleX(0.2);
        transform-origin: left center;
    }

    40% {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }

    70% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0;
        transform: scaleX(0.2);
        transform-origin: right center;
    }
}




/* =========================================================
   DESKTOP ZOOM / SMALLER LAPTOP FIX
   Keeps 100% layout unchanged
========================================================= */

@media (min-width: 992px) and (max-width: 1400px) {

    .hero {
        grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.75fr);
        gap: 28px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    /* LEFT CONTENT */
    .heroCopy {
        min-width: 0;
    }

    .hero h2 {
        font-size: 40px;
        max-width: 760px;
    }

    .lead {
        max-width: 720px;
        font-size: 15px;
    }

    /* DIRECT BADGE */
    .directBadge {
        max-width: 100% !important;
        font-size: 17px;
    }

    /* FEATURES */
    .ticks {
        gap: 8px 20px;
        font-size: 15px;
    }

    /* BUTTONS */
    .actions {
        margin-top: 24px;
    }

    .btn {
        padding: 15px 20px;
        gap: 14px;
    }

    /* RIGHT CARD */
    .heroCard {
        width: 100%;
        max-width: 410px;
        padding: 28px;
        box-sizing: border-box;
    }

    .cardTop b {
        font-size: 23px;
    }

    .cardTop span {
        font-size: 14px;
    }

    .heroCard ul {
        margin: 20px 0;
    }

    .heroCard li {
        padding: 11px 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .heroCard a {
        padding: 15px;
        font-size: 15px;
    }

    .heroCard small {
        font-size: 12px;
        margin-top: 13px;
    }

    .rejectionNote {
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.5;
    }
}