:root {
    --wm-light: #E6E6E6;
    --wm-dark: #242424;
    --wm-dark-2: #343434;
    --wm-dark-3: #5D5D5D;
    --wm-button: #696B5D;
    --wm-white: #ffffff;
    --wm-black: #151515;
    --wm-border: rgba(36, 36, 36, .13);
    --wm-shadow: 0 22px 55px rgba(0, 0, 0, .12);
    --wm-radius: 8px;
    --wm-header: 82px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--wm-light);
    color: var(--wm-dark);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: var(--wm-header)
}

a {
    text-decoration: none;
    color: inherit
}

img,
video,
iframe {
    display: block;
    max-width: 100%
}

button,
input,
select,
textarea {
    font-family: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto
}

.container-wide {
    width: min(1380px, 94%);
    margin: 0 auto
}

.section {
    padding: 90px 0
}

.section-light {
    background: var(--wm-light)
}

.section-white {
    background: #fff
}

.section-dark {
    background: var(--wm-dark);
    color: #fff
}

.section-dark-2 {
    background: var(--wm-dark-2);
    color: #fff
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 13px;
    background: rgba(105, 107, 93, .12);
    border: 1px solid rgba(105, 107, 93, .22);
    border-radius: var(--wm-radius);
    color: var(--wm-button);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px
}

.section-dark .section-kicker,
.section-dark-2 .section-kicker {
    background: rgba(230, 230, 230, .08);
    border-color: rgba(230, 230, 230, .14);
    color: var(--wm-light)
}

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -.04em;
    color: inherit
}

h1 {
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 950;
    text-transform: uppercase
}

h2 {
    font-size: clamp(30px, 3.7vw, 54px);
    font-weight: 950
}

h3 {
    font-size: 22px;
    font-weight: 900
}

.lead {
    font-size: 18px;
    color: var(--wm-dark-3);
    font-weight: 500;
    max-width: 850px
}

.section-dark .lead,
.section-dark-2 .lead {
    color: #d0d0d0
}

.center {
    text-align: center
}

.center .lead {
    margin: 14px auto 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 49px;
    padding: 0 22px;
    border-radius: var(--wm-radius);
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 14px;
    transition: .22s ease;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--wm-button);
    color: #fff;
    border-color: var(--wm-button)
}

.btn-primary:hover {
    background: var(--wm-dark-3);
    border-color: var(--wm-dark-3)
}

.btn-dark {
    background: var(--wm-dark);
    color: #fff;
    border-color: var(--wm-dark)
}

.btn-light {
    background: var(--wm-light);
    color: var(--wm-dark);
    border-color: var(--wm-light)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .27)
}

.btn-outline:hover {
    background: #fff;
    color: var(--wm-dark)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--wm-header);
    z-index: 9999;
    background: rgba(230, 230, 230, .96);
    border-bottom: 1px solid rgba(36, 36, 36, .14);
    display: flex;
    align-items: center
}

.header-inner {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    gap: 22px;
    align-items: center
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--wm-button);
    color: #fff;
    font-weight: 950;
    font-size: 16px;
    letter-spacing: -1px
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-text strong {
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -1px
}

.brand-text small {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: var(--wm-dark-3)
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 900
}

.nav a {
    padding: 30px 0;
    border-bottom: 3px solid transparent;
    color: var(--wm-dark)
}

.nav a:hover,
.nav a.active {
    border-bottom-color: var(--wm-button);
    color: var(--wm-button)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.speak-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wm-dark);
    color: #fff;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase
}

.menu-btn {
    display: none;
    width: 43px;
    height: 43px;
    border: 0;
    background: var(--wm-dark);
    border-radius: var(--wm-radius);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 10px
}

.mobile-nav {
    display: none;
    position: absolute;
    top: var(--wm-header);
    left: 0;
    right: 0;
    background: var(--wm-dark);
    color: #fff;
    padding: 10px 4% 18px
}

.mobile-nav.show {
    display: block
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-weight: 900
}

.hero {
    background: var(--wm-light);
    padding: 46px 0 80px
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: stretch;
    gap: 28px
}

.hero-copy {
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
    box-shadow: var(--wm-shadow)
}

.hero-copy p {
    margin-top: 22px;
    max-width: 720px;
    font-size: 17px;
    color: var(--wm-dark-3);
    font-weight: 500
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-form-box {
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 24px;
    box-shadow: var(--wm-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.form-heading {
    margin-bottom: 18px
}

.form-heading h2 {
    font-size: 24px
}

.form-heading p {
    font-size: 13px;
    color: var(--wm-dark-3);
    font-weight: 800;
    margin-top: 8px
}

.estimate-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.estimate-form input[name="address"],
.estimate-form input[name="email"],
.estimate-form button,
.estimate-form .form-alert,
.estimate-form .phone-wrap {
    grid-column: 1/-1
}

.form-row-2 {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.form-control,
.phone-wrap {
    width: 100%;
    height: 49px;
    border: 1px solid rgba(36, 36, 36, .18);
    border-radius: var(--wm-radius);
    background: var(--wm-light);
    padding: 0 14px;
    color: var(--wm-dark);
    font-size: 14px;
    font-weight: 800;
    outline: none
}

textarea.form-control {
    min-height: 130px;
    height: auto;
    padding-top: 14px;
    resize: vertical
}

.phone-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.phone-code {
    min-width: 62px;
    height: 31px;
    background: var(--wm-dark);
    color: #fff;
    border-radius: var(--wm-radius);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900
}

.phone-wrap input {
    border: 0;
    outline: 0;
    background: transparent;
    flex: 1;
    font-weight: 800;
    min-width: 0
}

.form-alert {
    display: none;
    padding: 12px;
    border-radius: var(--wm-radius);
    font-weight: 800;
    font-size: 13px
}

.form-alert.success {
    display: block;
    background: #e9f0e7;
    color: #28301f;
    border: 1px solid rgba(105, 107, 93, .24)
}

.form-alert.error {
    display: block;
    background: #f4e7e7;
    color: #6b1e1e;
    border: 1px solid rgba(80, 0, 0, .12)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.split-content p {
    margin-top: 18px
}

.split-media {
    height: 100%;
    min-height: 500px;
    border-radius: var(--wm-radius);
    overflow: hidden;
    border: 1px solid var(--wm-border);
    box-shadow: var(--wm-shadow);
    background: var(--wm-dark-2)
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.floating-collage {
    position: relative;
    min-height: 560px
}

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    box-shadow: var(--wm-shadow);
    padding: 9px;
    overflow: hidden
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px
}

.float-card.one {
    left: 0;
    top: 0;
    width: 68%;
    height: 385px
}

.float-card.two {
    right: 0;
    bottom: 0;
    width: 70%;
    height: 390px
}

.feature-box {
    margin-top: 26px;
    background: #fff;
    border: 1px solid var(--wm-border);
    border-left: 5px solid var(--wm-button);
    border-radius: var(--wm-radius);
    padding: 24px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .07)
}

.feature-box ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.feature-box li {
    position: relative;
    padding-left: 24px;
    font-weight: 700;
    color: var(--wm-dark-3)
}

.feature-box li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--wm-button);
    border-radius: 50%
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px
}

.check-item {
    background: rgba(105, 107, 93, .10);
    border: 1px solid rgba(105, 107, 93, .22);
    border-radius: var(--wm-radius);
    padding: 13px 14px;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px
}

.check-item span {
    width: 23px;
    height: 23px;
    background: var(--wm-button);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    flex: none
}

.service-section {
    background: var(--wm-dark);
    color: #fff
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: stretch
}

.service-grid .split-media {
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px
}

.card {
    background: #fff;
    color: var(--wm-dark);
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 30px 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .11)
}

.card p {
    margin-top: 14px;
    color: var(--wm-dark-3);
    font-size: 15px;
    font-weight: 500
}

.dark-card {
    background: var(--wm-dark-2);
    color: #fff;
    border-color: rgba(255, 255, 255, .12)
}

.dark-card p {
    color: #d5d5d5
}

.cta-strip {
    background: var(--wm-dark);
    color: #fff;
    border-radius: var(--wm-radius);
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--wm-shadow)
}

