: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: 210px;
    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: 210px;
    }
}

@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: 185px;
        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: 265px !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: 206px !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;
    }
}
/* =====================================================
   FINAL TOP BAR + STICKY HEADER + SOFTER TITLES + SPLIT FORMS
   ===================================================== */
:root {
    --wm-topbar: 50px;
    --wm-header: 76px;
}

body {
    padding-top: calc(var(--wm-topbar) + var(--wm-header)) !important;
}

.wm-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--wm-topbar);
    z-index: 10020;
    background: #242424;
    color: #ffffff;
    border-top: 1px solid rgba(230, 230, 230, .16);
    border-bottom: 1px solid rgba(230, 230, 230, .10);
}

.wm-topbar-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.wm-topbar-text {
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.wm-topbar-text a {
    color: #ffffff;
    font-weight: 600;
    margin-left: 14px;
}

.wm-topbar-text a i {
    color: #308551;
    margin-left: 3px;
}

.wm-topbar-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.wm-topbar-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e33131;
    display: inline-block;
}

.wm-topbar-socials {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.wm-topbar-socials a {
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wm-topbar-speak {
    height: var(--wm-topbar);
    min-width: 146px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c49a68;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.site-header {
    top: var(--wm-topbar) !important;
    z-index: 10010 !important;
}

h1 {
    font-weight: 760 !important;
    letter-spacing: -.032em !important;
}

h2 {
    font-weight: 720 !important;
    letter-spacing: -.028em !important;
}

h3 {
    font-weight: 700 !important;
    letter-spacing: -.018em !important;
}

.section-kicker {
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.hero {
    padding-top: 46px !important;
    padding-bottom: 50px !important;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) 410px !important;
    gap: 24px !important;
    align-items: center !important;
}

.hero-copy {
    min-height: 500px !important;
    padding: 44px 48px !important;
}

.hero-copy h1 {
    font-size: clamp(34px, 4.1vw, 58px) !important;
    line-height: 1.12 !important;
    font-weight: 740 !important;
    text-transform: none !important;
    max-width: 800px !important;
}

.hero-copy p {
    margin-top: 18px !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
    font-weight: 430 !important;
}

.hero-actions {
    margin-top: 24px !important;
}

.hero-form-box {
    padding: 19px !important;
}

.hero-form-box .form-heading {
    margin-bottom: 12px !important;
}

.hero-form-box .form-heading h2 {
    font-size: 20px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}

.hero-form-box .form-heading p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
}

.hero-estimate-form {
    gap: 8px !important;
}

.hero-estimate-form .form-row-2,
.hero-estimate-form .hero-form-row {
    gap: 8px !important;
}

.hero-estimate-form .form-control,
.hero-estimate-form .phone-wrap {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 11px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
}

.hero-estimate-form button[type="submit"] {
    min-height: 42px !important;
    padding: 0 15px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
}

.hero-estimate-form .hero-form-row input[name="postcode"],
.hero-estimate-form .hero-form-row select,
.hero-estimate-form .hero-form-row input[name="full_name"],
.hero-estimate-form .hero-form-row input[name="phone"] {
    grid-column: auto !important;
}

.assessment-form-card .form-heading h2 {
    font-weight: 720 !important;
}

.assessment-form-card .estimate-form .form-control,
.assessment-form-card .estimate-form .phone-wrap {
    font-weight: 650 !important;
}

.page-hero h1,
.section-title h2,
.center h2,
.assessment-info-content h2 {
    font-weight: 720 !important;
}

@media (max-width: 1080px) {
    .wm-topbar-inner {
        grid-template-columns: 1fr auto;
    }

    .wm-topbar-spacer {
        display: none;
    }

    .wm-topbar-text {
        text-align: left;
        white-space: normal;
        font-size: 13px;
    }

    .wm-topbar-right {
        gap: 14px;
    }

    .wm-topbar-speak {
        min-width: auto;
        padding: 0 18px;
    }

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

    .hero-copy {
        min-height: auto !important;
    }
}

@media (max-width: 991px) {
    :root {
        --wm-topbar: 48px;
        --wm-header: 70px;
    }

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

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

    .hero-copy {
        padding: 38px 28px !important;
    }

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

@media (max-width: 767px) {
    :root {
        --wm-topbar: 46px;
        --wm-header: 66px;
    }

    .wm-topbar-inner {
        width: 100% !important;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding-left: 12px;
    }

    .wm-topbar-text {
        font-size: 12px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .wm-topbar-text a {
        margin-left: 6px;
        white-space: nowrap;
    }

    .wm-topbar-dot,
    .wm-topbar-socials {
        display: none;
    }

    .wm-topbar-speak {
        height: var(--wm-topbar);
        padding: 0 14px;
        font-size: 12px;
    }

    .hero {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
    }

    .hero-copy {
        padding: 30px 18px !important;
    }

    .hero-copy h1 {
        font-size: 28px !important;
        line-height: 1.18 !important;
    }

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

    .hero-form-box {
        padding: 16px !important;
    }

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

    .hero-estimate-form .hero-form-row input[name="postcode"],
    .hero-estimate-form .hero-form-row select,
    .hero-estimate-form .hero-form-row input[name="full_name"],
    .hero-estimate-form .hero-form-row input[name="phone"] {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 420px) {
    .wm-topbar-text {
        font-size: 11px;
    }

    .wm-topbar-speak {
        padding: 0 10px;
        font-size: 11px;
    }

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


/* =====================================================
   USER REQUEST UPDATE: EXACT DARK TOP BAR/HEADER + COMPACT HERO FORM
   ===================================================== */
:root {
    --wm-topbar: 48px !important;
    --wm-header: 104px !important;
}

body {
    padding-top: calc(var(--wm-topbar) + var(--wm-header)) !important;
}

.wm-topbar {
    height: var(--wm-topbar) !important;
    background: #232323 !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    border-bottom: 0 !important;
}

.wm-topbar-inner {
    width: min(1320px, 94%) !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 18px !important;
}

.wm-topbar-text {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #fff !important;
    white-space: nowrap !important;
}

.wm-topbar-text a {
    color: #fff !important;
    font-weight: 600 !important;
    margin-left: 12px !important;
}

.wm-topbar-text a i {
    color: #308551 !important;
}

.wm-topbar-right {
    gap: 24px !important;
}

.wm-topbar-speak {
    height: var(--wm-topbar) !important;
    min-width: 146px !important;
    background: #c49a68 !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
}

.site-header {
    height: var(--wm-header) !important;
    top: var(--wm-topbar) !important;
    background: rgba(36,36,36,.97) !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,.18) !important;
}

.header-inner {
    width: min(1320px, 94%) !important;
    max-width: 1320px !important;
    grid-template-columns: 250px 1fr auto !important;
    gap: 30px !important;
    height: 100% !important;
}

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

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

.nav a,
.nav-drop-btn {
    color: #ffffff !important;
    font-weight: 760 !important;
    border-bottom-color: transparent !important;
}

.nav a:hover,
.nav a.active,
.nav-dropdown.active .nav-drop-btn,
.nav-dropdown.open .nav-drop-btn {
    color: #ffffff !important;
    border-bottom-color: transparent !important;
}

.header-actions {
    gap: 0 !important;
}

.speak-btn {
    display: none !important;
}

.header-hotline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0 0 0 16px !important;
    border-left: 1px solid rgba(255,255,255,.12) !important;
}

.header-hotline-icon {
    width: 40px !important;
    height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    font-size: 28px !important;
    line-height: 1 !important;
    color: #fff !important;
}

.header-hotline-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.header-hotline-text small {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
}

.header-hotline-text strong {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: .2px !important;
}

.menu-btn {
    display: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

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

.hero-grid {
    grid-template-columns: minmax(0, 1fr) 408px !important;
    align-items: center !important;
}

.hero-form-box {
    padding: 18px !important;
    justify-content: flex-start !important;
}

.hero-form-box .form-heading {
    margin-bottom: 10px !important;
}

.hero-estimate-form {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.hero-estimate-form .form-row-2,
.hero-estimate-form .hero-form-row {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.hero-estimate-form input[name="property_address"],
.hero-estimate-form input[name="postcode"],
.hero-estimate-form input[name="full_name"],
.hero-estimate-form input[name="email"],
.hero-estimate-form select,
.hero-estimate-form .form-control {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
}

.hero-estimate-form .hero-email-field {
    grid-column: 1 / -1 !important;
}

.hero-estimate-form .form-control,
.hero-estimate-form .phone-wrap {
    height: 37px !important;
    min-height: 37px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    line-height: 37px !important;
    border-radius: 7px !important;
}

.hero-estimate-form button[type="submit"] {
    grid-column: 1 / -1 !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 14px !important;
    margin-top: 0 !important;
    border-radius: 7px !important;
    font-size: 12.5px !important;
}

.hero-estimate-form .form-alert {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
    padding: 8px 10px !important;
}

.hero-copy h1,
.page-hero h1,
[class*="-hero-content"] h1 {
    font-weight: 690 !important;
    letter-spacing: -.025em !important;
}

.section-title h2,
.center h2,
.assessment-info-content h2,
.wm-content h2,
.pricing-header h2 {
    font-weight: 650 !important;
}

/* Compact image-led hero style for inner pages */
.page-hero {
    min-height: 420px !important;
    padding: 120px 0 105px !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    background:
        linear-gradient(90deg, rgba(36,36,36,.86), rgba(36,36,36,.58), rgba(36,36,36,.18)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

.page-hero .section-kicker,
.page-hero h1,
.page-hero .lead,
.page-hero p {
    color: #ffffff !important;
}

.page-hero h1 {
    max-width: 760px !important;
    font-size: clamp(36px, 4.1vw, 58px) !important;
    line-height: 1.12 !important;
}

.page-hero .lead,
.page-hero p {
    max-width: 760px !important;
    font-weight: 500 !important;
}

body:has(.pricing-section) .page-hero {
    background:
        linear-gradient(90deg, rgba(36,36,36,.88), rgba(36,36,36,.58), rgba(36,36,36,.22)),
        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

body:has(.contact-grid) .page-hero {
    background:
        linear-gradient(90deg, rgba(36,36,36,.88), rgba(36,36,36,.58), rgba(36,36,36,.20)),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

.wm-landlord-hero,
.wm-ha4-hero,
.wm-asset-hero,
.audience-hero {
    min-height: 520px !important;
}

.wm-landlord-hero {
    background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

.wm-ha4-hero {
    background: url('https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

.wm-asset-hero {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat !important;
}

/* Keep slider arrows available while maintaining autoplay */
.slider-arrow,
.testimonial-prev,
.testimonial-next,
.wm-slider-prev,
.wm-slider-next,
.premium-slider-controls,
.wm-premium-slider-controls {
    display: inline-grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@media (max-width: 1080px) {
    :root {
        --wm-topbar: 48px !important;
        --wm-header: 86px !important;
    }

    .wm-topbar-inner {
        grid-template-columns: 1fr auto !important;
    }

    .wm-topbar-spacer {
        display: none !important;
    }

    .wm-topbar-text {
        text-align: left !important;
        white-space: normal !important;
        font-size: 13px !important;
    }

    .nav {
        display: none !important;
    }

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

    .header-hotline {
        border-left: 0 !important;
        padding-left: 0 !important;
        margin-right: 12px !important;
    }

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

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

@media (max-width: 767px) {
    :root {
        --wm-topbar: 46px !important;
        --wm-header: 76px !important;
    }

    .wm-topbar-inner {
        grid-template-columns: 1fr auto !important;
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 0 !important;
    }

    .wm-topbar-text {
        font-size: 11.5px !important;
        line-height: 1.25 !important;
    }

    .wm-topbar-dot,
    .wm-topbar-socials {
        display: none !important;
    }

    .wm-topbar-speak {
        min-width: 112px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
    }

    .logo-img {
        width: 165px !important;
        max-height: 58px !important;
    }

    .header-hotline-text {
        display: none !important;
    }

    .header-hotline-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 24px !important;
    }

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

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

    .page-hero {
        min-height: 340px !important;
        padding: 82px 0 74px !important;
    }

    .wm-landlord-hero,
    .wm-ha4-hero,
    .wm-asset-hero,
    .audience-hero {
        min-height: 430px !important;
    }
}

/* =====================================================
   USER FIX: OLD HEADER FEEL + NEW HOTLINE + COMPACT HERO/CTA
   ===================================================== */
:root {
    --wm-topbar: 48px !important;
    --wm-header: 78px !important;
}

body {
    padding-top: calc(var(--wm-topbar) + var(--wm-header)) !important;
}

.wm-topbar,
.site-header {
    background: #232323 !important;
}

.wm-topbar {
    border-top: 1px solid rgba(255,255,255,.10) !important;
    border-bottom: 0 !important;
}

.site-header {
    height: var(--wm-header) !important;
    top: var(--wm-topbar) !important;
    border-top: 1px solid rgba(245,245,245,.16) !important;
    border-bottom: 1px solid rgba(245,245,245,.18) !important;
    box-shadow: none !important;
}

.wm-topbar-inner {
    width: min(1320px, 94%) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    justify-content: space-between !important;
}

.wm-topbar-spacer {
    display: none !important;
}

.wm-topbar-text {
    text-align: left !important;
    justify-self: start !important;
}

.wm-topbar-right {
    justify-self: end !important;
}

.header-inner {
    width: min(1320px, 94%) !important;
    grid-template-columns: 235px 1fr auto !important;
    gap: 24px !important;
    height: 100% !important;
}

.logo-img {
    width: 188px !important;
    max-height: 62px !important;
}

.nav {
    gap: 28px !important;
    font-size: 13px !important;
}

.header-actions {
    gap: 10px !important;
}

.header-hotline {
    border-left: 1px solid rgba(245,245,245,.18) !important;
    padding-left: 18px !important;
}

.header-hotline-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 24px !important;
}

.header-hotline-text small {
    font-size: 12px !important;
    margin-bottom: 4px !important;
}

.header-hotline-text strong {
    font-size: 15px !important;
}

/* keep the desktop hotline only; do not show it on mobile */
@media (max-width: 1080px) {
    :root {
        --wm-header: 72px !important;
    }

    .header-hotline {
        display: none !important;
    }

    .menu-btn {
        display: inline-flex !important;
        background: var(--wm-dark) !important;
        border-radius: var(--wm-radius) !important;
    }
}

/* compact home hero so the full first section fits better on one screen */
.hero {
    padding-top: 36px !important;
    padding-bottom: 34px !important;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) 392px !important;
    gap: 22px !important;
    align-items: center !important;
}

.hero-copy {
    min-height: 430px !important;
    padding: 36px 42px !important;
}

.hero-copy h1 {
    font-size: clamp(31px, 3.6vw, 50px) !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
}

.hero-copy p {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
    font-weight: 430 !important;
}

.hero-actions {
    margin-top: 18px !important;
}

.hero-form-box {
    padding: 16px !important;
}

.hero-form-box .form-heading {
    margin-bottom: 8px !important;
}

.hero-form-box .form-heading h2 {
    font-size: 19px !important;
    line-height: 1.14 !important;
    font-weight: 650 !important;
}

.hero-form-box .form-heading p {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin-top: 4px !important;
}

.hero-estimate-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.hero-estimate-form .hero-address-field,
.hero-estimate-form .hero-email-field,
.hero-estimate-form button[type="submit"],
.hero-estimate-form .form-alert {
    grid-column: 1 / -1 !important;
}

.hero-estimate-form .form-row-2,
.hero-estimate-form .hero-form-row {
    grid-column: 1 / -1 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.hero-estimate-form .form-control,
.hero-estimate-form .phone-wrap {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    line-height: 36px !important;
}

.hero-estimate-form button[type="submit"] {
    height: 38px !important;
    min-height: 38px !important;
    font-size: 12px !important;
    margin-top: 0 !important;
}

/* push the two CTA cards up a little and reduce top/bottom space */
.hero-quick-actions {
    margin-top: -18px !important;
    padding-top: 0 !important;
    padding-bottom: 44px !important;
    position: relative !important;
    z-index: 3 !important;
}

.quick-action-card {
    min-height: 138px !important;
    padding: 24px 28px !important;
    grid-template-columns: 60px 2px 1fr !important;
    gap: 22px !important;
}

.quick-action-icon {
    font-size: 36px !important;
}

.quick-action-line {
    height: 58px !important;
}

.quick-action-content h3 {
    font-size: 20px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    margin-bottom: 7px !important;
}

.quick-action-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

.quick-action-content span {
    font-size: 12px !important;
}

@media (max-width: 767px) {
    :root {
        --wm-topbar: 46px !important;
        --wm-header: 68px !important;
    }

    .wm-topbar-inner {
        grid-template-columns: 1fr auto !important;
        padding-left: 12px !important;
        padding-right: 0 !important;
    }

    .logo-img {
        width: 154px !important;
        max-height: 52px !important;
    }

    .hero {
        padding-top: 26px !important;
        padding-bottom: 28px !important;
    }

    .hero-copy {
        min-height: auto !important;
        padding: 28px 18px !important;
    }

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

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

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

    .quick-action-card {
        min-height: auto !important;
        padding: 18px 16px !important;
        grid-template-columns: 48px 2px 1fr !important;
        gap: 14px !important;
    }

    .quick-action-line {
        height: 50px !important;
    }

    .quick-action-content h3 {
        font-size: 18px !important;
    }

    .quick-action-content p {
        font-size: 12.5px !important;
    }
}

/* =====================================================
   FINAL USER FIX: MOBILE HERO, LOGO SIZE, CTA TITLES,
   ONBOARDING ARROWS, TESTIMONIAL ARROWS, UNIFIED TITLES
   ===================================================== */
:root {
    --wm-heading-font: 'Inter', Arial, sans-serif;
}

/* Bigger logo while keeping the original header layout */
.logo-img {
    width: 215px !important;
    max-height: 72px !important;
}

.header-inner {
    grid-template-columns: 265px 1fr auto !important;
}

/* All section titles should feel like the home hero title family */
.hero-copy h1,
.page-hero h1,
.audience-hero-content h1,
.wm-landlord-hero h1,
.wm-ha4-hero h1,
.wm-asset-hero h1,
.section-title,
.section-title h2,
.center > h2,
.split-content h2,
.assessment-info-content h2,
.wm-content h2,
.pricing-header h2,
.partners-cta h3,
.quick-action-content h3,
.premium-slider-top h3,
.premium-slide-content h4,
.text-testimonials-section .section-title,
.faq-list + h2 {
    font-family: var(--wm-heading-font) !important;
    font-weight: 650 !important;
    letter-spacing: -0.025em !important;
}

.section-title,
.section-title h2,
.center > h2,
.split-content h2,
.assessment-info-content h2,
.wm-content h2,
.pricing-header h2 {
    font-size: clamp(32px, 4vw, 50px) !important;
    line-height: 1.1 !important;
}

/* CTA cards: reduce title size, especially on mobile */
.quick-action-content h3 {
    font-size: 19px !important;
    line-height: 1.16 !important;
}

/* Onboarding arrow buttons must stay side-by-side inline */
.premium-slider-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.premium-slider-top > div:first-child {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.premium-slider-controls {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.premium-arrow,
.wm-slider-prev,
.wm-slider-next {
    display: inline-grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    flex: 0 0 42px !important;
    margin: 0 !important;
}

/* Make testimonial arrows clearly available left and right */
.text-review-slider.testimonial-slider {
    position: relative !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.text-review-slider .testimonial-prev,
.text-review-slider .testimonial-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
}

.text-review-slider .testimonial-prev {
    left: 0 !important;
}

.text-review-slider .testimonial-next {
    right: 0 !important;
}

/* Restore the old mobile hero layout: stacked, centered and full width */
@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 1fr auto !important;
    }

    .logo-img {
        width: 200px !important;
        max-height: 68px !important;
    }

    section.hero .hero-grid,
    .hero-grid {
        grid-template-columns: 1fr !important;
        width: min(720px, 92%) !important;
        gap: 22px !important;
    }

    section.hero .hero-copy,
    .hero-copy {
        width: 100% !important;
        min-height: auto !important;
        padding: 30px 18px 12px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    section.hero .hero-copy .section-kicker,
    .hero .section-kicker {
        justify-content: center !important;
        text-align: center !important;
        width: auto !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    section.hero .hero-copy h1,
    .hero-copy h1 {
        max-width: 620px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    section.hero .hero-copy p,
    .hero-copy p {
        max-width: 620px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    section.hero .hero-actions,
    .hero-actions {
        justify-content: center !important;
    }

    section.hero .hero-form-box,
    .hero-form-box {
        width: 100% !important;
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 767px) {
    .logo-img {
        width: 176px !important;
        max-height: 60px !important;
    }

    section.hero,
    .hero {
        padding-top: 24px !important;
        padding-bottom: 28px !important;
    }

    section.hero .hero-grid,
    .hero-grid {
        width: min(100% - 24px, 520px) !important;
        gap: 18px !important;
    }

    section.hero .hero-copy,
    .hero-copy {
        padding: 20px 8px 6px !important;
    }

    section.hero .hero-copy h1,
    .hero-copy h1 {
        font-size: 30px !important;
        line-height: 1.14 !important;
    }

    section.hero .hero-copy p,
    .hero-copy p {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

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

    .quick-action-content h3 {
        font-size: 16px !important;
        line-height: 1.18 !important;
        margin-bottom: 5px !important;
    }

    .quick-action-content p {
        font-size: 12px !important;
        line-height: 1.42 !important;
    }

    .quick-action-card {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .section-title,
    .section-title h2,
    .center > h2,
    .split-content h2,
    .assessment-info-content h2,
    .wm-content h2,
    .pricing-header h2 {
        font-size: 30px !important;
        line-height: 1.12 !important;
    }

    .premium-slider-top {
        display: flex !important;
        align-items: flex-start !important;
    }

    .premium-slider-top h3 {
        font-size: 20px !important;
        line-height: 1.12 !important;
    }

    .premium-slider-controls {
        display: inline-flex !important;
        flex-direction: row !important;
        gap: 7px !important;
    }

    .premium-arrow,
    .wm-slider-prev,
    .wm-slider-next {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        flex-basis: 38px !important;
        font-size: 22px !important;
    }

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

    .text-review-slider .testimonial-prev,
    .text-review-slider .testimonial-next {
        width: 36px !important;
        height: 36px !important;
        top: auto !important;
        bottom: -48px !important;
        transform: none !important;
    }

    .text-review-slider .testimonial-prev {
        left: calc(50% - 45px) !important;
    }

    .text-review-slider .testimonial-next {
        right: calc(50% - 45px) !important;
    }

    .text-testimonials-section .testimonial-dots {
        margin-top: 62px !important;
    }
}

@media (max-width: 420px) {
    .logo-img {
        width: 164px !important;
    }

    section.hero .hero-copy h1,
    .hero-copy h1 {
        font-size: 27px !important;
    }

    .section-title,
    .section-title h2,
    .center > h2,
    .split-content h2,
    .assessment-info-content h2,
    .wm-content h2,
    .pricing-header h2 {
        font-size: 27px !important;
    }
}

/* =====================================================
   FINAL CORRECTION: HEADER, MOBILE HERO FORM GRID, CTA, DROPDOWN, TITLES
   ===================================================== */
:root{
    --wm-heading-font:'Inter', Arial, sans-serif;
    --wm-brand-btn:#6f735f;
    --wm-header-bg:#232323;
}

/* Top header button must use brand button colour, not black */
.wm-topbar-speak{
    background:var(--wm-brand-btn) !important;
    color:#ffffff !important;
}

/* Main header and dropdown should match top header background */
.site-header,
.wm-topbar{
    background:var(--wm-header-bg) !important;
}
.site-header{
    border-top:1px solid rgba(245,245,245,.22) !important;
    border-bottom:1px solid rgba(245,245,245,.22) !important;
}
.nav-dropdown-menu{
    background:var(--wm-header-bg) !important;
    border:1px solid rgba(245,245,245,.16) !important;
    box-shadow:0 18px 45px rgba(0,0,0,.28) !important;
}
.nav-dropdown-menu a{
    color:#ffffff !important;
    opacity:1 !important;
    font-weight:600 !important;
}
.nav-dropdown-menu a:hover{
    background:rgba(255,255,255,.08) !important;
    color:#c49a68 !important;
}

/* Mobile header: logo left, toggle right, no hotline */
@media(max-width:1080px){
    .header-inner{
        display:grid !important;
        grid-template-columns:auto auto !important;
        justify-content:space-between !important;
        align-items:center !important;
        width:min(1320px,94%) !important;
    }
    .brand-logo,
    .brand{
        justify-self:start !important;
        margin:0 !important;
        text-align:left !important;
    }
    .header-actions{
        justify-self:end !important;
        margin-left:auto !important;
    }
    .menu-btn{
        margin-left:auto !important;
        justify-self:end !important;
    }
    .header-hotline{
        display:none !important;
    }
}

/* Hero form: 2-grid on desktop and mobile, with tighter bottom spacing */
.hero-form-box{
    padding:16px 16px 14px !important;
}
.hero-form-box .form-heading{
    margin-bottom:8px !important;
}
.hero-estimate-form{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
    margin-bottom:0 !important;
}
.hero-estimate-form .form-row-2,
.hero-estimate-form .hero-form-row{
    display:grid !important;
    grid-column:1 / -1 !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
}
.hero-estimate-form .hero-address-field,
.hero-estimate-form .hero-email-field,
.hero-estimate-form input[name="property_address"],
.hero-estimate-form input[name="email"]{
    grid-column:auto !important;
}
.hero-estimate-form button[type="submit"],
.hero-estimate-form .form-alert{
    grid-column:1 / -1 !important;
}
.hero-estimate-form .form-alert:empty{
    display:none !important;
    margin:0 !important;
    padding:0 !important;
    min-height:0 !important;
}
.hero-estimate-form .form-control,
.hero-estimate-form select,
.hero-estimate-form input{
    min-width:0 !important;
}
.hero-estimate-form button[type="submit"]{
    margin-bottom:0 !important;
}

@media(max-width:767px){
    .hero-form-box{
        padding:14px 14px 12px !important;
    }
    .hero-estimate-form,
    .hero-estimate-form .form-row-2,
    .hero-estimate-form .hero-form-row{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:7px !important;
    }
    .hero-estimate-form .hero-address-field,
    .hero-estimate-form .hero-email-field,
    .hero-estimate-form input[name="property_address"],
    .hero-estimate-form input[name="email"],
    .hero-estimate-form select,
    .hero-estimate-form input[name="full_name"],
    .hero-estimate-form input[name="phone"]{
        grid-column:auto !important;
    }
    .hero-estimate-form button[type="submit"],
    .hero-estimate-form .form-alert{
        grid-column:1 / -1 !important;
    }
    .hero-estimate-form .form-control,
    .hero-estimate-form .phone-wrap{
        height:34px !important;
        min-height:34px !important;
        padding:0 9px !important;
        font-size:11px !important;
        line-height:34px !important;
    }
    .hero-estimate-form button[type="submit"]{
        height:36px !important;
        min-height:36px !important;
        font-size:11.5px !important;
    }
}

/* Mobile hero action buttons: keep inline in two columns */
@media(max-width:767px){
    .hero-actions{
        display:grid !important;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
        width:100% !important;
        max-width:420px !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }
    .hero-actions .btn{
        width:100% !important;
        min-width:0 !important;
        padding:0 10px !important;
        height:46px !important;
        min-height:46px !important;
        font-size:12px !important;
        white-space:nowrap !important;
    }
}

/* CTA cards: smaller mobile titles and compact vertical spacing */
@media(max-width:767px){
    .quick-action-content h3,
    .mobile-cta h3,
    .cta-strip h2,
    .cta-strip h3,
    .partners-cta h3{
        font-size:15px !important;
        line-height:1.18 !important;
        letter-spacing:-.015em !important;
    }
    .quick-action-card,
    .mobile-cta,
    .cta-strip,
    .partners-cta{
        padding-top:14px !important;
        padding-bottom:14px !important;
    }
}

/* Keep hero form top and bottom spacing balanced */
.hero-form-box .estimate-form + *,
.hero-form-box .form-alert:empty{
    margin-bottom:0 !important;
}

/* Global page typography: make section/hero titles consistent with home hero style */
body,
button,
input,
select,
textarea{
    font-family:var(--wm-heading-font) !important;
}
.hero-copy h1,
.page-hero h1,
.audience-hero-content h1,
.wm-landlord-hero h1,
.wm-ha4-hero h1,
.wm-asset-hero h1,
.section-title,
.section-title h2,
.center > h2,
.split-content h2,
.assessment-info-content h2,
.wm-content h2,
.pricing-header h2,
.contact-section h2,
.packages-section h2,
.faq-section h2,
.text-testimonials-section .section-title,
.premium-slider-top h3{
    font-family:var(--wm-heading-font) !important;
    font-weight:650 !important;
    text-transform:capitalize !important;
    letter-spacing:-.025em !important;
    line-height:1.1 !important;
}
.section-title,
.section-title h2,
.center > h2,
.split-content h2,
.assessment-info-content h2,
.wm-content h2,
.pricing-header h2,
.contact-section h2,
.packages-section h2,
.faq-section h2{
    font-size:clamp(30px,3.8vw,50px) !important;
}
@media(max-width:767px){
    .section-title,
    .section-title h2,
    .center > h2,
    .split-content h2,
    .assessment-info-content h2,
    .wm-content h2,
    .pricing-header h2,
    .contact-section h2,
    .packages-section h2,
    .faq-section h2{
        font-size:28px !important;
    }
}

/* =====================================================
   FINAL MOBILE HEADER + HERO FORM + KICKER FIX
   ===================================================== */

/* Hidden fields must never take space inside the hero form grid */
.hero-estimate-form input[type="hidden"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    grid-column: auto !important;
}

/* Keep hero form as a true 2-column grid on desktop and mobile */
.hero-estimate-form {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
}

.hero-estimate-form .form-row-2,
.hero-estimate-form .hero-form-row {
    display: contents !important;
}

.hero-estimate-form .hero-address-field,
.hero-estimate-form .hero-email-field,
.hero-estimate-form input[name="full_name"],
.hero-estimate-form input[name="phone"],
.hero-estimate-form select,
.hero-estimate-form .form-control {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
}

.hero-estimate-form button[type="submit"],
.hero-estimate-form .form-alert {
    grid-column: 1 / -1 !important;
}

.hero-form-box {
    padding-bottom: 16px !important;
}

.hero-estimate-form button[type="submit"] {
    margin-bottom: 0 !important;
}

/* Make long subtitle/kicker badges fit their content on mobile instead of stretching full width */
.section-kicker,
.page-hero .section-kicker,
.hero .section-kicker,
.section-dark .section-kicker,
.section-dark-2 .section-kicker {
    width: fit-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
}

@media (max-width: 767px) {
    /* Mobile header: hamburger first, logo to its right, no hotline */
    .site-header .header-inner {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) !important;
        align-items: center !important;
        justify-content: start !important;
        gap: 14px !important;
        width: 100% !important;
        padding-left: 34px !important;
        padding-right: 22px !important;
    }

    .site-header .header-actions {
        order: 1 !important;
        grid-column: 1 !important;
        justify-self: start !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header .brand-logo {
        order: 2 !important;
        grid-column: 2 !important;
        justify-self: start !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .site-header .menu-btn {
        display: inline-flex !important;
        margin: 0 !important;
    }

    .site-header .header-hotline {
        display: none !important;
    }

    .site-header .logo-img {
        width: 178px !important;
        max-height: 58px !important;
        object-fit: contain !important;
    }

    /* keep every visible hero-form control in two columns even on phones */
    .hero-estimate-form,
    .hero-estimate-form .form-row-2,
    .hero-estimate-form .hero-form-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .hero-estimate-form .form-row-2,
    .hero-estimate-form .hero-form-row {
        display: contents !important;
    }

    .hero-estimate-form .hero-address-field,
    .hero-estimate-form .hero-email-field,
    .hero-estimate-form input[name="full_name"],
    .hero-estimate-form input[name="phone"],
    .hero-estimate-form select,
    .hero-estimate-form .form-control {
        grid-column: auto !important;
        min-width: 0 !important;
    }

    .hero-estimate-form button[type="submit"],
    .hero-estimate-form .form-alert {
        grid-column: 1 / -1 !important;
    }

    .hero-estimate-form .form-control,
    .hero-estimate-form .phone-wrap {
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    .hero-form-box {
        padding: 18px !important;
        padding-bottom: 18px !important;
    }

    .section-kicker,
    .page-hero .section-kicker,
    .hero .section-kicker,
    .section-dark .section-kicker,
    .section-dark-2 .section-kicker {
        width: fit-content !important;
        max-width: calc(100vw - 56px) !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        white-space: normal !important;
    }
}

/* FINAL MOBILE HERO FORM + HEADER OVERRIDE */
.hero-estimate-form{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
    align-items:stretch !important;
}
.hero-estimate-form input[type="hidden"]{
    display:none !important;
    position:absolute !important;
    width:0 !important;
    height:0 !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    grid-column:auto !important;
}
.hero-estimate-form > .form-control,
.hero-estimate-form > select,
.hero-estimate-form > input:not([type="hidden"]){
    grid-column:auto !important;
    width:100% !important;
    min-width:0 !important;
}
.hero-estimate-form > button[type="submit"],
.hero-estimate-form > .form-alert{
    grid-column:1 / -1 !important;
}
.hero-estimate-form > .form-alert:empty{
    display:none !important;
}
@media(max-width:767px){
    .header-inner{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        gap:14px !important;
    }
    .header-inner .brand,
    .header-inner .brand-logo{
        order:1 !important;
        margin-right:auto !important;
        margin-left:0 !important;
        justify-self:flex-start !important;
        text-align:left !important;
    }
    .header-actions{
        order:2 !important;
        margin-left:auto !important;
        justify-content:flex-end !important;
        width:auto !important;
    }
    .menu-btn{
        display:inline-flex !important;
        margin-left:auto !important;
        margin-right:0 !important;
        order:3 !important;
    }
    .hero-estimate-form{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:8px !important;
    }
    .hero-estimate-form > .form-control,
    .hero-estimate-form > select,
    .hero-estimate-form > input:not([type="hidden"]){
        grid-column:auto !important;
        width:100% !important;
    }
    .hero-estimate-form > button[type="submit"],
    .hero-estimate-form > .form-alert{
        grid-column:1 / -1 !important;
    }
}

/* FINAL FIX: force mobile header logo left and toggle right */
@media (max-width: 767px) {
    .site-header .header-inner,
    header.site-header .container.header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        gap: 12px !important;
    }

    .site-header .brand,
    .site-header .brand-logo,
    header.site-header .brand.brand-logo {
        order: 1 !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        justify-self: flex-start !important;
        flex: 0 1 auto !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .site-header .header-actions,
    header.site-header .header-actions {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        justify-self: flex-end !important;
        flex: 0 0 auto !important;
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .site-header .header-hotline {
        display: none !important;
    }

    .site-header .menu-btn,
    header.site-header .header-actions .menu-btn {
        order: 1 !important;
        display: inline-flex !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex: 0 0 43px !important;
    }
}

/* =========================================================
   CLIENT HERO UPDATE - Home page hero section
   Applied from the client's video feedback: the hero content,
   estimate form and two action cards now sit together in one
   cleaner above-the-fold section.
   ========================================================= */
.wm-client-hero {
    background: #E6E6E6 !important;
    padding: 34px 0 58px !important;
    overflow: hidden !important;
}

.wm-client-hero .container-wide {
    max-width: 1260px !important;
}

.wm-hero-stage {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) 410px !important;
    gap: 30px !important;
    align-items: center !important;
}

.wm-client-hero .wm-hero-copy {
    min-height: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 34px 0 28px !important;
    justify-content: center !important;
}

.wm-client-hero .section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    margin-bottom: 22px !important;
    background: transparent !important;
    border: 0 !important;
    color: #696B5D !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    letter-spacing: 1.6px !important;
    text-transform: uppercase !important;
}

.wm-client-hero .wm-hero-copy h1 {
    max-width: 820px !important;
    color: #5D5D5D !important;
    font-size: clamp(42px, 5vw, 66px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.wm-client-hero .wm-hero-copy p {
    max-width: 820px !important;
    margin-top: 20px !important;
    color: #696B5D !important;
    font-size: 16px !important;
    line-height: 1.78 !important;
    font-weight: 500 !important;
}

.wm-client-hero .hero-actions {
    margin-top: 24px !important;
    gap: 12px !important;
}

.wm-client-hero .btn {
    min-height: 48px !important;
    border-radius: 7px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.wm-client-hero .wm-hero-form-box {
    align-self: center !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid rgba(36, 36, 36, 0.08) !important;
    border-radius: 8px !important;
    padding: 22px !important;
    box-shadow: 0 22px 55px rgba(36, 36, 36, 0.10) !important;
}

.wm-client-hero .wm-hero-form-box .form-heading {
    margin-bottom: 14px !important;
}

.wm-client-hero .wm-hero-form-box .form-heading h2 {
    color: #242424 !important;
    font-size: 21px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
}

.wm-client-hero .wm-hero-form-box .form-heading p {
    margin-top: 6px !important;
    color: #5D5D5D !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
}

.wm-client-hero .wm-hero-quick-actions {
    margin-top: 22px !important;
}

.wm-client-hero .quick-action-card {
    min-height: 142px !important;
    border-radius: 6px !important;
    padding: 28px 30px !important;
    grid-template-columns: 64px 2px 1fr !important;
    gap: 24px !important;
    background: #242424 !important;
    box-shadow: 0 18px 45px rgba(36, 36, 36, 0.14) !important;
}

.wm-client-hero .quick-action-card:hover {
    transform: translateY(-3px) !important;
    background: #343434 !important;
}

.wm-client-hero .quick-action-icon {
    font-size: 40px !important;
}

.wm-client-hero .quick-action-line {
    height: 68px !important;
}

.wm-client-hero .quick-action-content h3 {
    font-size: 21px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
}

.wm-client-hero .quick-action-content p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 10px !important;
}

.wm-client-hero .quick-action-content span {
    font-size: 12px !important;
}

@media (max-width: 1180px) {
    .wm-hero-stage {
        grid-template-columns: minmax(0, 1fr) 390px !important;
        gap: 24px !important;
    }

    .wm-client-hero .wm-hero-copy h1 {
        font-size: clamp(38px, 4.8vw, 58px) !important;
    }
}

@media (max-width: 991px) {
    .wm-client-hero {
        padding: 30px 0 46px !important;
    }

    .wm-hero-stage {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .wm-client-hero .wm-hero-copy {
        text-align: center !important;
        align-items: center !important;
        padding: 20px 0 4px !important;
    }

    .wm-client-hero .wm-hero-copy h1,
    .wm-client-hero .wm-hero-copy p {
        max-width: 760px !important;
    }

    .wm-client-hero .hero-actions {
        justify-content: center !important;
    }

    .wm-client-hero .wm-hero-form-box {
        max-width: 560px !important;
        margin: 0 auto !important;
    }

    .wm-client-hero .wm-hero-quick-actions {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 600px) {
    .wm-client-hero {
        padding-top: 24px !important;
        padding-bottom: 40px !important;
    }

    .wm-client-hero .section-kicker {
        justify-content: center !important;
        margin-bottom: 14px !important;
        font-size: 11px !important;
        letter-spacing: 1.1px !important;
    }

    .wm-client-hero .wm-hero-copy h1 {
        font-size: clamp(31px, 9.4vw, 42px) !important;
        line-height: 1.08 !important;
    }

    .wm-client-hero .wm-hero-copy p {
        margin-top: 14px !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .wm-client-hero .hero-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .wm-client-hero .btn {
        width: 100% !important;
        min-height: 44px !important;
        padding: 0 10px !important;
        font-size: 11.5px !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .wm-client-hero .wm-hero-form-box {
        padding: 16px !important;
        border-radius: 7px !important;
    }

    .wm-client-hero .wm-hero-form-box .form-heading h2 {
        font-size: 18px !important;
    }

    .wm-client-hero .quick-action-card {
        grid-template-columns: 48px 2px 1fr !important;
        gap: 15px !important;
        padding: 22px 16px !important;
        min-height: auto !important;
    }

    .wm-client-hero .quick-action-icon {
        font-size: 32px !important;
    }

    .wm-client-hero .quick-action-line {
        height: 62px !important;
    }

    .wm-client-hero .quick-action-content h3 {
        font-size: 18px !important;
    }

    .wm-client-hero .quick-action-content p {
        font-size: 12.5px !important;
    }
}