.cta-strip p {
    color: #d8d8d8;
    max-width: 760px;
    margin-top: 10px
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 42px
}

.package {
    position: relative;
    background: #f1f1f1;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    min-height: 680px
}

.package.popular {
    background: #fff;
    border: 2px solid var(--wm-button)
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--wm-button);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase
}

.package h3 {
    font-size: 24px;
    text-align: center
}

.package .subtitle {
    text-align: center;
    font-weight: 900;
    color: var(--wm-dark);
    font-size: 14px;
    margin-top: 4px
}

.package .package-text {
    text-align: center;
    color: var(--wm-dark-3);
    margin: 24px 0;
    font-size: 14px;
    font-weight: 600
}

.package ul {
    list-style: none;
    display: grid;
    gap: 0;
    margin-top: 18px
}

.package li {
    padding: 13px 0 13px 25px;
    border-bottom: 1px solid rgba(36, 36, 36, .10);
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: var(--wm-dark-2)
}

.package li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wm-button);
    font-weight: 950
}

.package .btn {
    margin-top: auto;
    width: 100%
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px
}

.audience-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900
}

.audience-item span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--wm-button);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px
}

.process {
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 26px;
    position: relative
}

.process-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--wm-dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 18px
}

.reviews-wrap {
    overflow: hidden;
    margin-top: 42px
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 28s linear infinite;
    width: max-content
}

.review-card {
    width: 360px;
    background: #fff;
    color: var(--wm-dark);
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 28px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08)
}

.review-stars {
    color: var(--wm-button);
    letter-spacing: 2px;
    margin-bottom: 16px
}

.review-card p {
    font-weight: 600;
    color: var(--wm-dark-2)
}

.review-author {
    margin-top: 20px;
    font-weight: 950
}

.review-author small {
    display: block;
    color: var(--wm-dark-3);
    font-size: 12px;
    margin-top: 3px
}

@keyframes scrollReviews {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.faq-list {
    max-width: 900px;
    margin: 38px auto 0;
    display: grid;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 0;
    padding: 20px 22px;
    font-weight: 950;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-a {
    display: none;
    padding: 0 22px 22px;
    color: var(--wm-dark-3);
    font-weight: 500
}

.faq-item.open .faq-a {
    display: block
}

.page-hero {
    padding: 80px 0;
    background: var(--wm-dark);
    color: #fff
}

.page-hero .lead {
    margin-top: 16px
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
    align-items: start
}

.contact-card {
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius);
    padding: 30px;
    box-shadow: var(--wm-shadow)
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 24px
}

.contact-list p {
    font-weight: 700;
    color: var(--wm-dark-3)
}

.contact-list i {
    width: 26px;
    color: var(--wm-button)
}

.contact-form {
    display: grid;
    gap: 12px
}

.contact-form .form-control,
.contact-form .phone-wrap,
.contact-form button {
    grid-column: 1/-1
}

.footer {
    position: relative;
    background: var(--wm-dark);
    color: #fff;
    padding: 75px 0 24px;
    overflow: hidden
}

.footer:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .2)
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .75fr .9fr 1fr;
    gap: 45px
}

.footer-brand {
    margin-bottom: 18px
}

.footer .brand-mark {
    background: #fff;
    color: var(--wm-dark)
}

.footer .brand-text small {
    color: #cfcfcf
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 18px
}

.footer p,
.footer a {
    display: block;
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 10px
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 16px
}

.socials a {
    width: 34px;
    height: 34px;
    background: #fff;
    color: var(--wm-dark);
    display: grid;
    place-items: center;
    border-radius: var(--wm-radius)
}

.newsletter-form {
    display: grid;
    gap: 9px
}

.newsletter-form input {
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    border-radius: var(--wm-radius);
    padding: 0 13px;
    color: #fff
}

.newsletter-form button {
    height: 44px;
    border: 0;
    background: var(--wm-button);
    color: #fff;
    border-radius: var(--wm-radius);
    font-weight: 900
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 48px;
    padding-top: 20px
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    z-index: 9998;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .22)
}

.mobile-cta {
    display: none
}

.not-found {
    min-height: 65vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 0
}

.not-found h1 {
    font-size: 82px
}

.not-found p {
    margin: 14px auto 28px;
    max-width: 620px;
    color: var(--wm-dark-3)
}

@media(max-width:1120px) {

    .hero-grid,
    .split,
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-copy {
        min-height: auto
    }

    .hero-form-box {
        max-width: 680px;
        width: 100%;
        margin: 0 auto
    }

    .cards,
    .package-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .split-media {
        min-height: 420px
    }

    .floating-collage {
        max-width: 700px;
        margin: 0 auto
    }

    .nav {
        display: none
    }

    .menu-btn {
        display: flex
    }

    .header-inner {
        grid-template-columns: 1fr auto
    }

    .speak-btn {
        display: none
    }
}

@media(max-width:700px) {
    body {
        padding-top: 72px;
    }

    .site-header {
        height: 72px
    }

    .mobile-nav {
        top: 72px
    }

    .brand-mark {
        width: 40px;
        height: 40px
    }

    .brand-text strong {
        font-size: 18px
    }

    .section {
        padding: 60px 0
    }

    .hero {
        padding: 24px 0 55px
    }

    .hero-copy {
        padding: 30px 22px
    }

    .hero-grid {
        gap: 18px
    }

    .hero-form-box {
        padding: 18px
    }

    .estimate-form,
    .form-row-2 {
        grid-template-columns: 1fr
    }

    .estimate-form>* {
        grid-column: 1/-1 !important
    }

    h1 {
        font-size: 38px
    }

    .lead,
    .hero-copy p {
        font-size: 15.5px
    }

    .split {
        gap: 34px
    }

    .split-media {
        min-height: 300px
    }

    .floating-collage {
        min-height: auto;
        display: grid;
        gap: 16px
    }

    .float-card,
    .float-card.one,
    .float-card.two {
        position: relative;
        width: 100%;
        height: 280px;
        inset: auto
    }

    .check-grid,
    .audience-grid,
    .process-grid,
    .cards,
    .package-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .cta-strip {
        display: block;
        padding: 30px
    }

    .cta-strip .btn {
        margin-top: 20px
    }

    .package {
        min-height: auto
    }

    .review-card {
        width: 300px
    }

    .whatsapp-float {
        right: 16px;
        bottom: 76px;
        width: 52px;
        height: 52px;
        font-size: 26px
    }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9997;
        background: #fff;
        border-top: 1px solid var(--wm-border);
        display: block;
        padding: 10px 12px
    }

    .mobile-cta .btn {
        width: 100%;
        min-height: 48px
    }

    .footer {
        padding-bottom: 85px
    }

    .contact-card {
        padding: 22px
    }
}

/* =========================================================
   Landing Page Header, Logo, Dropdown And Subtle Animation Update
   Requested palette: #E6E6E6, #242424, #343434, #5D5D5D, #696B5D
   ========================================================= */
:root {
    --wm-light: #E6E6E6;
    --wm-dark: #242424;
    --wm-dark-2: #343434;
    --wm-dark-3: #5D5D5D;
    --wm-button: #696B5D;
    --wm-header: 80px;
}

body {
    background: #E6E6E6;
    color: #242424;
}

.site-header {
    background: #E6E6E6 !important;
    border-bottom: 1px solid rgba(36, 36, 36, .12) !important;
    box-shadow: none !important;
}

.header-inner {
    grid-template-columns: 210px 1fr auto !important;
    max-width: 1180px;
}

.brand-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo-img {
    width: 190px;
    max-height: 78px;
    object-fit: contain;
}

.nav {
    gap: 29px;
    font-size: 14px;
    font-weight: 800;
}

.nav>a,
.nav-drop-btn {
    height: var(--wm-header);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #242424;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: color .2s ease;
}

.nav>a {
    border-bottom: 2px solid transparent;
}

.nav>a:hover,
.nav>a.active,
.nav-dropdown.active .nav-drop-btn,
.nav-drop-btn:hover {
    color: #242424;
}

.nav>a.active {
    border-bottom-color: #242424;
}

.nav-dropdown {
    position: relative;
    height: var(--wm-header);
    display: flex;
    align-items: center;
}

.nav-drop-btn i {
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-drop-btn i,
.nav-dropdown.open .nav-drop-btn i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: #E6E6E6;
    border-top: 1px solid #242424;
    border-left: 1px solid rgba(36, 36, 36, .08);
    border-right: 1px solid rgba(36, 36, 36, .08);
    border-bottom: 1px solid rgba(36, 36, 36, .08);
    box-shadow: 0 22px 45px rgba(36, 36, 36, .12);
    padding: 13px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 10050;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #242424;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    border: 0 !important;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(105, 107, 93, .12);
    color: #242424;
    padding-left: 25px;
}

.speak-btn {
    background: #242424 !important;
    color: #fff !important;
    border-radius: 999px !important;
    min-height: 41px !important;
    padding: 0 20px !important;
    font-size: 12px !important;
    letter-spacing: .2px;
}

.speak-btn:hover {
    background: #343434 !important;
    transform: translateY(-1px);
}

.menu-btn {
    background: #242424 !important;
}

/* keep images aligned with content height */
.split {
    align-items: stretch;
}

.split-content {
    min-height: 100%;
}

.split-media img,
.float-card img {
    height: 100%;
    object-fit: cover;
}

.service-grid {
    align-items: stretch;
}

.service-grid .split-media {
    height: auto;
    min-height: 100%;
}

/* natural page motion - not heavy/AI generated */
.hero-copy,
.hero-form-box,
.split-content,
.split-media,
.floating-collage,
.card,
.package,
.process,
.contact-card,
.cta-strip,
.review-card {
    animation: wmSoftIn .62s ease both;
}

.hero-form-box {
    animation-delay: .08s;
}

.card:nth-child(2),
.package:nth-child(2),
.process:nth-child(2) {
    animation-delay: .05s;
}

.card:nth-child(3),
.package:nth-child(3),
.process:nth-child(3) {
    animation-delay: .1s;
}

.card:nth-child(4),
.package:nth-child(4),
.process:nth-child(4) {
    animation-delay: .15s;
}

.float-card.one {
    animation: wmSoftIn .62s ease both, wmFloatSlow 7s ease-in-out infinite;
}

.float-card.two {
    animation: wmSoftIn .62s ease .08s both, wmFloatSlowTwo 8s ease-in-out infinite;
}

.card,
.package,
.process,
.contact-card,
.feature-box,
.check-item,
.audience-item {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.card:hover,
.package:hover,
.process:hover,
.contact-card:hover {
    transform: translateY(-5px);
}

.check-item:hover,
.audience-item:hover {
    transform: translateY(-3px);
    background: rgba(105, 107, 93, .16);
}

@keyframes wmSoftIn {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes wmFloatSlow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes wmFloatSlowTwo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

/* mobile menu matching landing page behaviour */
.mobile-nav {
    background: #E6E6E6 !important;
    color: #242424 !important;
    border-top: 1px solid rgba(36, 36, 36, .12);
    box-shadow: 0 22px 45px rgba(36, 36, 36, .13);
}

.mobile-nav a,
.mobile-drop-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    color: #242424;
    border: 0;
    border-bottom: 1px solid rgba(36, 36, 36, .12);
    background: transparent;
    text-align: left;
    font-size: 14px;
    font-weight: 900;
}

.mobile-drop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-menu {
    display: none;
    padding: 4px 0 8px 16px;
    border-bottom: 1px solid rgba(36, 36, 36, .12);
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-menu a {
    font-weight: 600;
    font-size: 13px;
    border-bottom: 0;
    padding: 10px 0;
}

.mobile-drop-btn.open i {
    transform: rotate(180deg);
}

@media(max-width:1080px) {
    .header-inner {
        display: grid !important;
        grid-template-columns: 190px 1fr auto !important;
    }

    .nav {
        display: none !important;
    }

    .menu-btn {
        display: flex !important;
    }

    .logo-img {
        width: 190px;
    }
}

@media(max-width:760px) {
    :root {
        --wm-header: 72px;
    }

    .site-header {
        height: var(--wm-header) !important;
    }

    .header-inner {
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
        width: 92% !important;
    }

    .brand-logo {
        justify-content: center;
    }

    .logo-img {
        width: 175px;
        max-width: 76vw;
    }

    .menu-btn {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
    }

    .mobile-nav {
        top: var(--wm-header) !important;
    }
}

.footer-logo-img {
    width: 190px;
    max-height: 64px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: none;
}

.footer .footer-brand {
    display: inline-flex;
    margin-bottom: 4px;
}

/* Home page section refinements */
.package-title {
    margin-top: 54px;
    margin-bottom: 28px;
}

.card-divider {
    display: flex;
    justify-content: center;
    margin: 24px 0 18px;
}

.card-divider span {
    width: 42px;
    height: 4px;
    background: #696B5D;
    border-radius: 8px;
    display: block;
}

.see-features-btn {
    display: block;
    background: #fff;
    color: #242424;
    text-align: center;
    border-radius: 8px;
    padding: 13px 14px;
    font-weight: 900;
    font-size: 13px;
    border: 1px solid rgba(36, 36, 36, .12);
}

.see-features-btn:hover {
    background: #E6E6E6;
}

.partners-image {
    border-radius: 50% 8px 8px 50%;
    min-height: 560px;
}

.partners-cta {
    margin-top: 28px;
    padding: 24px;
    background: rgba(230, 230, 230, .07);
    border: 1px solid rgba(230, 230, 230, .12);
    border-radius: 8px;
}

.partners-cta h3 {
    color: #fff;
    margin-bottom: 10px;
}

.partners-cta p {
    color: #d0d0d0;
    margin-bottom: 18px;
}

.counter-section {
    background: #242424;
    color: #fff;
    padding: 35px 0;
    border-top: 1px solid rgba(230, 230, 230, .12);
    border-bottom: 1px solid rgba(230, 230, 230, .12);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.counter-item {
    text-align: center;
    padding: 24px 18px;
    background: #343434;
    border: 1px solid rgba(230, 230, 230, .10);
    border-radius: 8px;
}

.counter-item h3 {
    font-size: 46px;
    font-weight: 950;
    color: #fff;
    letter-spacing: -.04em;
}

.counter-item p {
    color: #d0d0d0;
    font-weight: 800;
    margin-top: 4px;
}

.onboarding-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
    align-items: center;
}

.premium-slider-area {
    background: #E6E6E6;
    border: 1px solid rgba(36, 36, 36, .12);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 18px 45px rgba(36, 36, 36, .10);
    overflow: hidden;
}

.premium-slider-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.premium-slider-top span {
    display: block;
    color: #696B5D;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 4px;
}

.premium-slider-top h3 {
    font-size: 24px;
    color: #242424;
}

.premium-slider-controls {
    display: flex;
    gap: 8px;
}

.premium-arrow {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 0;
    background: #242424;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.premium-arrow:hover {
    background: #696B5D;
}

.premium-slider-window {
    overflow: hidden;
}

.premium-slider-track {
    display: flex;
    transition: transform .45s ease;
    will-change: transform;
}

.premium-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 18px;
    background: #fff;
    border: 1px solid rgba(36, 36, 36, .10);
    border-radius: 8px;
    padding: 14px;
}

.premium-slide-image {
    position: relative;
    min-height: 305px;
    border-radius: 8px;
    overflow: hidden;
    background: #343434;
}

.premium-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-slide-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #242424;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 950;
}

.premium-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 8px;
}

.premium-slide-content h4 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #242424;
}

.premium-slide-content p {
    color: #5D5D5D;
    font-size: 15.5px;
    line-height: 1.75;
    font-weight: 500;
}

@media(max-width:1080px) {
    .onboarding-grid {
        grid-template-columns: 1fr
    }

    .partners-image {
        border-radius: 8px;
        min-height: 430px
    }

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

@media(max-width:760px) {
    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .counter-item {
        padding: 18px 10px
    }

    .counter-item h3 {
        font-size: 32px
    }

    .counter-item p {
        font-size: 12px
    }

    .premium-slider-area {
        padding: 14px
    }

    .premium-slider-top {
        display: grid
    }

    .premium-slide {
        grid-template-columns: 1fr
    }

    .premium-slide-image {
        min-height: 220px
    }

    .premium-slide-content h4 {
        font-size: 22px
    }

    .partners-image {
        min-height: 310px;
        border-radius: 8px
    }

    .partners-cta {
        text-align: center
    }

    .package-title {
        margin-top: 34px
    }
}


/* =========================================================
   FINAL HEADER + HERO CORRECTIONS
   Matches supplied landing/header screenshots without gradients
   ========================================================= */
:root {
    --wm-light: #E6E6E6;
    --wm-dark: #242424;
    --wm-dark-2: #343434;
    --wm-dark-3: #5D5D5D;
    --wm-button: #696B5D;
    --wm-header: 76px;
}

body {
    background: #E6E6E6 !important;
    color: #242424 !important;
    padding-top: var(--wm-header) !important;
}

.site-header {
    height: var(--wm-header) !important;
    background: #242424 !important;
    border-bottom: 1px solid rgba(230, 230, 230, .10) !important;
    box-shadow: none !important;
}

.header-inner {
    width: min(1360px, 92%) !important;
    max-width: 1360px !important;
    margin: 0 auto !important;
    grid-template-columns: 255px 1fr auto !important;
    gap: 34px !important;
}

.logo-img {
    width: 255px !important;
    max-height: 64px !important;
    object-fit: contain !important;
}

.nav {
    gap: 34px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.nav>a,
.nav-drop-btn {
    height: var(--wm-header) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.nav>a:hover,
.nav>a.active,
.nav-drop-btn:hover,
.nav-dropdown.active .nav-drop-btn {
    color: #E6E6E6 !important;
}

.nav>a.active {
    border-bottom: 2px solid #E6E6E6 !important;
}

.nav-dropdown {
    height: var(--wm-header) !important;
}

.nav-dropdown-menu {
    background: #E6E6E6 !important;
    border-top: 1px solid #242424 !important;
    box-shadow: 0 25px 46px rgba(0, 0, 0, .20) !important;
    width: 255px !important;
}

.nav-dropdown-menu a {
    color: #242424 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(105, 107, 93, .14) !important;
    color: #242424 !important;
}

.speak-btn {
    background: #696B5D !important;
    color: #fff !important;
    border-radius: 5px !important;
    min-height: 48px !important;
    padding: 0 24px !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.speak-btn:hover {
    background: #5D5D5D !important;
}

.menu-btn {
    background: #696B5D !important;
}

.mobile-nav {
    top: var(--wm-header) !important;
    background: #242424 !important;
    color: #fff !important;
    border-top: 1px solid rgba(230, 230, 230, .12) !important;
}

.mobile-nav a,
.mobile-drop-btn {
    color: #fff !important;
    border-bottom: 1px solid rgba(230, 230, 230, .13) !important;
}

.mobile-dropdown-menu {
    background: #343434 !important;
    border-bottom: 1px solid rgba(230, 230, 230, .13) !important;
}

.mobile-dropdown-menu a {
    color: #fff !important;
}

/* HERO: remove white card from left side and keep form as its own card */
.hero {
    background: #E6E6E6 !important;
    padding: 70px 0 78px !important;
}

.hero-grid {
    width: min(1360px, 92%) !important;
    margin: 0 auto !important;
    grid-template-columns: minmax(0, 1fr) 430px !important;
    gap: 34px !important;
}

.hero-copy {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 52px 0 !important;
    min-height: auto !important;
}

.hero-copy h1 {
    max-width: 920px !important;
    color: #242424 !important;
}

.hero-copy p {
    max-width: 790px !important;
    color: #5D5D5D !important;
    font-size: 18px !important;
}

.hero-form-box {
    background: #fff !important;
    border: 1px solid rgba(36, 36, 36, .10) !important;
    box-shadow: 0 22px 55px rgba(36, 36, 36, .12) !important;
}

.section-kicker {
    width: max-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
    padding: 7px 14px !important;
    background: rgba(36, 36, 36, .05) !important;
    border: 1px solid rgba(36, 36, 36, .18) !important;
    color: #696B5D !important;
    line-height: 1.2 !important;
}

.section-kicker::after {
    display: none !important;
    content: none !important;
}

.performance-section .section-kicker {
    max-width: 560px !important;
}

/* Audience landing/dropdown pages */
.audience-hero {
    background: #E6E6E6;
    padding: 72px 0 50px;
}

.audience-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 38px;
    align-items: stretch;
}

.audience-hero-content {
    padding: 42px 0;
}

.audience-hero-content h1 {
    font-size: clamp(40px, 5vw, 74px);
    max-width: 850px;
}

.audience-hero-content p {
    font-size: 18px;
    color: #5D5D5D;
    max-width: 780px;
    margin-top: 20px;
}

.audience-card {
    background: #fff;
    border: 1px solid rgba(36, 36, 36, .11);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(36, 36, 36, .11);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.audience-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.audience-card li {
    position: relative;
    padding-left: 30px;
    color: #5D5D5D;
    font-weight: 700;
}

.audience-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #696B5D;
    font-weight: 950;
}

.audience-section {
    padding: 78px 0;
    background: #fff;
}

.audience-section.alt {
    background: #E6E6E6;
}

.audience-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.audience-two img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(36, 36, 36, .12);
}

.audience-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.audience-list-grid div {
    background: rgba(105, 107, 93, .10);
    border: 1px solid rgba(105, 107, 93, .20);
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 900;
    color: #242424;
}

.audience-cta {
    background: #242424;
    color: #fff;
    text-align: center;
    padding: 76px 0;
}

.audience-cta p {
    color: #d8d8d8;
    max-width: 760px;
    margin: 16px auto 26px;
}

@media(max-width:1080px) {
    .header-inner {
        grid-template-columns: 210px 1fr auto !important;
        gap: 18px !important;
    }

    .nav {
        display: none !important;
    }

    .menu-btn {
        display: flex !important;
    }

    .hero-grid,
    .audience-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-copy {
        padding: 20px 0 !important;
        text-align: left !important;
    }

    .hero-form-box {
        max-width: 620px;
        width: 100%;
    }

    .audience-two {
        grid-template-columns: 1fr;
    }
}

@media(max-width:760px) {
    :root {
        --wm-header: 72px;
    }

    .header-inner {
        width: 92% !important;
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
    }

    .logo-img {
        width: 196px !important;
        max-width: 68vw !important;
    }

    .menu-btn {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding: 38px 0 48px !important;
    }

    .hero-copy h1 {
        font-size: 39px !important;
    }

    .hero-copy p {
        font-size: 16px !important;
    }

    .section-kicker {
        width: auto !important;
        font-size: 10.5px !important;
        letter-spacing: 1px !important;
    }

    .audience-list-grid {
        grid-template-columns: 1fr;
    }

    .audience-two img {
        height: 320px;
    }
}

/* Latest WeManage brand-only refinements */
:root {
    --wm-light: #E6E6E6 !important;
    --wm-dark: #242424 !important;
    --wm-dark-2: #343434 !important;
    --wm-dark-3: #5D5D5D !important;
    --wm-button: #696B5D !important;
}

body {
    background: #E6E6E6 !important;
    color: #242424 !important;
}

.btn-primary,
.newsletter-form button,
.speak-btn,
.badge,
.check-item span,
.audience-item span,
.process-num,
.counter-item h3,
.premium-arrow,
.form-phone-code {
    background: #696B5D !important;
    border-color: #696B5D !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.newsletter-form button:hover,
.speak-btn:hover {
    background: #5D5D5D !important;
    border-color: #5D5D5D !important;
}

.section-dark,
.page-hero,
.footer,
.cta-strip,
.counter-section {
    background: #242424 !important;
    color: #ffffff !important;
}

.section-dark-2,
.service-section {
    background: #343434 !important;
    color: #ffffff !important;
}

.section-light,
.hero,
.audience-hero {
    background: #E6E6E6 !important;
}

.section-kicker,
.pricing-label,
.plan-desc {
    color: #696B5D !important;
    border-color: rgba(105, 107, 93, .24) !important;
    background: rgba(105, 107, 93, .10) !important;
}

.hero-quick-actions {
    background: #E6E6E6;
    padding: 0 0 70px;
    margin-top: -18px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.quick-action-card {
    background: #242424;
    color: #fff;
    border-radius: 5px;
    min-height: 170px;
    padding: 34px 34px;
    display: grid;
    grid-template-columns: 72px 2px 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 20px 45px rgba(36, 36, 36, .16);
    border: 1px solid rgba(230, 230, 230, .08);
    transition: transform .25s ease, background .25s ease;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    background: #343434;
}

.quick-action-icon {
    font-size: 44px;
    color: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-line {
    width: 2px;
    height: 76px;
    background: #E6E6E6;
    opacity: .9;
}

.quick-action-content h3 {
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    margin: 0 0 10px;
    letter-spacing: -.02em;
}

.quick-action-content p {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    margin: 0 0 12px;
}

.quick-action-content span {
    color: #E6E6E6;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.quick-action-content span i {
    margin-left: 5px;
    color: #696B5D;
}

@media(max-width:900px) {
    .quick-actions-grid {
        grid-template-columns: 1fr
    }

    .quick-action-card {
        min-height: auto
    }
}

@media(max-width:600px) {
    .hero-quick-actions {
        padding-bottom: 48px
    }

    .quick-action-card {
        grid-template-columns: 54px 2px 1fr;
        gap: 18px;
        padding: 24px 18px
    }

    .quick-action-icon {
        font-size: 34px
    }

    .quick-action-line {
        height: 70px
    }

    .quick-action-content h3 {
        font-size: 19px
    }

    .quick-action-content p {
        font-size: 13px
    }
}

/* =========================================================
   CONTACT / ASSESSMENT / PRICING FINAL CORRECTIONS
   ========================================================= */
.contact-form textarea.form-control {
    min-height: 150px !important;
    height: auto !important;
    padding-top: 14px !important;
    resize: vertical;
}

.contact-form select.form-control,
.contact-form textarea.form-control,
.contact-form input.form-control {
    width: 100%;
}

.assessment-page-section {
    background: #E6E6E6 !important;
}

.assessment-grid {
    align-items: stretch;
}

.assessment-info-card,
.assessment-form-card {
    height: 100%;
}

.assessment-info-card .contact-list p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.assessment-info-card .contact-list i {
    color: #696B5D !important;
}

/* Social icons should use their own brand colours */
.socials a[aria-label="Facebook"] {
    background: #1877F2 !important;
    color: #fff !important;
}

.socials a[aria-label="LinkedIn"] {
    background: #0A66C2 !important;
    color: #fff !important;
}

.socials a[aria-label="Instagram"] {
    background: #E4405F !important;
    color: #fff !important;
}

.socials a[aria-label="WhatsApp"] {
    background: #25D366 !important;
    color: #fff !important;
}

.socials a:hover {
    transform: translateY(-2px);
    filter: brightness(.95);
}

.contact-social-row {
    margin-top: 24px;
}

/* When a subtitle/kicker sits on dark sections, keep it readable */
.section-dark .section-kicker,
.section-dark-2 .section-kicker,
.page-hero .section-kicker,
.footer .section-kicker,
.cta-strip .section-kicker,
.service-section .section-kicker,
.partners-section .section-kicker,
.wm-different-section .wm-label,
.wm-founder-section .wm-label,
.wm-partners-section .wm-partners-label {
    color: #ffffff !important;
    background: rgba(230, 230, 230, .08) !important;
    border-color: rgba(230, 230, 230, .18) !important;
}

.section-dark p,
.section-dark-2 p,
.service-section p,
.page-hero p {
    color: #e6e6e6 !important;
}

/* Better pricing table: clean white table, no heavy background block */
.pricing-section {
    background: #E6E6E6 !important;
    padding: 72px 18px 86px !important;
}

.pricing-wrapper {
    max-width: 1420px !important;
}

.pricing-card {
    background: #ffffff !important;
    border: 1px solid rgba(36, 36, 36, .10) !important;
    box-shadow: 0 22px 55px rgba(36, 36, 36, .10) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.pricing-card::before {
    background: #696B5D !important;
    height: 5px !important;
}

.pricing-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(36, 36, 36, .08) !important;
    padding: 42px 34px 30px !important;
}

.pricing-header::after {
    display: none !important;
}

.table-container {
    background: #ffffff !important;
    padding: 26px 26px 30px !important;
}

.table-container table {
    background: #ffffff !important;
    border: 1px solid rgba(36, 36, 36, .12) !important;
    border-radius: 8px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.table-container thead th {
    background: #696B5D !important;
    color: #ffffff !important;
    border-top: 0 !important;
    text-align: center !important;
    font-size: 13px !important;
    padding: 22px 18px !important;
    line-height: 1.35 !important;
}

.table-container thead th:first-child {
    background: #5D5D5D !important;
    color: #ffffff !important;
    text-align: left !important;
}

.table-container th:first-child,
.table-container td:first-child {
    box-shadow: none !important;
    min-width: 310px !important;
    width: 310px !important;
    max-width: 310px !important;
}

.table-container td {
    background: #ffffff !important;
    border-color: rgba(36, 36, 36, .10) !important;
    padding: 17px 16px !important;
    color: #242424 !important;
    font-size: 14px !important;
}

.table-container tbody tr:nth-child(even) td,
.table-container tbody tr:nth-child(even) td:first-child,
.table-container tbody td:nth-child(4),
.table-container tbody td:nth-child(5) {
    background: #fbfbfb !important;
}

.table-container tbody tr:hover td {
    background: #f1f1f1 !important;
}

.table-container tbody tr:hover td:first-child {
    color: #242424 !important;
    background: #eeeeee !important;
}

.table-container td:first-child {
    background: #ffffff !important;
    font-weight: 900 !important;
    line-height: 1.5 !important;
}

.table-container tbody tr:nth-child(even) td:first-child {
    background: #fbfbfb !important;
}

.table-container .plan-name {
    color: #ffffff !important;
    font-weight: 950 !important;
    font-size: 14px !important;
}

.table-container .plan-desc {
    display: block !important;
    margin-top: 6px !important;
    background: rgba(230, 230, 230, .16) !important;
    color: #ffffff !important;
    border-color: rgba(230, 230, 230, .18) !important;
}

.table-container .icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
}

.table-container .checkmark {
    background: rgba(105, 107, 93, .14) !important;
    color: #5D5D5D !important;
    border: 1px solid rgba(105, 107, 93, .30) !important;
}

.table-container .crossmark {
    background: #fff1f1 !important;
    color: #e14343 !important;
    border: 1px solid rgba(225, 67, 67, .22) !important;
}

.table-container .footer-row td {
    background: #E6E6E6 !important;
    color: #242424 !important;
    font-weight: 950 !important;
}

.table-container .footer-row td:first-child {
    background: #696B5D !important;
    color: #ffffff !important;
}

@media(max-width:760px) {
    .table-container {
        padding: 14px !important;
    }

    .table-container tbody tr {
        border-color: rgba(36, 36, 36, .12) !important;
        box-shadow: 0 12px 28px rgba(36, 36, 36, .08) !important;
    }

    .table-container tbody tr td:first-child {
        background: #5D5D5D !important;
        color: #fff !important;
    }

    .table-container tbody tr td:not(:first-child) {
        background: #fff !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   FINAL HOME / PRICING POLISH REQUESTS
   ========================================================= */
/* Pricing page: keep table clean, then show the same two-card call-to-action block after it */
.pricing-after-actions {
    margin-top: 0 !important;
    padding: 58px 0 74px !important;
    background: #E6E6E6 !important;
}

.pricing-after-actions .quick-action-card {
    box-shadow: 0 22px 45px rgba(36, 36, 36, .18) !important;
}

/* Third image: make the Who We Work With image look intentional and premium */
.partners-section .split {
    align-items: center !important;
}

.partners-image {
    position: relative !important;
    max-width: 560px !important;
    min-height: 560px !important;
    height: 560px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #343434 !important;
    border: 12px solid rgba(230, 230, 230, .06) !important;
    box-shadow: 0 34px 72px rgba(0, 0, 0, .28) !important;
}

.partners-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.partners-image::after {
    content: "1200+ Google Reviews";
    position: absolute;
    top: 70px;
    right: -8px;
    width: 150px;
    min-height: 78px;
    background: #fff;
    color: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.05;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

/* Fourth image: remove the heavy background/card from number counters */
.counter-section {
    background: #242424 !important;
    padding: 42px 0 !important;
    border: 0 !important;
}

.counter-grid {
    gap: 22px !important;
}

.counter-item {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 18px 10px !important;
}

.counter-item h3 {
    background: transparent !important;
    color: #fff !important;
    font-size: 52px !important;
    line-height: 1 !important;
    text-shadow: 0 4px 0 rgba(105, 107, 93, .55);
}

.counter-item p {
    color: #fff !important;
    font-weight: 900 !important;
    margin-top: 8px !important;
}

/* Fifth image: add breathing room before onboarding CTA button */
.onboarding-section .split-content .btn {
    margin-top: 22px !important;
}

.onboarding-section .split-content p+.btn {
    margin-top: 24px !important;
}

/* Sixth image: text testimonials same Google-card style as landing page */
.text-testimonials-section {
    background: #343434 !important;
    padding: clamp(58px, 6vw, 86px) 0 !important;
    overflow: hidden;
}

.text-testimonials-section .section-title {
    color: #ffffff !important;
    margin-bottom: 34px !important;
    max-width: none !important;
    text-align: center !important;
    font-size: clamp(32px, 3.6vw, 52px) !important;
}

.text-review-slider {
    position: relative;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 48px 48px !important;
    overflow: hidden;
}

.testimonial-window {
    overflow: hidden;
    width: 100%;
}

.text-review-slider .testimonial-track {
    display: flex !important;
    align-items: stretch !important;
    transition: transform .55s ease !important;
    will-change: transform !important;
    animation: none !important;
    width: auto !important;
    gap: 0 !important;
}

.text-review-slider .testimonial-item {
    flex: 0 0 33.333333% !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: stretch !important;
}

.text-testimonial-card {
    width: 100% !important;
    min-height: 315px !important;
    background: #5D5D5D !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 34px 32px 30px !important;
    box-shadow: 0 22px 36px rgba(0, 0, 0, .22) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(255, 255, 255, .05) !important;
}

.review-top {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 20px !important;
}

.google-review-mark,
.google-review-mark svg {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    display: block !important;
}

.review-top h3 {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: -.01em !important;
    margin: 0 0 6px !important;
}

.review-top span {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    color: rgba(255, 255, 255, .92) !important;
    font-weight: 500 !important;
}

.text-testimonial-card .testimonial-text {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14.5px !important;
    line-height: 1.72 !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, .92) !important;
    text-transform: none !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-testimonial-card.is-expanded .testimonial-text {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
}

.testimonial-toggle {
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.testimonial-toggle:hover {
    opacity: .78;
}

.text-testimonials-section .slider-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: #242424 !important;
    color: #fff !important;
    border: 0 !important;
    font-size: 23px !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: none !important;
}

.text-testimonials-section .slider-arrow.prev {
    left: 5px !important;
}

.text-testimonials-section .slider-arrow.next {
    right: 5px !important;
}

.text-testimonials-section .slider-arrow:hover {
    background: #111 !important;
}

.text-testimonials-section .slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.text-testimonials-section .slider-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .30);
    padding: 0;
}

.text-testimonials-section .slider-dots button.active {
    background: #ffffff !important;
}

/* FAQ accordion polish and icon state */
.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-q i {
    transition: transform .22s ease;
}

@media(max-width:1080px) {
    .partners-image {
        max-width: 520px !important;
        height: 520px !important;
        min-height: 520px !important;
    }

    .text-review-slider .testimonial-item {
        flex-basis: 50% !important;
        padding: 0 12px !important;
    }
}

@media(max-width:760px) {
    .partners-image {
        max-width: 100% !important;
        height: 360px !important;
        min-height: 360px !important;
        border-radius: 28px !important;
        border-width: 8px !important;
    }

    .partners-image::after {
        top: 18px;
        right: 18px;
        width: 128px;
        min-height: 62px;
        font-size: 13px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .counter-item h3 {
        font-size: 40px !important;
    }

    .text-review-slider {
        padding: 0 34px 42px !important;
    }

    .text-review-slider .testimonial-item {
        flex-basis: 100% !important;
        padding: 0 !important;
    }

    .text-testimonial-card {
        min-height: 305px !important;
        padding: 30px 24px 26px !important;
    }

    .google-review-mark,
    .google-review-mark svg {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

    .text-testimonials-section .section-title {
        font-size: 30px !important;
        line-height: 1.1 !important;
    }
}


/* =========================================================
   FINAL MOBILE, TEXT VISIBILITY, PRICING AND REVIEW FIXES
   ========================================================= */
/* What We Do cards: keep card text readable on dark sections */
.service-section .card,
.service-section .cards .card {
    background: #ffffff !important;
    color: #242424 !important;
}

.service-section .card h3,
.service-section .cards .card h3 {
    color: #242424 !important;
}

.service-section .card p,
.service-section .cards .card p {
    color: #5D5D5D !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* Pricing page: remove any remaining bespoke CTA if old markup remains */
.pricing-page-bespoke,
.pricing-bespoke,
body.pricing .bespoke-package,
.pricing-section+.section-light .cta-strip {
    display: none !important;
}

/* Flexible Property Management block: centered and balanced */
.packages-section .cta-strip {
    max-width: 1120px !important;
    margin: 0 auto !important;
    min-height: 300px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 58px 44px !important;
}

.packages-section .cta-strip p {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 820px !important;
}

.packages-section .cta-strip .btn {
    margin-top: 10px !important;
}

/* Review slider: dots only, continuous marquee */
.text-testimonials-section .slider-arrow {
    display: none !important;
}

.text-review-slider {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.text-review-slider .testimonial-window {
    overflow: hidden !important;
}

.text-review-slider .testimonial-track.is-marquee {
    display: flex !important;
    width: max-content !important;
    gap: 0 !important;
    transition: none !important;
    animation: wmReviewMarquee 42s linear infinite !important;
    transform: none !important;
}

.text-review-slider .testimonial-track.is-marquee:hover {
    animation-play-state: paused !important;
}

@keyframes wmReviewMarquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* Mobile: What We Do cards scroll continuously with dots only */
.service-section {
    overflow: hidden !important;
}

.mobile-service-dots {
    display: none;
}

@media(max-width:760px) {
    .service-section .cards {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: max-content !important;
        overflow: visible !important;
        margin-top: 34px !important;
    }

    .service-section .cards.is-mobile-marquee {
        animation: wmServiceCardMarquee 30s linear infinite !important;
    }

    .service-section .cards.is-mobile-marquee:hover {
        animation-play-state: paused !important;
    }

    .service-section .cards .card {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        margin: 0 9px !important;
        min-height: 245px !important;
        padding: 28px 24px !important;
    }

    .mobile-service-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 22px !important;
    }

    .mobile-service-dots button,
    .text-testimonials-section .slider-dots button {
        width: 9px !important;
        height: 9px !important;
        border-radius: 50% !important;
        border: 0 !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, .34) !important;
    }

    .mobile-service-dots button.active,
    .text-testimonials-section .slider-dots button.active {
        background: #ffffff !important;
    }

    @keyframes wmServiceCardMarquee {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }
}

/* =====================================================
   USER FINAL POLISH PATCH - READABILITY, MOBILE SLIDERS, PRICING
   ===================================================== */
.service-section .card,
.service-section .cards .card {
    background: #ffffff !important;
    color: #242424 !important;
}

.service-section .card h3,
.service-section .cards .card h3 {
    color: #242424 !important;
    opacity: 1 !important;
}

.service-section .card p,
.service-section .cards .card p {
    color: #5D5D5D !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* Remove unwanted pricing bespoke strips if any version remains */
.pricing-page-bespoke,
.pricing-bespoke,
.bespoke-package,
.need-bespoke-package,
.pricing-bespoke-section,
.pricing-page .cta-strip,
body.pricing .cta-strip {
    display: none !important;
}

/* Keep the home flexible CTA centered and balanced */
.packages-section .cta-strip {
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.packages-section .cta-strip>div {
    max-width: 880px !important;
    margin: 0 auto !important;
}

.packages-section .cta-strip .btn {
    margin-top: 18px !important;
}

/* Dots only everywhere: hide all previous/next arrows */
.slider-arrow,
.testimonial-prev,
.testimonial-next,
.wm-slider-prev,
.wm-slider-next,
.how-mobile-arrow {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.slider-dots,
.testimonial-dots,
.mobile-service-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
}

.slider-dots button,
.testimonial-dots button,
.mobile-service-dots button {
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, .34) !important;
}

.slider-dots button.active,
.testimonial-dots button.active,
.mobile-service-dots button.active {
    background: #ffffff !important;
}

/* Reviews: continuous marquee, no visible rollback */
.text-review-slider {
    overflow: hidden !important;
}

.text-review-slider .testimonial-window {
    overflow: hidden !important;
}

.text-review-slider .testimonial-track.is-marquee {
    display: flex !important;
    width: max-content !important;
    gap: 0 !important;
    transition: none !important;
    animation: wmReviewMarqueeSeamless 44s linear infinite !important;
    will-change: transform !important;
}

.text-review-slider .testimonial-track.is-marquee:hover {
    animation-play-state: paused !important;
}

@keyframes wmReviewMarqueeSeamless {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Mobile: make What We Do cards auto-scroll infinitely and keep dots only */
@media(max-width:760px) {
    .service-section {
        overflow: hidden !important;
    }

    .service-section .cards {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: max-content !important;
        overflow: visible !important;
        margin-top: 34px !important;
        will-change: transform !important;
    }

    .service-section .cards.is-mobile-marquee {
        animation: wmServiceCardMarqueeSeamless 32s linear infinite !important;
    }

    .service-section .cards.is-mobile-marquee:hover {
        animation-play-state: paused !important;
    }

    .service-section .cards .card {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        margin: 0 9px !important;
        min-height: 245px !important;
        padding: 28px 24px !important;
    }

    .service-section .cards .card p {
        color: #5D5D5D !important;
        opacity: 1 !important;
    }

    .mobile-service-dots {
        margin-top: 22px !important;
    }
}

@keyframes wmServiceCardMarqueeSeamless {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Pricing table mobile card layout safety */
@media(max-width:760px) {
    .pricing-section .table-container {
        overflow: visible !important;
        padding: 12px !important;
    }

    .pricing-section .table-container table,
    .pricing-section .table-container thead,
    .pricing-section .table-container tbody,
    .pricing-section .table-container tr,
    .pricing-section .table-container td {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .pricing-section .table-container thead {
        display: none !important;
    }

    .pricing-section .table-container table,
    .pricing-section .table-container tbody,
    .pricing-section .table-container tr,
    .pricing-section .table-container td {
        display: block !important;
    }

    .pricing-section .table-container tbody tr {
        margin: 0 0 16px !important;
        background: #ffffff !important;
        border: 1px solid rgba(36, 36, 36, .12) !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .pricing-section .table-container tbody tr td {
        position: static !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(36, 36, 36, .08) !important;
        box-shadow: none !important;
    }

    .pricing-section .table-container tbody tr td:first-child {
        background: #242424 !important;
        color: #ffffff !important;
        font-weight: 900 !important;
    }

    .pricing-section .table-container tbody tr td:not(:first-child) {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
        align-items: center !important;
        text-align: right !important;
        background: #ffffff !important;
    }

    .pricing-section .table-container tbody tr td:nth-child(2)::before {
        content: 'Starter Package';
    }

    .pricing-section .table-container tbody tr td:nth-child(3)::before {
        content: 'Basic Management';
    }

    .pricing-section .table-container tbody tr td:nth-child(4)::before {
        content: 'Comprehensive Management';
    }

    .pricing-section .table-container tbody tr td:nth-child(5)::before {
        content: 'Premium Package';
    }

    .pricing-section .table-container tbody tr td:not(:first-child)::before {
        color: #5D5D5D !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-align: left !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
    }
}

/* =====================================================
   FINAL FIX FOR SCROLL DISPLAY
   - Desktop service cards show once only, no duplicated rows
   - Mobile service cards slide in one clean row
   - Reviews show 3 neat cards on desktop and marquee smoothly
   ===================================================== */
.service-section .cards .service-mobile-clone {
    display: none !important;
}

.text-review-slider {
    max-width: 1280px !important;
    width: min(1280px, 92vw) !important;
    padding: 0 0 48px !important;
}

.text-review-slider .testimonial-window {
    width: 100% !important;
    overflow: hidden !important;
}

.text-review-slider .testimonial-track.is-marquee {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: max-content !important;
    transition: none !important;
    animation: wmReviewMarqueeClean 42s linear infinite !important;
    will-change: transform !important;
}

.text-review-slider .testimonial-track.is-marquee:hover {
    animation-play-state: paused !important;
}

.text-review-slider .testimonial-item {
    flex: 0 0 426px !important;
    width: 426px !important;
    max-width: 426px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: stretch !important;
}

.text-testimonial-card {
    width: 100% !important;
    min-height: 315px !important;
    max-height: none !important;
}

@keyframes wmReviewMarqueeClean {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media(max-width:1080px) {
    .text-review-slider {
        width: min(900px, 92vw) !important;
    }

    .text-review-slider .testimonial-item {
        flex-basis: 450px !important;
        width: 450px !important;
        max-width: 450px !important;
        padding: 0 14px !important;
    }
}

@media(max-width:760px) {
    .service-section .cards .service-mobile-clone {
        display: block !important;
    }

    .service-section .cards {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: max-content !important;
        overflow: visible !important;
        margin-top: 34px !important;
        will-change: transform !important;
    }

    .service-section .cards.is-mobile-marquee {
        animation: wmServiceCardMarqueeClean 32s linear infinite !important;
    }

    .service-section .cards .card {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        margin: 0 9px !important;
        min-height: 245px !important;
    }

    @keyframes wmServiceCardMarqueeClean {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    .text-review-slider {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0 42px !important;
    }

    .text-review-slider .testimonial-window {
        width: 100% !important;
        overflow: hidden !important;
    }

    .text-review-slider .testimonial-item {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        max-width: 86vw !important;
        padding: 0 10px !important;
    }

    .text-testimonial-card {
        min-height: 305px !important;
        padding: 30px 24px 26px !important;
    }
}

/* =====================================================
   FINAL HERO FORM + LANDING HERO CLEANUP
   - Address and name inputs full width
   - Remove excess top/bottom hero white space
   - Remove bordered background from landing hero kicker only
   ===================================================== */
.hero {
    padding-top: 70px !important;
    padding-bottom: 50px !important;
}

.hero-grid {
    align-items: center !important;
}

.hero-copy {
    min-height: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-form-box {
    align-self: center !important;
}

.hero .section-kicker {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--wm-dark-3) !important;
}

.hero .section-kicker i {
    color: var(--wm-dark-3) !important;
}

.estimate-form input[name="address"],
.estimate-form input[name="property_address"],
.estimate-form input[name="postcode"],
.estimate-form input[name="full_name"],
.estimate-form input[name="email"],
.estimate-form button,
.estimate-form .form-alert,
.estimate-form .phone-wrap {
    grid-column: 1 / -1 !important;
}

@media(max-width:700px) {
    .hero {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .hero-copy {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero .section-kicker {
        justify-content: center !important;
        width: 100% !important;
    }
}


/* =====================================================
   FINAL HERO SPACING + FORM SELECT ARRANGEMENT FIX
   - More breathing space below header
   - Postcode remains full width
   - Property Type, Current Situation, Bedrooms and Bathrooms align neatly
   - More space before the two dark quick action cards
   ===================================================== */
.hero {
    padding-top: 82px !important;
    padding-bottom: 58px !important;
}

.hero-quick-actions {
    padding-top: 34px !important;
    margin-top: 0 !important;
}

.estimate-form input[name="address"],
.estimate-form input[name="property_address"],
.estimate-form input[name="postcode"],
.estimate-form input[name="full_name"],
.estimate-form input[name="email"],
.estimate-form .phone-wrap,
.estimate-form button[type="submit"],
.estimate-form .form-alert {
    grid-column: 1 / -1 !important;
}

.estimate-form select[name="property_type"],
.estimate-form select[name="current_situation"] {
    grid-column: auto !important;
    width: 100% !important;
}

.estimate-form .form-row-2 {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 11px !important;
}

@media(max-width:700px) {
    .hero {
        padding-top: 44px !important;
        padding-bottom: 40px !important;
    }

    .hero-quick-actions {
        padding-top: 26px !important;
        padding-bottom: 56px !important;
    }

    .estimate-form,
    .estimate-form .form-row-2 {
        grid-template-columns: 1fr !important;
    }

    .estimate-form select[name="property_type"],
    .estimate-form select[name="current_situation"] {
        grid-column: 1 / -1 !important;
    }
}

/* =====================================================
   FINAL SEAMLESS SLIDER FIX - DO NOT REMOVE
   One slider engine controls both cards and dots.
   This prevents the issue where dots move but cards stay still.
   ===================================================== */
.js-basic-slider,
.premium-slider-area,
.testimonial-slider {
    position: relative !important;
    overflow: hidden !important;
}

.js-basic-slider .slider-window,
.js-basic-slider .testimonial-window,
.js-basic-slider .premium-slider-window,
.premium-slider-area .slider-window,
.testimonial-slider .slider-window {
    width: 100% !important;
    overflow: hidden !important;
}

.js-basic-slider .wm-seamless-track,
.premium-slider-area .wm-seamless-track,
.testimonial-slider .wm-seamless-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: auto !important;
    max-width: none !important;
    animation: none !important;
    will-change: transform !important;
}

.js-basic-slider .slider-item,
.js-basic-slider .premium-slide,
.js-basic-slider .testimonial-item,
.premium-slider-area .slider-item,
.testimonial-slider .slider-item {
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.testimonial-slider .testimonial-item {
    display: flex !important;
    align-items: stretch !important;
}

.testimonial-slider .text-testimonial-card {
    width: calc(100% - 36px) !important;
    margin-left: 18px !important;
    margin-right: 18px !important;
}

@media(max-width:1080px) {
    .testimonial-slider .text-testimonial-card {
        width: calc(100% - 24px) !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
}

@media(max-width:760px) {
    .testimonial-slider .text-testimonial-card {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .slider-arrow,
    .testimonial-prev,
    .testimonial-next,
    .wm-slider-prev,
    .wm-slider-next,
    .premium-slider-controls {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.slider-dots,
.testimonial-dots,
.premium-slider-dots,
.mobile-service-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
}

.slider-dots button,
.testimonial-dots button,
.premium-slider-dots button,
.mobile-service-dots button {
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, .34) !important;
    cursor: pointer !important;
    transition: .25s ease !important;
}

.slider-dots button.active,
.testimonial-dots button.active,
.premium-slider-dots button.active,
.mobile-service-dots button.active {
    width: 24px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
}

.premium-slider-dots button,
.premium-slider-dots button.active {
    background: #696B5D !important;
}





/* =====================================================
   FINAL FORM SUBMISSION + FULL WIDTH FIELD FIX
   - Address, postcode, name, phone, email and alerts are always full width
   - Uses clean AJAX endpoints to avoid POST data being lost by .php redirects
   ===================================================== */
.estimate-form input[name="property_address"],
.estimate-form input[name="address"],
.estimate-form input[name="postcode"],
.estimate-form input[name="full_name"],
.estimate-form input[name="email"],
.estimate-form .phone-wrap,
.estimate-form button[type="submit"],
.estimate-form .form-alert,
.estimate-form .field-full,
.estimate-form .col-lg-12 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.estimate-form {
    grid-template-columns: 1fr 1fr !important;
}

.estimate-form .form-control,
.estimate-form .phone-input {
    min-width: 0 !important;
    width: 100% !important;
}

.newsletter-form .form-alert {
    margin-top: 8px;
}

@media(max-width:700px) {
    .estimate-form {
        grid-template-columns: 1fr !important;
    }
}