/* ============== Base ============== */

:root {
    --brand-teal: #009282;
    --black: #000;
    --star: #ffd93d;
    --bg-grad: linear-gradient(180deg, #ffffff -25.31%, #edfbff 91.13%);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

.dropdown-menu-custom li {
    list-style: none !important;
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.lp-body {
    font-family: "Helvetica Neue", Helvetica, "Outfit", Inter, system-ui,
        -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #0b1b2a;
    background: var(--bg-grad);
}

/* ============== Layout helper ============== */

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 24px;
    text-align: center;
}

/* ============== Nav (FIXED ON TOP) ============== */

/* Grid ensures: brand hard-left, menu centered, CTA hard-right */
.lp-nav {
    position: fixed; /* was: static */
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(0deg, #f7ffff 35%, #ffffff 95%);
    border-bottom: 0;
}
/* prevent content from sliding under fixed nav */
body.lp-body {
    padding-top: 90px; /* tweak if needed to match nav height */
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
    align-items: end;
    /* bottom baseline alignment */
    padding: 31px 0 8px;
}

.nav-inner > * {
    align-self: end;
}

.brand {
    display: flex;
    align-items: end;
    gap: 12px;
    justify-self: start;
}

.brand img {
    height: 24px;
    /* width: auto; */
    display: block;
    margin-bottom: 8px;
}

.menu {
    justify-self: center;
    /* center block */
    display: flex;
    gap: 26px;
    align-items: end;
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    /* font-size: 14px; */
    line-height: 1;
    /* tight baseline */
    font-family: "Outfit", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif !important;
}

.menu a:hover {
    color: var(--brand-teal);
}

.hide-mobile {
    display: inline-flex;
    justify-self: end;
}

/* CTA pill */

.btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.2px;
    line-height: 1.1;
    color: #fff;
    background: var(--brand-teal);
    border: 2px solid var(--brand-teal);
    box-shadow: 0 10px 28px rgba(0, 146, 130, 0.28);
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 146, 130, 0.32);
}

.btn:active {
    transform: none;
}

.btn-sm {
    padding: 7px 18px;
    font-size: 10px;
}

.btn-lg {
    padding: 6px 17px;
    font-size: 15px;
    font-weight: 400px;
    margin-top: 22px;
    line-height: 1rem;
    letter-spacing: 0.1rem;
}

.btn .btn-sub {
    font-weight: 500;
    opacity: 0.95;
    font-size: 10px;
    color: #e9fffb;
}

/* Hamburger */

.hamburger {
    display: none;
    background: 0;
    border: 0;
    width: 38px;
    height: 38px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #1f2a33;
    margin: 7px 6px;
}

/* NAV: on hover make text white and show teal pill background */

.menu a {
    display: inline-flex;
    /*keepsverticalalignmentclean*/
    align-items: center;
    padding: 8px 6px;
    /*sothebghasbreathingroom*/
    border-radius: 5px;
    /*pill*/
    transition: color 0.15s ease, background-color 0.15s ease,
        box-shadow 0.15s ease;
    -webkit-transition: color 0.15s ease, background-color 0.15s ease;
    -moz-transition: color 0.15s ease, background-color 0.15s ease;
    -ms-transition: color 0.15s ease, background-color 0.15s ease;
    -o-transition: color 0.15s ease, background-color 0.15s ease;
}

.dropdown-menu-custom {
    padding: 10px 35px;
    background: #fff;
    border-radius: 10px;
    top: 87%;
    right: 24%;
}

/* menu links */
.menu > a,
.dropdown-toggle-link {
    font-size: 16px;
    color: #111;
    text-decoration: none;
}

/* 🔹 Dropdown container */
.custom-dropdown {
    display: flex;
    flex-direction: column;
}

/* 🔹 Dropdown list (INLINE, not floating) */
.dropdown-menu-custom {
    position: absolute; /* 🔥 IMPORTANT */
    box-shadow: none;
    margin-top: 8px;
    padding-left: 16px;
    display: none;
}

/* show dropdown */
.custom-dropdown.active .dropdown-menu-custom {
    display: block;
}

/* dropdown items */
.dropdown-menu-custom li {
    list-style: disc;
    margin-left: 16px;
}

.dropdown-menu-custom a {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* arrow rotate */
.custom-dropdown.active .arrow {
    transform: rotate(180deg);
    display: inline-block;
}

.download-tools {
    padding: 80px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 15px;
}

/* Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.tool-card:hover {
    background: #f9943b !important;
}
/* Card */
.tool-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding-top: 30px;
    background: #606060;
    transition: transform 0.32s ease, background-color 0.32s ease;
}

.tool-card:hover {
    transform: translateY(-6px);
}

.tool-image img {
    width: 100%;
    display: block;
}

/* Footer */
.tool-footer {
    color: #fff;
    padding: 14px;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 35px;
}

.tool-footer span {
    font-size: 17px;
    display: block;
    font-family: "Outfit", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif !important;
}

.tool-footer h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 0 !important;
    font-family: "Helvetica Neue", Helvetica, "Outfit", Inter, system-ui,
        -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-tools {
        padding: 10px 20px;
        background: #fff;
        font-family: Arial, sans-serif;
        padding-bottom: 45px;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Empty state inside tools grid */
.tools-empty {
    grid-column: 1 / -1; /* take full row in grid */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 10px;
}

.tools-empty-inner {
    width: 100%;
    max-width: 720px;
    text-align: center;
    background: #fff;
    border: 1px dashed #e6e6e6;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.tools-empty-inner h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.tools-empty-inner p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* The bellow is for uniform image in cards */
/* ✅ Cursor pointer (keep) */
.btn,
.outline-btn,
.popup-form button,
.lf-actions .btn-lg,
.step-btn,
button[type="submit"],
input[type="submit"],
.tool-card {
    cursor: pointer;
}

/* ✅ Alternate: Image looks like 1st card (fit inside, no crop) */
.tool-image {
    height: 260px; /* adjust this to match your 1st card image area */
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px; /* gives nice spacing like your first card */
}

.tool-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto; /* prevents stretching */
    height: auto; /* prevents stretching */
    object-fit: contain; /* ✅ key: keeps full image visible like card 1 */
    display: block;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Popup box */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}

/* Close */
.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

/* Text */
.popup-box h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.popup-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Form */
.popup-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.popup-form button {
    width: 100%;
    padding: 12px;
    background: #0a7c6a;
    color: #fff;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-form button:hover {
    background: #065f52;
}

/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dropdown */
.custom-dropdown {
    display: flex;
    flex-direction: column;
}

/* 🔥 IMPORTANT FIX */
.dropdown-menu-custom {
    display: none; /* default hidden */
    margin-top: 8px;
    padding-left: 16px;
}

/* 🔥 WHEN ACTIVE → SHOW */
.custom-dropdown.active .dropdown-menu-custom {
    display: block;
}

/* Arrow rotate */
.custom-dropdown.active .arrow {
    transform: rotate(180deg);
    display: inline-block;
}

.custom-dropdown .arrow {
    margin-left: 5px;
}

.menu a:hover,
.menu a:focus-visible {
    color: #fff !important;
    /* white text */
    background: var(--brand-teal);
    /* #009282 */
    box-shadow: 0 6px 16px rgba(0, 146, 130, 0.22);
    text-decoration: none;
}

.menu a:active {
    filter: brightness(0.95);
}

/* ============== Hero ============== */

.hero {
    padding: 56px 0 60px;
    background: linear-gradient(0deg, #ccffff 45%, #f7ffff 95%);
}

.hero-title {
    margin: 10px 0 6px;
    text-align: center;
    font-weight: 1000;
    font-size: 62px;
    letter-spacing: -0.5px;
    color: var(--brand-teal);
}

.hero-subtitle {
    margin: 4px 0;
    text-align: center;
    font-weight: 1000;
    font-size: 61px;
    letter-spacing: 0.8px;
    color: #002a3a;
}

.hero-subtitle .teal {
    color: var(--brand-teal);
}

.hero-desc {
    max-width: 1200px;
    margin: 14px auto 6px;
    text-align: center;
    color: #000000;
    font-size: 23px;
    line-height: 1.55;
    font-weight: 450;
}

.btn-lg {
    margin-left: auto;
    margin-right: auto;
}
.hero-top-pill {
    margin: 6px auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #002a3a;
    border-radius: 999px;
    padding: 9px 22px; /* a little more room for the dot */
    font-size: 12px;
    font-weight: 500;
    color: black;
    background: white;
    font-family: "Outfit", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif !important;
    gap: 10px; /* space between dot and text */
}

/* green dot like screenshot */
.pill-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #009282; /* green */
    flex-shrink: 0;
}

/* ensure CTA perfectly centered */

/* ============== Social proof ============== */

.social-proof {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 999px;
    /* border: 3px solid #fff; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12); */
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* thin vertical separator */

.sp-divider {
    width: 1px;
    height: 34px;
    background: #002a3a;
}

/* stars on top, text below */

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.star {
    width: 20px;
    height: 20px;
    fill: var(--star);
}

.proof-copy {
    font-weight: 400;
    color: #0e141a;
}

/* ============== Responsive ============== */

@media (max-width: 1100px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }
    .hamburger {
        display: inline-block;
        margin-left: auto;
    }
    .hide-mobile {
        display: none;
    }
    .hero {
        padding: 48px 0 52px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .hero-top-pill {
        font-size: 8px;
        padding: 3px 12px;
        text-align: center;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 19px;
    }
    .hero-desc {
        font-size: 14px;
        padding: 0 6px;
        margin-top: -0.5px;
    }
    .btn-lg {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
    }
    .avatars img {
        width: 38px;
        height: 38px;
    }
    .social-proof {
        flex-direction: column;
        gap: 12px;
    }
    .sp-divider {
        display: none;
    }
    .rating {
        align-items: center;
    }
}
/* ==== GLOBAL MOBILE FIXES (iPhone & small screens) ==== */
@media (max-width: 640px) {
    /* 1) Prevent any horizontal scrolling / white gap on right */
    html,
    body {
        overflow-x: hidden;
    }

    /* 2) Slightly tighten the side padding so content hugs the frame */
    .lp-container {
        padding-inline: 16px;
        padding-top: 15px;
    }

    /* 3) Cards that had fixed % widths + margins – make them full width */
    .thing-card {
        width: 100%;
    }

    .service-item {
        width: 100%;
    }

    .vs-col.left,
    .vs-col.right {
        width: 100%;
        margin: 0;
    }

    /* 4) Testimonial grids had big side margins -> remove on mobile
       (these margins + .lp-container padding were causing overflow) */
    .swos-grid,
    .swos-grid--reverse {
        margin: 0;
    }

    /* 5) Review bubbles were pulled out with big negative/positive offsets
       which also pushed the layout out of the viewport.
       On mobile keep them in normal flow and hide the big arrows. */
    .review-wrap,
    .review-wrap--rev {
        position: static;
        right: auto;
        left: auto;
        margin-top: 24px;
    }

    .review-arrow {
        display: none;
    }
}
/* ==== Mobile dropdown nav (hamburger) ==== */
@media (max-width: 900px) {
    .menu.open {
        display: flex;
        position: absolute;
        top: 72px;
        right: -26%;
        left: 16px;
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
        z-index: 60;
        height: 285px;
        width: 41%;
    }

    /* 🔹 Mobile sidebar menu */
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 40vh;
        background: #fff;
        padding: 80px 24px 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        transform: translateX(100%);
        transition: 0.3s ease;
        z-index: 9999;
    }

    .menu.open {
        transform: translateX(0);
    }
}
/* === MOBILE: tighten top gap before nav === */
@media (max-width: 640px) {
    .nav-inner {
        padding: 16px; /* was 50px 0 8px */
    }

    /* optional: slightly reduce body offset since nav is shorter */
    body.lp-body {
        padding-top: 70px; /* was 90px */
    }
}

/* Mobile dropdown (when hamburger is tapped) */

/* .menu.open {
    display: flex;
    position: absolute;
    right: 16px;
    top: 72px;
    z-index: 60;
    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
} */

/* ===== VIDEO SECTION (white bg) ===== */

.video-section {
    background: #fff;
    padding: 48px 0 64px;
}

/* center container */

.yt-wrap {
    display: flex;
    justify-content: center;
}

/* framed thumbnail */

/* framed thumbnail */
.yt-card {
    position: relative;
    width: 77%;
    max-width: 980px;
    border: 8px solid var(--brand-teal);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 146, 130, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;

    /* ✨ key change – no fixed height, use aspect ratio */
    aspect-ratio: 16 / 9;
}

/* image fully covers the frame */
.yt-card .thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* like background-size: cover */
    display: block;
}

.yt-card .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-card .play img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.yt-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14),
        0 10px 28px rgba(0, 146, 130, 0.22);
}

/* spacing under the video */

.video-cta {
    margin-top: 28px;
    text-align: center;
}

.video-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 18px;
}

/* responsive */

@media (max-width: 640px) {
    .yt-card {
        max-width: 100%;
        border-width: 6px;
        border-radius: 22px;
    }
    .yt-card .play img {
        width: 64px;
    }
    .video-cta .btn-lg {
        width: 100%;
        max-width: 520px;
    }
}

/* ===== TEAL DIVIDER ===== */
.divider-band {
    background: #009282; /* brand teal */
    padding: 10px 0;
    height: 150px;
}

.divider-band .lp-container.divider-inner {
    height: 100%;
    display: flex;
    flex-direction: column; /* text on top, logos below */
    align-items: center;
    justify-content: center;
}

/* "Trusted by:" text */
.divider-text {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
}

/* OUTER CONTAINER (mask + fade edges) */
.divider-logos {
    position: relative;
    width: min(100%, 1200px); /* little more width */
    overflow: hidden;
}

/* left/right fade overlays */
.divider-logos::before,
.divider-logos::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px; /* fade width */
    pointer-events: none;
    z-index: 1;
}

.divider-logos::before {
    left: 0;
    background: linear-gradient(
        to right,
        #009282 0%,
        rgba(0, 146, 130, 0) 100%
    );
}

.divider-logos::after {
    right: 0;
    background: linear-gradient(to left, #009282 0%, rgba(0, 146, 130, 0) 100%);
}

/* INNER TRACK (scrolling row) */
.divider-logos-track {
    display: flex;
    align-items: center;
    gap: 100px; /* same big gap */
    width: max-content; /* shrink to content width */
    animation: divider-logos-scroll 25s linear infinite;
    position: relative;
    z-index: 0; /* under fade */
}

/* Bigger default logos */
.divider-logos-track img {
    max-height: 95px; /* little more size */
    width: auto;
    object-fit: contain;
}

/* Make logo4 slightly smaller */
.divider-logos-track img.logo-small {
    max-height: 45px; /* adjust till it looks right */
}

/* Keyframes for infinite scroll */
@keyframes divider-logos-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .divider-logos-track {
        gap: 30px;
    }

    .divider-logos-track img {
        max-height: 60px;
    }

    .divider-logos-track img.logo-small {
        max-height: 45px;
    }
}

/* ===== WHAT WE DO ===== */

.wwd-section {
    background: white;
    padding: 72px 0 90px;
}

.wwd-title {
    margin: 0 0 8px;
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    letter-spacing: -0.3px;
    color: #002a3a;
}

.wwd-sub {
    margin: 19px auto 34px;
    text-align: center;
    max-width: 1200px;
    font-size: 28px;
    line-height: 1.35;
    color: #002a3a;
    font-weight: 500;
}

.wwd-sub .teal {
    color: var(--brand-teal);
    font-weight: 800;
}

/* grid of 9 */

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wwd-grid-row-tow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    width: 80%;
    margin-left: 10%;
}

.wwd-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 28px 28px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04),
        /* soft depth */ 0 0 0 4px #e6fff9; /* light #E6FFF9 outline/shadow */
}

/* ICON CONTAINER – layered green squares like sample */
.wwd-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* back light-green square */
.wwd-icon::before,
.wwd-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

/* shadow square (light green, bottom-right) */
.wwd-icon::before {
    background: rgb(150, 210, 203); /* lighter green */
    transform: translate(4px, 4px); /* a bit down & right */
}

/* front main square */
.wwd-icon::after {
    background: #009282; /* brand teal */
    border: 3px solid var(--brand-teal);
}

/* icon image on top */
.wwd-icon img {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.wwd-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-weight: 900;
    font-size: 82px;
    line-height: 1;
    color: rgba(0, 146, 130, 0.16);
    /* pale number like reference */
}

.wwd-card h3 {
    margin: 10px 0 10px;
    font-size: 14px;
    line-height: 1.25;
    color: #002a3a;
    font-weight: 800;
    text-align: start;
    font-family: "Helvetica Neue", Helvetica, "Outfit", Inter, system-ui,
        -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.wwd-card p {
    margin: 0;
    color: #002a3a;
    line-height: 1.3;
    font-size: 17px;
    font-weight: 500;
    text-align: start;
    font-family: "Helvetica Neue", Helvetica, "Outfit", Inter, system-ui,
        -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* gap between the first and second paragraph inside a card */
.wwd-card p + p {
    margin-top: 10px; /* tweak 8–14px until it matches your reference */
}

/* CTA under grid */

.wwd-cta {
    margin-top: 36px;
    text-align: center;
}

.wwd-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 18px;
}

/* responsive */

@media (max-width: 1024px) {
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WHAT WE DO – mobile tweaks */
@media (max-width: 768px) {
    .wwd-section .wwd-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 6px; /* reduce gap below heading */
    }

    .wwd-section .wwd-sub {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 0; /* remove extra top gap */
    }
}

/* ===== WHY CHOOSE ACCRIVO ===== */

.why-section {
    background: #e6fff9;
    /* section bg */
    padding: 72px 0 88px;
}

.why-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 900;
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #002a3a;
    /* heading color */
}

.why-sub {
    margin: 19px auto 36px;
    text-align: center;
    max-width: 1200px;
    font-size: 26px;
    line-height: 1.35;
    color: #000000;
    font-weight: 450;
}

.why-sub .under {
    /* text-decoration: underline; */
    text-underline-offset: 4px;
}

.why-sub .teal {
    color: var(--brand-teal);
    font-weight: 800;
}

/* grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}
.why-grid-one {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    font-weight: bolder;
    width: 80%;
    margin-left: 10%;
}
.why-card {
    background: #e6fff9;
    /* card bg */
    color: #002a3a;
    /* text color */
    border-radius: 16px;
    padding: 24px 26px 26px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #009282;
    /* subtle teal accent like screenshot */
}

.why-card h3 {
    margin: 6px 0 5px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #002a3a;
}

.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #002a3a;
    opacity: 0.9;
}

/* CTA under this section */

.why-cta {
    margin-top: 34px;
    text-align: center;
}

.why-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 18px;
}

/* responsive */

@media (max-width: 1024px) {
    .why-title {
        font-size: 48px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 56px 0 72px;
    }
    .why-title {
        font-size: 36px;
    }
    .why-sub {
        font-size: 18px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-grid-one {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        margin-left: -1%;
    }
    .why-card {
        padding: 20px 22px;
    }
    .why-cta .btn-lg {
        width: 100%;
        max-width: 520px;
    }
}

.why-title .teal {
    color: #009282;
}

.why-grid {
    align-items: stretch;
    /* stretch items to same row height */
    grid-auto-rows: 1fr;
    /* equal row heights */
}

.why-card {
    border-radius: 0 !important;
    /* no rounded corners */
    height: 90%;
    /* fill grid cell */
    display: flex;
    /* keep content aligned */
    flex-direction: column;
    text-align: start;
    justify-content: center;
}

/* ===== 8 THINGS ===== */

#eight-things {
    border-radius: 24px; /* a bit rounder, like your example */
    background: linear-gradient(to top, #e6fff9 0%, #ffffff 100%);
    box-shadow: inset 0 0 0 6px #e6fff9,
        /* very thin mint border */ inset 0 14px 40px rgba(230, 255, 249, 0.95),
        /* soft top inner glow */ inset 0 -14px 40px rgba(230, 255, 249, 0.95); /* soft bottom inner glow */
}

.things-section {
    background: #e6fff9;
    /* section background */
    padding: 56px 0 72px;
}

.things-wrap {
    /* background: #edfbff; */
    padding: 30px 26px 40px;
}

/* Title & subheading */

.things-title {
    margin: 23px 0 19px;
    text-align: center;
    font-weight: 900;
    font-size: 59px;
    line-height: 1.15;
    letter-spacing: -0.3px;
    color: #002a3a;
}

.things-title .teal {
    color: #009282;
}

/* 8 Things, Accrivo */

.things-sub {
    margin: 0 auto 26px;
    /* max-width: 1050px; */
    text-align: center;
    font-size: 27px;
    line-height: 1.4;
    color: #002a3a;
    font-weight: 550;
}

.things-sub .teal {
    color: #009282;
}

/* business */

/* Cards list */

.things-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 34px;
}

/* Individual card */

.thing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 27px 22px;
    width: 60%;
    display: grid;
    grid-template-columns: 92px 1.5px 1fr;
    align-items: center;
    gap: 20px;
    text-align: start;
    border: 10px solid #a8ddd6;
    min-height: 212px;
}

/* Icon block */

.thing-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #00928229;
    /* soft teal tile behind icon */
    box-shadow: inset 0 0 0 1px rgba(0, 146, 130, 0.1);
}

.thing-icon img {
    max-width: 64px;
    max-height: 64px;
    display: block;
}

/* Thin vertical divider */

.thing-divider {
    width: 1.5px;
    height: 75%;
    background: #009282;
    border-radius: 1px;
    margin-left: 30px;
}

/* Content */

.thing-content h3 {
    margin: 0 0 6px;
    color: #002a3a;
    /* heading color */
    font-weight: 800;
    font-size: 23px;
    line-height: 1.28;
    margin-left: 40px;
}

.thing-content p {
    margin: 0;
    color: #002a3a;
    /* text color */
    opacity: 0.9;
    font-size: 17px;
    line-height: 1.55;
    margin-left: 40px;
    font-weight: 500;
}

/* CTA area under the list (uses your existing button/social styles) */

.things-cta {
    margin-top: 50px;
    text-align: center;
}

.things-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 16px;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
    .things-title {
        font-size: 40px;
    }
    .thing-card {
        grid-template-columns: 80px 1.5px 1fr;
        padding: 18px;
    }
    .thing-icon {
        width: 80px;
        height: 80px;
    }
    .thing-icon img {
        max-width: 56px;
        max-height: 56px;
    }
}

@media (max-width: 640px) {
    .things-wrap {
        padding: 24px 16px 32px;
    }
    .things-title {
        font-size: 32px;
    }
    .things-sub {
        font-size: 18px;
    }
    .thing-card {
        grid-template-columns: 1fr;
        /* stack */
        text-align: left;
        gap: 14px;
    }
    .thing-icon {
        width: 72px;
        height: 72px;
        margin-right: auto;
        /* keep icon left */
    }
    .thing-divider {
        display: none;
    }
    /* hide vertical line on mobile */
    .thing-content h3 {
        font-size: 18px;
    }
    .thing-content p {
        font-size: 14px;
    }
}

/* ===== HOW IT WORKS ===== */

#how-it-works {
    background-color: #ffffff;
}

.hiw-section {
    color: #002a3a;
    padding: 72px 0 64px;
}

.hiw-title {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    font-size: 59px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.hiw-title .teal {
    color: #009282;
}

.hiw-sub {
    margin: 25px auto 36px;
    max-width: 1200px;
    text-align: center;
    font-size: 22px;
    line-height: 1.4;
}

.hiw-sub .teal {
    color: #009282;
    font-weight: 800;
}

/* layout – 3 cards on top row, 2 on bottom row (flex, centered) */
.hiw-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 0 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centers rows so 2nd row with 2 cards is centered */
    gap: 28px;
}

/* hide old vertical spine + arrows (HTML can stay) */
.hiw-spine {
    display: none !important;
}

.hiw-card .pointer {
    display: none !important;
}

/* cards */
.hiw-card {
    position: relative;
    width: 100%;
    margin: 0;
    background: #ffffff;
    border: 1.5px solid rgba(0, 146, 130, 0.4);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* 3 cards per row on desktop */
    flex: 0 0 32%;
    max-width: 360px;
}

/* remove left/right special layout from old timeline */
.hiw-card.left,
.hiw-card.right {
    margin: 0;
}

/* STEP header */
.hiw-card .hiw-head {
    background: #009282;
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    padding: 12px 18px;
    letter-spacing: 0.5px;
    border-radius: 18px 18px 0 0;
}

/* body */
.hiw-card .hiw-body {
    padding: 18px 18px 20px;
    flex: 1;
}

.hiw-card .hiw-body h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 900;
    color: #002a3a;
}

.hiw-card .hiw-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #002a3a;
}

.hiw-card .muted {
    color: #4b6879;
    font-weight: 500;
    font-size: 13px;
}

/* CTA beneath */
.hiw-cta {
    margin-top: 32px;
    text-align: center;
}

.hiw-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 16px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .hiw-title {
        font-size: 42px;
    }

    /* 2 cards per row on tablet, still centered */
    .hiw-wrap {
        gap: 20px;
    }

    .hiw-card {
        flex: 0 0 45%;
        max-width: 420px;
    }
}

/* Mobile – stack cards full-width */
@media (max-width: 640px) {
    #how-it-works {
        background-color: #ffffff;
    }

    .hiw-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hiw-title {
        font-size: 21px;
        line-height: 1.3;
        letter-spacing: 0;
        margin-bottom: 10px;
    }

    .hiw-sub {
        font-size: 13px;
        line-height: 1.5;
        margin: 12px auto 24px;
        padding: 0 8px;
    }

    .hiw-wrap {
        justify-content: center;
    }

    .hiw-card {
        flex: 0 0 100%;
        max-width: 520px;
        margin-inline: auto;
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .hiw-card .hiw-head {
        font-size: 14px;
        padding: 10px 16px;
        letter-spacing: 0.8px;
    }

    .hiw-card .hiw-body {
        padding: 12px 16px 14px;
    }

    .hiw-card .hiw-body h3 {
        font-size: 15px;
        margin: 0 0 6px;
    }

    .hiw-card .hiw-body p {
        font-size: 12px;
        line-height: 1.5;
    }

    .hiw-card .muted {
        font-size: 12px;
    }

    .hiw-cta .btn-lg {
        margin-top: 10px !important;
    }
}

/* ===== OTHER BOOKKEEPERS VS ACCRIVO ===== */

.vs-section {
    background: #e6fff9;
    color: #002a3a;
    padding: 64px 0 56px;
}

.vs-title {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.vs-title .teal {
    color: #009282;
}

.vs-sub {
    margin: 20px auto 30px;
    max-width: 950px;
    text-align: center;
    font-size: 29px;
    line-height: 1.4;
}

.vs-sub .teal {
    color: #009282;
    font-weight: 800;
}

/* grid wrapper */

.vs-table {
    position: relative;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 34px;
    padding: 18px 0 8px;
}

/* column heads */

.vs-col-head {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 12px;
    border-bottom: 2px dashed black;
    padding-bottom: 12px;
    text-align: start;
    width: ;
}

.vs-col-head.teal {
    color: #009282;
    text-transform: lowercase;
}

/* list */

.vs-list {
    list-style: none;
    margin: 0;
    padding: 0 0 18px;
    border-bottom: 2px dashed black;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    line-height: 1.55;
    margin: 16px 0;
    text-align: start;
}

.vs-list .ico {
    width: 26px;
    height: 26px;
    flex: 0 0 18px;
    margin-top: 2px;
}

/* vertical center dashed divider */

.vs-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed black;
    transform: translateX(-50%);
    pointer-events: none;
}

/* CTA */

.vs-cta {
    margin-top: 26px;
    text-align: center;
}

.vs-cta .btn-lg {
    display: inline-flex;
    margin: 0 auto 16px;
}

/* responsive */

@media (max-width: 1024px) {
    .vs-title {
        font-size: 42px;
    }
}

@media (max-width: 900px) {
    .vs-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .vs-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .vs-title {
        font-size: 34px;
    }
    .vs-sub {
        font-size: 18px;
    }
    .vs-list li {
        font-size: 16px;
    }
}

/* === VS cards like the screenshot (style-only change) === */

/* remove dashed borders & center divider */

.vs-list,
.vs-col-head {
    border: 0 !important;
}

.vs-divider {
    display: none !important;
}

/* card container look for both sides */

.vs-col {
    background: #f4fffb;
    /* soft mint card bg */
    border: 2px solid #cdebe5;
    /* base outline (overridden per side) */
    border-radius: 14px;
    padding: 22px 22px 16px;
    box-shadow: 0 10px 24px rgba(0, 146, 130, 0.1);
}

/* left = Competitor (red outline) */

.vs-col.left {
    background: #fffafa;
    /* very light red-tint */
    border-color: #ffbcbc;
    box-shadow: 0 10px 24px rgba(255, 90, 90, 0.12);
    width: 95%;
    margin-left: 20px;
}

/* right = Accrivo (teal outline) */

.vs-col.right {
    background: #f0fffb;
    /* very light teal-tint */
    border-color: #97dfd6;
    box-shadow: 0 10px 24px rgba(0, 146, 130, 0.14);
    width: 95%;
    margin-right: 30px;
}

.vs-col.right .vsconstruction {
    color: black;
    font-size: 20px;
    font-weight: 400;
    margin-top: 25px;
    text-transform: none;
}

/* headings */

.vs-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 35px;
    padding-bottom: 6px;
    margin-bottom: 8px;
    justify-content: center;
}

.vs-col.left .vs-col-head::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url("/images/othervsaccrivo/headingcross.png") no-repeat
        center/contain;
    flex: 0 0 28px;
}

/* right heading color + PNG icon */

.vs-col.right .vs-col-head {
    color: #009282;
    /* margin-top: -15px; */
    padding: 0;
}

.vs-col.right .vs-col-head::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url("/images/othervsaccrivo/headingright.png") no-repeat
        center/contain;
    flex: 0 0 28px;
}

/* list spacing */

.vs-list {
    padding: 0;
}

.vs-list li {
    margin: 14px 0;
    font-size: 19px;
    line-height: 1.55;
}

.vs-list .ico {
    width: 26px;
    height: 26px;
    margin-top: 2px;
    flex: 0 0 26px;
}

/* grid gap */

.vs-table {
    gap: 10px;
}

/* responsive */

@media (max-width: 900px) {
    .vs-col {
        padding: 18px;
    }
    .vs-col-head {
        font-size: 24px;
    }
}

/* ====================== TESTIMONIALS ============================ */

.swos-section {
    background: #fff;
    color: #002a3a;
    padding: 64px 0 40px;
}

.swos-title {
    margin: 12px 0 30px;
    text-align: center;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.swos-title .teal {
    color: #009282;
}

.swos-sub {
    margin: 0 auto 28px;
    text-align: center;
    font-size: 22px;
    line-height: 1.4;
}

.swos-sub .teal {
    color: #009282;
    font-weight: 800;
}

.swos-grid {
    display: grid;
    grid-template-columns: 0.6fr 0.45fr;
    gap: 36px;
    align-items: start;
    margin: 0 54px 0 38px;
}

.swos-left {
    padding-right: 8px;
    margin-top: 40px;
}

.swos-lead {
    margin: -14px 0 12px;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.25;
    text-align: start;
}

.swos-lead .teal {
    color: #009282;
}

.swos-copy {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.7;
    opacity: 0.95;
    text-align: start;
}
.swos-grid--reverse .swos-copy {
    text-align: right;
}

.swos-grid--reverse .swos-lead {
    text-align: left;
}

/* Review card */

.review-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    outline: 1.5px solid rgba(0, 146, 130, 0.2);
    padding: 18px 20px 20px;
    max-width: 640px;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-title {
    font-weight: 800;
    font-size: 16px;
}

.review-date {
    margin-left: 5px;
    font-size: 15px;
    color: #4b6879;
}

.review-stars .star {
    width: 18px;
    height: auto;
    display: inline-block;
    margin-right: 2px;
}

.review-text {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.55;
}

.review-more {
    color: #009282;
    text-decoration: none;
    font-weight: 600;
}
.testi-h3 {
    margin-top: 0px !important;
    font-size: 25px;
}

.swos-cta .btn-lg {
    display: inline-flex;
    margin: 9 auto 0px;
}

/* Right photo card with overlay and caption */

.swos-photo {
    max-width: 520px;
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    outline: 2px solid rgba(0, 146, 130, 0.22);
}

.swos-photo .human {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 7px solid #a8ddd6;
    border-radius: 18px;
}

.swos-photo .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.photo-cap {
    position: absolute;
    right: 14px;
    bottom: 14px;
    text-align: right;
    color: #000000;
}

.photo-cap .cap-name {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.1;
}

.photo-cap .cap-role {
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.95;
}

/* Utilities */

.hide-on-mobile-text {
    display: inline;
}

/* === CARD-STYLE TESTIMONIAL ROW ===================== */

.testi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.testi-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 146, 130, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testi-head {
    margin-bottom: 10px;
}

.testi-stars {
    display: inline-flex;
    gap: 4px;
}

.testi-stars .star {
    width: 16px;
    height: 16px;
}

.testi-snippet {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #002a3a;
    opacity: 0.95;

    /* clamp to ~3 lines like Trustpilot */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-more {
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    background: none;
    color: #009282;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.testi-more:hover {
    text-decoration: underline;
}

/* footer row */

.testi-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e6fff9;
}

.testi-avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #009282;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
    color: #002a3a;
}

.testi-role {
    font-size: 12px;
    color: #4b6879;
}

.testi-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #00b67a;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* responsive cards */

@media (max-width: 1024px) {
    .testi-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testi-row {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .testi-card {
        border-radius: 16px;
    }
}

/* === MODAL FOR READ MORE ==================================== */

.testi-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.testi-modal.is-open {
    display: block;
}

.testi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.testi-modal-dialog {
    position: relative;
    max-width: 640px;
    width: 92%;
    margin: 0 16px; /* no vertical margin */
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 22px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: calc(100vh - 40px); /* so it fits small screens */
    overflow-y: auto;
}

.testi-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #4b6879;
}

.testi-modal-stars {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 10px;
}

.testi-modal-stars .star {
    width: 18px;
    height: 18px;
}

.testi-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #002a3a;
}

.testi-modal-role {
    margin: 2px 0 16px;
    font-size: 13px;
    color: #4b6879;
}

.testi-modal-body p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #002a3a;
}

/* mobile modal tweaks */

@media (max-width: 640px) {
    .testi-modal-dialog {
        margin: 32px auto;
        padding: 18px 16px 20px;
        border-radius: 16px;
    }

    .testi-modal-title {
        font-size: 16px;
    }

    .testi-modal-body p {
        font-size: 14px;
    }
}

/* ---------- Responsive (original grid) ---------- */

@media (max-width: 1024px) {
    .swos-title {
        font-size: 42px;
    }
    .swos-grid {
        grid-template-columns: 1fr;
    }
    .swos-photo {
        order: -1;
    }
    /* photo first on smaller screens */
}

@media (max-width: 640px) {
    .swos-title {
        font-size: 30px;
    }
    .swos-sub {
        font-size: 18px;
    }
    .hide-on-mobile-text {
        display: none;
    }
    .review-card {
        border-radius: 12px;
    }
}

/* ===== review arrow + tighter card spacing (non-breaking) ===== */

.review-wrap {
    text-align: left;
    position: relative;
    margin-top: 77px;
    right: -268px;
    z-index: 999;
}

.review-arrow {
    position: absolute;
    left: -173px;
    /* sits outside the card on the left */
    bottom: 82px;
    /* points toward the card */
    width: 150px;
    /* scales well for desktop */
    max-width: 28vw;
    pointer-events: none;
    user-select: none;
    transform: rotate(0.5deg);
    /* tiny natural tilt */
    opacity: 0.95;
}

/* only tighten padding and width for this one review instance */

.review-card--tight {
    padding: 16px 18px 18px !important;
    /* slightly tighter like reference */
    max-width: 500px !important;
    border-radius: 14px;
    /* matches your base */
    border-bottom: 3px solid rgba(0, 146, 130, 0.2);
    background: #e6fff9; /* new bg */
}

/* ===== centered social proof row ===== */

.trusted-center {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.trusted-center .avatars {
    display: inline-flex;
    align-items: center;
}

.trusted-center .avatars img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 999px;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    margin-left: -10px;
}

.trusted-center .avatars img:first-child {
    margin-left: 0;
}

.trusted-center .stars .star {
    width: 18px;
    height: auto;
    display: inline-block;
    margin: 0 1px;
}

.trusted-center .trusted-copy {
    font-weight: 700;
    color: #2a3a46;
}

/* responsive tweaks */

@media (max-width: 900px) {
    .review-arrow {
        left: -36px;
        bottom: -28px;
        width: 130px;
    }
}

@media (max-width: 640px) {
    .review-arrow {
        left: -22px;
        bottom: -20px;
        width: 110px;
    }
    .trusted-center .avatars img {
        width: 38px;
        height: 38px;
    }
}

/* ===== Mirror layout (keeps your original intact) ===== */

.swos-grid--reverse {
    grid-template-columns: 0.46fr 0.6fr;
    /* swap visual weight */
    gap: 36px;
    align-items: start;
    margin: 0 60px 0 30px;
    /* same container feel as original */
}

/* swap order: photo left, text right */

.swos-grid--reverse .swos-photo {
    order: 1;
    justify-self: start;
}

.swos-grid--reverse .swos-left {
    order: 2;
    padding-left: 8px;
    padding-right: 0;
}

/* mirrored review wrap: pull to the LEFT instead of the right */

.review-wrap--rev {
    right: auto;
    left: -208px;
    top: -8px;
    /* mirror of your -224px right */
}

/* arrow flips to point inward from the right side of the card */

.review-wrap--rev .review-arrow {
    left: auto;
    right: -120px;
    /* mirror of your -173px left */
    bottom: 42px;
    /* same vertical */
    transform: scaleX(-1) rotate(-0.5deg);
    /* perfect mirror + tiny tilt */
}

/* Mirrored testimonial: place caption on the LEFT of the image */

.swos-grid--reverse .photo-cap {
    right: auto;
    left: 14px;
    text-align: left;
}

/* responsive: stack but keep photo first like your original */

@media (max-width: 1024px) {
    .swos-grid--reverse {
        grid-template-columns: 1fr;
    }
    .swos-grid--reverse .swos-photo {
        order: -1;
    }
    /* photo first on smaller screens */
}

/* arrow position on small screens, matching your existing tweaks */

@media (max-width: 900px) {
    .review-wrap--rev .review-arrow {
        right: -36px;
        bottom: -28px;
        width: 130px;
    }
}

@media (max-width: 640px) {
    .review-wrap--rev .review-arrow {
        right: -22px;
        bottom: -20px;
        width: 110px;
    }
}

/* ===== NO EMPTY PROMISES ===== */

.nep-section {
    background: #e6fff9;
    padding: 64px 0 56px;
    color: #00281e;
}

.nep-title {
    margin: 0 0 18px;
    text-align: center;
    font-weight: 900;
    font-size: 57px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.nep-title .dark {
    color: #00281e;
}

.nep-title .teal {
    color: #009282;
}

/* subtle pop vs base teal */

.nep-card {
    background: #ffffff;
    border-radius: 16px;
    border: 6px solid #bdede5;
    /* soft teal frame like the screenshot */
    box-shadow: 0 10px 24px rgba(0, 146, 130, 0.12);
    padding: 51px 22px 55px;
    max-width: 980px;
    margin: 16px auto 0;
}

.nep-lead {
    max-width: 860px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 20px;
    line-height: 1.55;
    color: #0b2b3a;
}

.nep-lead em {
    font-style: italic;
}

.nep-lead strong {
    font-weight: 800;
}

.nep-badge {
    display: flex;
    justify-content: center;
    margin: 18px 0 10px;
}

.nep-badge img {
    width: min(360px, 65vw);
    height: auto;
    display: block;
}

.nep-closer {
    margin-top: 10px;
    text-align: center;
    display: grid;
    gap: 8px;
}

.nep-closer .grad-line {
    font-weight: 1000;
    font-size: 24px;
    letter-spacing: 0.5px;
    /* left->right gradient text: #00281E to #00C9AC */
    background: linear-gradient(90deg, #00281e 18%, #00c9ac 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* responsive */

@media (max-width: 900px) {
    .nep-title {
        font-size: 42px;
    }
}

/* below-image text block */

.nep-points {
    margin: 16px auto 6px;
    text-align: center;
    max-width: 820px;
}

.nep-points p {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.55;
    color: #0b2b3a;
}

.nep-points .nep-em {
    color: #009282;
    /* brand teal highlight */
    font-weight: 800;
}

/* “Because…” line */

.nep-claim {
    max-width: 920px;
    margin: 12px auto 20px;
    padding: 10px 14px;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: #0b2b3a;
}

.nep-claim span {
    color: #009282;
    /* brand teal emphasis */
    font-weight: 800;
}

/* Intro paragraph under the “No Empty Promises” heading */

.nep-intro {
    max-width: 980px;
    margin: 23px auto 33px;
    text-align: center;
    font-size: 27px;
    line-height: 1.55;
    color: black;
    /* dark navy like screenshot */
}

.nep-intro .em-teal {
    color: #009282;
    /* brand teal emphasis */
    font-weight: 800;
}

/* optional: tighten slightly on small screens */

@media (max-width: 640px) {
    .nep-intro {
        font-size: 18px;
    }
}

.nep-card .nep-lead .em-teal {
    color: #009282;
}

/* =============================== FAQ STYLES ============================= */

.faq-section {
    /* background: #e6fff9;  */
    background: white;
    color: #002a3a;
    padding: 64px 0 40px;
}

.faq-title {
    margin: 0 0 6px;
    text-align: center;
    font-weight: 900;
    font-size: 61px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.faq-title .teal {
    color: #009282;
}

.faq-sub {
    margin: 23px auto 35px;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    color: black;
}

.faq-sub .teal {
    color: #009282;
    font-weight: 800;
}

/* List / item */

.faq-list {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Collapsed item */

.faq-item {
    background: #fff;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

/* Expanded state */

.faq-item.is-open {
    background: #cffbf1;
    /* expanded bg */
    border-color: #009282;
    /* expanded border */
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Head button */

.faq-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.35;
    color: #002a3a;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
}

.q-num {
    font-weight: 900;
    font-size: 30px;
}

/* Icon circle */

.faq-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    /* rounded-squircle vibe */
    display: grid;
    place-items: center;
    background: #009282;
    /* collapsed state bg */
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 146, 130, 0.25);
}

.faq-icon img {
    display: block;
    width: 19px;
    height: 12px;
}

/* When expanded -> white icon background */

.faq-item.is-open .faq-icon {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Body */

.faq-body {
    display: none;
    padding: 0 20px 18px 20px;
    font-size: 22px;
    line-height: 1.65;
    text-align: start;
    margin-left: 22px;
    margin-top: -30px !important;
    margin-right: 50px;
}

.faq-item.is-open .faq-body {
    display: block;
}

/* Responsive */

@media (max-width: 1024px) {
    .faq-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .faq-title {
        font-size: 34px;
    }
    .faq-sub {
        font-size: 18px;
    }
    .faq-head {
        font-size: 20px;
        padding: 16px;
    }
    .faq-body {
        padding: 0 16px 16px;
    }
}

/* ========================= SERVICES LIST =========================== */

.services-section {
    background: #e6fff9;
    padding: 54px 0 54px;
}

.services-title {
    margin: 0 0 6px;
    text-align: center;
    font-weight: 950;
    font-size: 61px;
    line-height: 1.15;
    letter-spacing: -0.3px;
    color: #002a3a;
}

.services-title .teal {
    color: #009282;
}

.services-sub {
    margin: 20px auto 24px;
    text-align: center;
    font-size: 30px;
    line-height: 1.37;
    color: #000000;
    font-weight: 450;
}

.services-sub .teal {
    color: #009282;
    font-weight: 800;
}

.service-list {
    max-width: 680px;
    margin: 0 auto 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    /* light mint */
    border: 2px solid #0092824d;
    /* soft border */
    border-radius: 12px;
    padding: 12px 16px;
    width: 93%;
    height: 94px;
}

.svc-icon {
    width: 46px;
    height: 42px;
    /* as in screenshot note */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #009282;
    border: 2px solid #009282;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 146, 130, 0.25) inset,
        0 4px 10px rgba(0, 146, 130, 0.18);
    overflow: hidden;
}

.svc-icon img {
    width: 26px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.svc-text {
    font-weight: 800;
    color: #062335;
    font-size: 16px;
    line-height: 1.25;
}

.svc-text small {
    font-weight: 600;
    font-size: 12px;
    opacity: 0.8;
    margin-left: 6px;
}

/* responsive */

/* ===== LEAD FORM ===== */
/* Lead form pill options – stack in a column */
.lead-form .pill-list {
    display: flex;
    flex-direction: column; /* 🔥 one below another */
    align-items: flex-start; /* left aligned text */
    gap: 10px; /* space between options */
}
.lead-form .pill-other {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* ---- Lead form validation styles ---- */
.lf-error input,
.lf-error textarea {
    border-color: #e11d48 !important;
    box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.25);
}

.lf-error .pill span {
    box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.5);
}

.lf-error-msg {
    margin-top: 4px;
    font-size: 12px;
    color: #e11d48;
}

.lf-block.lf-group-error {
    border-radius: 8px;
    padding-bottom: 4px;
}

.lf-block.lf-group-error .lf-question {
    color: #e11d48;
}

.lead-form-section {
    background: #e6fff9;
    padding: 56px 0 68px;
}

.lead-form-title {
    margin: 0 0 8px;
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #002a3a;
}

.lead-form-title .teal {
    color: #009282;
}

.lead-form-sub {
    margin: 30px auto 40px;
    text-align: center;
    font-size: 26px;
    color: #000000;
}

.lead-form-sub .teal {
    color: #009282;
    font-weight: 800;
}

.lead-form {
    background: #ffffff;
    border: 7px solid #0092824d;
    border-radius: 18px;
    padding: 22px 22px 26px;
    max-width: 954px;
    margin: 0 auto;
    /* box-shadow: inset 0 14px 28px 0 #0092825c,
         inset 0 0 0 1px #0092825c;  */
}

.lf-grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.lf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.lf-label {
    font-weight: 500;
    font-size: 18px;
    color: #002a3a;
}

.req {
    color: #ff2b2b;
    margin-left: 4px;
}

.lf-field input {
    height: 38px;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 5px;
    padding: 0 12px;
    font-size: 14px;
    outline: 0;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lf-field input:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

.lf-block {
    margin: 14px 0;
    text-align: left;
}

.lf-question {
    font-weight: 500;
    color: #002a3a;
    margin-bottom: 10px;
    font-size: 20px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    /* border: 1.5px solid #009282; */
    border-radius: 9px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: 0.15s;
}

.pill input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.pill span {
    font-size: 16px;
    font-weight: 500;
    color: #002a3a;
}

.pill:hover {
    box-shadow: 0 4px 12px rgba(0, 146, 130, 0.16);
}

.pill input:checked + span {
    color: #fff;
}

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span,
.pill input:checked + span {
    color: #fff;
}

.pill input:checked ~ span::after {
}

.pill input:checked ~ *,
.pill input:checked + span {
}

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

/* fill background when checked */

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

/* simpler: change parent */

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

/* “Other” text box */

.pill-other {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.pill-other-input {
    flex: 1 1 360px;
    height: 38px;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}

.pill-other-input:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

/* Radio groups reuse the same pill look */

.pill-list--radio .pill {
}

/* Textarea */

.lf-textarea {
    width: 100%;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    resize: vertical;
}

.lf-textarea:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

.lf-actions {
    text-align: center;
    margin-top: 14px;
}
.lf-actions .btn-lg {
    height: 50%;
    width: 23%;
    font-size: 20px;
    border-radius: 7px;
    padding: 17px;
    background-color: #009282;
}

/* Responsive */

@media (max-width: 800px) {
    .lead-form-title {
        font-size: 34px;
    }
    .lf-grid.two {
        grid-template-columns: 1fr;
    }
}

/* White divider between lead form and footer */

.lead-footer-divider {
    height: 70px;
    width: 100%;
    background: #ffffff;
}

/* optional: subtle top shadow so it “lifts” off the footer */

.lead-footer-divider {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

/* ===== Rectangular (checkbox) tiles ===== */

/* applies to all multi-select groups that use .pill-list (no .pill-list--radio) */

.pill-list:not(.pill-list--radio) .pill {
    /* border: 1.5px solid #009282; */
    border-radius: 10px;
    background: #fff url("/images/lead-form/choose-rectangle.png") no-repeat
        left 10px center;
    background-size: 18px;
    padding-left: 36px;
    /* room for icon */
}

/* checked state -> green + white text + checkmark on the right */

.pill-list:not(.pill-list--radio) .pill:has(input:checked) {
    /* background-color: #009282; */
    /* border-color: #009282; */
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list .pill:has(input:checked) span {
    color: #fff;
}

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/images/lead-form/correct-mark.png") no-repeat
        center/contain;
}

/* ===== Round (radio) tiles ===== */

.pill-list.pill-list--radio .pill {
    /* border: 1.5px solid #009282; */
    border-radius: 999px;
    background: #fff url("/images/lead-form/round-choose.png") no-repeat left
        12px center;
    background-size: 18px;
    padding-left: 44px;
    /* room for round icon */
}

.pill-list.pill-list--radio .pill:has(input:checked) {
    background-color: #009282;
    border-color: #009282;
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list.pill-list--radio .pill:has(input:checked) span {
    color: #fff;
}

/* Show/Hide the 'Please Specify' input for Others (hidden by default) */

.pill-other-input[hidden] {
    display: none !important;
}

/* --- FIX: checkbox/rectangle tiles: left icon + in-tile tick --- */

.pill-list:not(.pill-list--radio) .pill {
    position: relative;
    /* border: 1.5px solid #009282; */
    border-radius: 10px;
    background: #fff;
    /* no bg image on the label */
    padding-left: 48px;
    /* room for the left icon */
}

/* left icon box */

.pill-list:not(.pill-list--radio) .pill::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("/images/lead-form/choose-rectangle.png") no-repeat
        center/contain;
    pointer-events: none;
}

/* selected state */

.pill-list:not(.pill-list--radio) .pill:has(input:checked) {
    background-color: #009282;
    /* border-color: #009282; */
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list .pill:has(input:checked) span {
    color: #fff;
}

/* when selected, swap the left icon to the tick */

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::before {
    background-image: url("/images/lead-form/correct-mark.png");
}

/* (remove any right-side checkmark if you added one earlier) */

.pill-list:not(.pill-list--radio) .pill::after {
    content: none !important;
}

/* --- FIX: radio/round tiles keep round icon on the left --- */

.pill-list.pill-list--radio .pill {
    position: relative;
    /* border: 1.5px solid #009282; */
    border-radius: 999px;
    background: #fff;
    padding-left: 52px;
    /* room for round icon */
}

.pill-list.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/images/lead-form/round-choose.png") no-repeat
        center/contain;
    pointer-events: none;
}

.pill-list.pill-list--radio .pill:has(input:checked) {
    background-color: #009282;
    border-color: #009282;
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list.pill-list--radio .pill:has(input:checked) span {
    color: #fff;
}

/* --- Keep “Please Specify” box white, never tinted --- */

.pill-other-input {
    background: #fff !important;
}

.pill-other .pill:has(input:checked) + .pill-other-input {
    background: #fff !important;
}

/* --- stop tinting the whole chip when selected --- */

.pill-list .pill:has(input:checked) {
    background: #fff !important;
    /* keep label white */
    color: inherit !important;
    box-shadow: none !important;
}

.pill-list .pill:has(input:checked) span {
    color: #002a3a !important;
    /* keep text color */
}

/* --- RECTANGLE (checkbox) — show a small square that turns green --- */

.pill-list:not(.pill-list--radio) .pill {
    position: relative;
    padding-left: 48px;
    /* space for the small box */
}

.pill-list:not(.pill-list--radio) .pill::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid #009282;
    background: #fff url("/images/lead-form/choose-rectangle.png") center/18px
        18px no-repeat;
    pointer-events: none;
}

/* only the little box flips to green + tick */

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::before {
    background: #009282 url("/images/lead-form/correct-mark.png") center/18px
        18px no-repeat;
    border-color: #009282;
}

/* --- ROUND (radio) — show a small circle that turns green --- */

.pill-list.pill-list--radio .pill {
    position: relative;
    padding-left: 52px;
    /* space for the round dot */
    border-radius: 999px;
}

.pill-list.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1.5px solid #009282;
    background: #fff url("/images/lead-form/round-choose.png") center/16px 16px
        no-repeat;
    pointer-events: none;
}

.pill-list.pill-list--radio .pill:has(input:checked)::before {
    background: #009282 url("/images/lead-form/round-choose.png") center/16px
        16px no-repeat;
    border-color: #009282;
}

/* --- “Others” text box must always stay white --- */

.pill-other-input {
    background: #fff !important;
}

.pill-other .pill:has(input:checked) + .pill-other-input {
    background: #fff !important;
}

/* --- remove green focus glow on inputs --- */

.lf-field input:focus,
.lf-textarea:focus {
    border-color: rgba(0, 146, 130, 0.35);
    box-shadow: none;
    /* no tinted focus ring */
    outline: none;
}

/* ---------- OPTION TILES: icon-only highlight (no green on label text) ---------- */

/* Base tile – leave label white, create our own icon box on the left */

.pill {
    position: relative;
    padding-left: 48px;
    /* room for the icon */
    background: #fff !important;
    /* never tint the whole tile */
    border: none;
    /* we draw icon outline instead */
}

/* Default rectangle (checkbox) icon box */

.pill:not(.pill-list--radio .pill)::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #fff url("/images/lead-form/choose-rectangle.png")
        center/contain no-repeat;
    box-shadow: inset 0 0 0 1.5px #009282;
    /* teal outline */
    pointer-events: none;
}

/* Checked rectangle: icon turns green + tick centered */

.pill:has(input[type="checkbox"]:checked)::before {
    background: #009282;
    /* green square */
    box-shadow: none;
}

.pill:has(input[type="checkbox"]:checked)::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("/images/lead-form/correct-mark.png") center/16px 16px
        no-repeat;
    pointer-events: none;
}

/* Radio (round) icon box */

.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff url("/images/lead-form/round-choose.png") center/contain
        no-repeat;
    box-shadow: inset 0 0 0 1.5px #009282;
    pointer-events: none;
    align-items: center;
}

/* Radio checked: bigger green ring, smaller white center */

.pill-list--radio .pill:has(input[type="radio"]:checked)::before {
    background: #009282;
    box-shadow: none;
    /* solid green disc */
}

.pill-list--radio .pill:has(input[type="radio"]:checked)::after {
    content: "";
    /* white inner dot */
    position: absolute;
    left: 21px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* smaller → thicker green ring */
    background: #fff;
    pointer-events: none;
}

/* Keep label text color unchanged when selected */

.pill:has(input:checked) span {
    color: #002a3a !important;
}

/* Remove the green glow when typing into inputs */

.lf-field input:focus,
.lf-textarea:focus {
    box-shadow: none !important;
}

/* “Please Specify” field should always stay white */

.pill-other-input {
    background: #fff !important;
}
/* ==== Multi-step lead form ==== */

.lead-step {
    display: none;
}

.lead-step.is-active {
    display: block;
}

/* Footer inside each step (Next / Back buttons) */
.lf-step-footer {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Final step: keep buttons together, rest of block centered as before */
.lf-step-footer--final {
    margin-bottom: 18px;
}

/* Step buttons */
.step-btn {
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #009282;
    background: #ffffff;
    color: #009282;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
        transform 0.12s ease;
    width: 15%;
}

.step-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 146, 130, 0.18);
    transform: translateY(-1px);
}

/* Primary (Next) */
.step-next {
    background: #009282;
    color: #ffffff;
}

/* Back button stays white */
.step-back {
    background: #ffffff;
    color: #009282;
}
.lf-actions .step-next {
    width: auto;
    min-width: 120px;
    height: 30px;
}
/* ===== Phone field with fixed US code (+1) ===== */
.phone-wrap {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 146, 130, 0.35);
    background: #ffffff;
    overflow: hidden;
}

.phone-code {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0b2630;
    background: #f5f7f8;
    border-right: 1px solid rgba(0, 146, 130, 0.35);
    white-space: nowrap;
}

.phone-wrap input[type="tel"] {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
    background: transparent;
}

/*====================== mobile-view =======================*/
/* === GLOBAL MOBILE VERTICAL SPACING TWEAK === */
@media (max-width: 640px) {
    /* 1) Sections: less top + bottom padding */
    .hero,
    .video-section,
    .wwd-section,
    .why-section,
    .things-section,
    .hiw-section,
    .vs-section,
    .swos-section,
    .services-section,
    .lead-form-section,
    .nep-section,
    .faq-section {
        padding-top: 32px;
        padding-bottom: 34px;
    }

    /* 2) Inner white panels/cards: reduce padding so
          text + button sit closer to the border */
    .wwd-card,
    .why-card,
    .things-wrap,
    .thing-card,
    .service-item,
    .review-card,
    .nep-card,
    .faq-item,
    .lead-form {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    /* 3) Titles: kill extra top margin on mobile */
    .wwd-title,
    .why-title,
    .things-title,
    .hiw-title,
    .vs-title,
    .swos-title,
    .services-title,
    .lead-form-title,
    .nep-title,
    .faq-title {
        margin-top: 0;
    }

    /* 4) Subtitles: a bit less bottom gap */
    .wwd-sub,
    .why-sub,
    .things-sub,
    .hiw-sub,
    .vs-sub,
    .swos-sub,
    .services-sub,
    .lead-form-sub,
    .nep-intro,
    .faq-sub {
        margin-bottom: 18px;
    }
}

@media (max-width: 900px) {
    /* pull grid in a bit */
    .swos-grid,
    .swos-grid--reverse {
        margin: 0 16px;
    }

    /* stop absolute shifting that causes overflow */
    .review-wrap,
    .review-wrap--rev {
        position: static;
        right: auto;
        left: auto;
        margin-top: 24px;
    }

    /* hide the big curved arrow on small widths */
    .review-arrow {
        display: none;
    }
}

/* === MOBILE BUTTON SIZE (like screenshot) === */
@media (max-width: 640px) {
    .btn-lg {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
        padding: 8px 18px; /* less height */
        font-size: 12px; /* smaller text */
        line-height: 1.2;
        letter-spacing: 0.08rem;
        border-width: 2px;
    }

    /* hero main CTA – pill size exactly like uploaded image */
    .hero .btn-lg {
        width: auto; /* not full width, like design */
        max-width: none;
        padding: 4px 9px;
    }

    .hero .btn-sub {
        font-size: 10px; /* small subtitle line */
    }
}
/* === FINAL UNIVERSAL MOBILE BUTTON SIZE (ALL SECTIONS) === */
@media (max-width: 640px) {
    /* default mobile style for every .btn-lg */
    .btn-lg {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto !important;
        max-width: none !important;
        margin: 16px auto 0 !important;
        padding: 8px 24px;
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0.08rem;
        border-width: 2px;
    }

    /* make sure section CTAs don't stretch full width */
    .video-cta .btn-lg,
    .wwd-cta .btn-lg,
    .why-cta .btn-lg,
    .things-cta .btn-lg,
    .hiw-cta .btn-lg,
    .vs-cta .btn-lg,
    .swos-cta .btn-lg,
    .services-section .btn-lg,
    .lead-form .btn-lg,
    .nep-section .btn-lg,
    .faq-section .btn-lg,
    .lf-actions .btn-lg {
        width: auto !important;
        max-width: none !important;
    }
}
@media (max-width: 640px) {
    .yt-card {
        width: 100%;
        max-width: 100%;
        border-width: 6px;
        border-radius: 22px;
        /* aspect-ratio still works on mobile, no height needed */
    }

    .yt-card .play img {
        width: 64px;
    }
}

/* === MOBILE ONLY: OTHER BOOKKEEPERS VS FinTruction === */
@media (max-width: 640px) {
    .vs-section {
        background: #e6fff9;
        color: #002a3a;
        padding: 40px 0;
    }

    .vs-title {
        margin: 0 0 6px;
        text-align: center;
        font-weight: 900;
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }

    .vs-title .teal {
        color: #009282;
    }

    .vs-sub {
        margin: 0px auto 13px;
        max-width: 360px;
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        padding: 0 12px;
    }

    /* table wrapper: stack cards in one column */
    .vs-table {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 8px 0 0;
    }

    .vs-divider {
        display: none;
    }

    /* card look (white card with shadow) */
    .vs-col {
        background: #ffffff;
        border-radius: 18px;
        padding: 18px 16px 16px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
        text-align: left;
    }

    /* left = Competitor (red outline / shadow) */
    .vs-col.left {
        border: 1.5px solid #f9b7bc;
        box-shadow: 0 18px 36px rgba(255, 84, 112, 0.18);
    }

    /* right = FinTruction (teal outline / shadow) */
    .vs-col.right {
        border: 1.5px solid #8fd9cd;
        box-shadow: 0 18px 36px rgba(0, 146, 130, 0.18);
    }

    /* headings inside each card */
    .vs-col-head {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 900;
        font-size: 16px;
        margin: 2px 0 8px;
        padding: 0;
        border: 0;
    }

    .vs-col.left .vs-col-head {
        color: #ff3f5f;
    }

    .vs-col.left .vs-col-head::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        background: url("/images/othervsaccrivo/headingcross.png") no-repeat
            center/contain;
        flex: 0 0 22px;
    }

    .vs-col.right .vs-col-head {
        color: #009282;
    }

    .vs-col.right .vs-col-head::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        background: url("/images/othervsaccrivo/headingright.png") no-repeat
            center/contain;
        flex: 0 0 22px;
    }

    /* list + bullets */
    .vs-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .vs-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        line-height: 1.55;
        margin: 9px 0;
    }

    .vs-list .ico {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        margin-top: 3px;
    }

    /* CTA under cards */
    .vs-cta {
        margin-top: 26px;
        text-align: center;
    }

    .vs-cta .btn-lg {
        display: inline-flex;
        margin: 0 auto 16px;
    }
}

/* ============== Base ============== */

/* ====================== TESTIMONIALS ============================ */

.swos-section {
    background: #fff;
    color: #002a3a;
    padding: 64px 0 40px;
}

.swos-title {
    margin: 12px 0 30px;
    text-align: center;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.swos-title .teal {
    color: #009282;
}

.swos-sub {
    margin: 0 auto 28px;
    text-align: center;
    font-size: 22px;
    line-height: 1.4;
}

.swos-sub .teal {
    color: #009282;
    font-weight: 800;
}

.swos-grid {
    display: grid;
    grid-template-columns: 0.7fr 0.5fr;
    gap: 36px;
    align-items: start;
    margin: 0 54px 0 38px;
}

.swos-left {
    padding-right: 8px;
    margin-top: 40px;
}

.swos-lead {
    margin: -14px 0 12px;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.25;
    text-align: start;
}

.swos-lead .teal {
    color: #009282;
}

.swos-copy {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.7;
    opacity: 0.95;
    text-align: start;
}
.swos-grid--reverse .swos-copy {
    text-align: right;
}

.swos-grid--reverse .swos-lead {
    text-align: left;
}

/* Review card */

.review-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    outline: 1.5px solid rgba(0, 146, 130, 0.2);
    padding: 18px 20px 20px;
    max-width: 640px;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-title {
    font-weight: 800;
    font-size: 18px;
}

.review-date {
    margin-left: 5px;
    font-size: 15px;
    color: #4b6879;
}

.review-stars .star {
    width: 18px;
    height: auto;
    display: inline-block;
    margin-right: 2px;
}

.review-text {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.55;
}

.review-more {
    color: #009282;
    text-decoration: none;
    font-weight: 600;
}

.swos-cta .btn-lg {
    display: inline-flex;
    margin: 9 auto 0px;
}

/* Right photo card with overlay and caption */

.swos-photo {
    max-width: 520px;
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    outline: 2px solid rgba(0, 146, 130, 0.22);
}

.swos-photo .human {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 7px solid #a8ddd6;
    border-radius: 18px;
}

.swos-photo .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.photo-cap {
    position: absolute;
    right: 14px;
    bottom: 14px;
    text-align: right;
    color: #000000;
}

.photo-cap .cap-name {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.1;
}

.photo-cap .cap-role {
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.95;
}

/* Utilities */

.hide-on-mobile-text {
    display: inline;
}
/* Bulleted "What We Delivered" list inside testimonials */
.swos-delivered {
    margin-top: 12px;
}

.swos-delivered-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
}

.swos-delivered-list {
    margin: 0 0 4px 1.2rem;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
}

.swos-delivered-list li + li {
    margin-top: 4px;
}

/* Image used in place of the review card */
.review-image {
    display: block;
    max-width: 500px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    outline: 1.5px solid rgba(0, 146, 130, 0.2);
    border-bottom: 3px solid rgba(0, 146, 130, 0.2);
}
/* === Testimonial modal must sit above nav === */
.testi-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none; /* default hidden */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
}

.testi-modal.is-open {
    display: flex; /* flex container when visible */
}

/* backdrop covers entire screen */
.testi-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* dialog sits above backdrop */
.testi-modal-dialog {
    position: relative;
    z-index: 1;
}

/* keep mobile proportion similar to .review-card--tight */
@media (max-width: 640px) {
    .review-image {
        width: 80%;
        max-width: 80%;
        /* you can add margin: 0 auto; if you want it centered */
    }
}

/* ---------- Responsive (original grid) ---------- */

@media (max-width: 1024px) {
    .swos-title {
        font-size: 42px;
    }
    .swos-grid {
        grid-template-columns: 1fr;
    }
    .swos-photo {
        order: -1;
    }
    /* photo first on smaller screens */
}

@media (max-width: 640px) {
    .swos-title {
        font-size: 30px;
    }
    .swos-sub {
        font-size: 18px;
    }
    .hide-on-mobile-text {
        display: none;
    }
    .review-card {
        border-radius: 12px;
    }
}

/* ===== review arrow + tighter card spacing (non-breaking) ===== */

.review-wrap {
    text-align: left;
    position: relative;
    margin-top: 77px;
    right: -268px;
    z-index: 999;
}

.review-arrow {
    position: absolute;
    left: -173px;
    /* sits outside the card on the left */
    bottom: 82px;
    /* points toward the card */
    width: 150px;
    /* scales well for desktop */
    max-width: 28vw;
    pointer-events: none;
    user-select: none;
    transform: rotate(0.5deg);
    /* tiny natural tilt */
    opacity: 0.95;
}

/* only tighten padding and width for this one review instance */

.review-card--tight {
    padding: 16px 18px 18px !important;
    /* slightly tighter like reference */
    max-width: 500px !important;
    border-radius: 14px;
    /* matches your base */
    border-bottom: 3px solid rgba(0, 146, 130, 0.2);
    background: #e6fff9; /* new bg */
}

/* ===== centered social proof row ===== */

.trusted-center {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.trusted-center .avatars {
    display: inline-flex;
    align-items: center;
}

.trusted-center .avatars img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 999px;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    margin-left: -10px;
}

.trusted-center .avatars img:first-child {
    margin-left: 0;
}

.trusted-center .stars .star {
    width: 18px;
    height: auto;
    display: inline-block;
    margin: 0 1px;
}

.trusted-center .trusted-copy {
    font-weight: 700;
    color: #2a3a46;
}

/* responsive tweaks */

.swos-points {
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.swos-pill {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    /* border: 1px solid rgba(0, 61, 89, 0.18); */
    /* background: #f1feff; light aqua like your badge */
    font-size: 17px; /* same as .swos-copy */
    line-height: 1.5;
}

.swos-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #009282; /* your teal */
    margin-right: 10px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .swos-pill {
        font-size: 11px; /* match mobile copy size */
        padding: 8px 14px;
    }
}

@media (max-width: 900px) {
    .review-arrow {
        left: -36px;
        bottom: -28px;
        width: 130px;
    }
}

@media (max-width: 640px) {
    .review-arrow {
        left: -22px;
        bottom: -20px;
        width: 110px;
    }
    .trusted-center .avatars img {
        width: 38px;
        height: 38px;
    }
}

/* ===== Mirror layout (keeps your original intact) ===== */

.swos-grid--reverse {
    grid-template-columns: 0.5fr 0.7fr;
    /* swap visual weight */
    gap: 36px;
    align-items: start;
    margin: 0 60px 0 30px;
    /* same container feel as original */
}

/* swap order: photo left, text right */

.swos-grid--reverse .swos-photo {
    order: 1;
    justify-self: start;
}

.swos-grid--reverse .swos-left {
    order: 2;
    padding-left: 8px;
    padding-right: 0;
}

/* mirrored review wrap: pull to the LEFT instead of the right */

.review-wrap--rev {
    right: auto;
    left: -208px;
    top: -8px;
    /* mirror of your -224px right */
}

/* arrow flips to point inward from the right side of the card */

.review-wrap--rev .review-arrow {
    left: auto;
    right: -120px;
    /* mirror of your -173px left */
    bottom: 42px;
    /* same vertical */
    transform: scaleX(-1) rotate(-0.5deg);
    /* perfect mirror + tiny tilt */
}

/* Mirrored testimonial: place caption on the LEFT of the image */

.swos-grid--reverse .photo-cap {
    right: auto;
    left: 14px;
    text-align: left;
}

/* responsive: stack but keep photo first like your original */

@media (max-width: 1024px) {
    .swos-grid--reverse {
        grid-template-columns: 1fr;
    }
    .swos-grid--reverse .swos-photo {
        order: -1;
    }
    /* photo first on smaller screens */
}

/* arrow position on small screens, matching your existing tweaks */

@media (max-width: 900px) {
    .review-wrap--rev .review-arrow {
        right: -36px;
        bottom: -28px;
        width: 130px;
    }
}

@media (max-width: 640px) {
    .review-wrap--rev .review-arrow {
        right: -22px;
        bottom: -20px;
        width: 110px;
    }
}

/* ===== LEAD FORM ===== */

.lead-form-section {
    background: #e6fff9;
    padding: 56px 0 68px;
}

.lead-form-title {
    margin: 0 0 8px;
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #002a3a;
}

.lead-form-title .teal {
    color: #009282;
}

.lead-form-sub {
    margin: -3px auto -12px;
    text-align: center;
    font-size: 26px;
    color: #000000;
}

.lead-form-sub .teal {
    color: #009282;
    font-weight: 800;
}

.lead-form {
    background: #ffffff;
    border: 7px solid #0092824d;
    border-radius: 18px;
    padding: 22px 22px 26px;
    max-width: 954px;
    margin: 0 auto;
    /* box-shadow: inset 0 14px 28px 0 #0092825c,
         inset 0 0 0 1px #0092825c;  */
}

.lf-grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.lf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.lf-label {
    font-weight: 500;
    font-size: 18px;
    color: #002a3a;
}

.req {
    color: #ff2b2b;
    margin-left: 4px;
}

.lf-field input {
    height: 38px;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 5px;
    padding: 0 12px;
    font-size: 14px;
    outline: 0;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lf-field input:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

.lf-block {
    margin: 14px 0;
    text-align: left;
}

.lf-question {
    font-weight: 500;
    color: #002a3a;
    margin-bottom: 10px;
    font-size: 20px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/* Lead form pill options – stack in a column */
.lead-form .pill-list {
    display: flex;
    flex-direction: column; /* 🔥 one below another */
    align-items: flex-start; /* left aligned text */
    gap: 10px; /* space between options */
}
.lead-form .pill-other {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    /* border: 1.5px solid #009282; */
    border-radius: 9px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: 0.15s;
}

.pill input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.pill span {
    font-size: 16px;
    font-weight: 500;
    color: #002a3a;
}

.pill:hover {
    box-shadow: 0 4px 12px rgba(0, 146, 130, 0.16);
}

.pill input:checked + span {
    color: #fff;
}

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span,
.pill input:checked + span {
    color: #fff;
}

.pill input:checked ~ span::after {
}

.pill input:checked ~ *,
.pill input:checked + span {
}

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

/* fill background when checked */

.pill input:checked ~ span,
.pill input:checked + span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

/* simpler: change parent */

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked ~ span {
}

.pill input:checked {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

.pill input:checked + span {
}

/* Use :has for modern browsers to set parent bg when checked */

.pill:has(input:checked) {
    background: #009282;
    color: #fff;
    border-color: #009282;
}

.pill:has(input:checked) span {
    color: #fff;
}

/* “Other” text box */

.pill-other {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.pill-other-input {
    flex: 1 1 360px;
    height: 38px;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}

.pill-other-input:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

/* Radio groups reuse the same pill look */

.pill-list--radio .pill {
}

/* Textarea */

.lf-textarea {
    width: 100%;
    border: 1.5px solid rgba(0, 146, 130, 0.35);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    resize: vertical;
}

.lf-textarea:focus {
    border-color: #009282;
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.12);
}

.lf-actions {
    text-align: center;
    margin-top: 14px;
}
.lf-actions .btn-lg {
    height: 50%;
    width: 23%;
    font-size: 20px;
    border-radius: 7px;
    padding: 17px;
    background-color: #009282;
}

/* Responsive */

@media (max-width: 800px) {
    .lead-form-title {
        font-size: 34px;
    }
    .lf-grid.two {
        grid-template-columns: 1fr;
    }
}

/* White divider between lead form and footer */

.lead-footer-divider {
    height: 70px;
    width: 100%;
    background: #e6fff9;
}

/* optional: subtle top shadow so it “lifts” off the footer */

.lead-footer-divider {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

/* ===== Rectangular (checkbox) tiles ===== */

/* applies to all multi-select groups that use .pill-list (no .pill-list--radio) */

.pill-list:not(.pill-list--radio) .pill {
    /* border: 1.5px solid #009282; */
    border-radius: 10px;
    background: #fff url("/images/lead-form/choose-rectangle.png") no-repeat
        left 10px center;
    background-size: 18px;
    padding-left: 36px;
    /* room for icon */
}

/* checked state -> green + white text + checkmark on the right */

.pill-list:not(.pill-list--radio) .pill:has(input:checked) {
    /* background-color: #009282; */
    /* border-color: #009282; */
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list .pill:has(input:checked) span {
    color: #fff;
}

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/images/lead-form/correct-mark.png") no-repeat
        center/contain;
}

/* ===== Round (radio) tiles ===== */

.pill-list.pill-list--radio .pill {
    /* border: 1.5px solid #009282; */
    border-radius: 999px;
    background: #fff url("/images/lead-form/round-choose.png") no-repeat left
        12px center;
    background-size: 18px;
    padding-left: 44px;
    /* room for round icon */
}

.pill-list.pill-list--radio .pill:has(input:checked) {
    background-color: #009282;
    border-color: #009282;
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list.pill-list--radio .pill:has(input:checked) span {
    color: #fff;
}

/* Show/Hide the 'Please Specify' input for Others (hidden by default) */

.pill-other-input[hidden] {
    display: none !important;
}

/* --- FIX: checkbox/rectangle tiles: left icon + in-tile tick --- */

.pill-list:not(.pill-list--radio) .pill {
    position: relative;
    /* border: 1.5px solid #009282; */
    border-radius: 10px;
    background: #fff;
    /* no bg image on the label */
    padding-left: 48px;
    /* room for the left icon */
}

/* left icon box */

.pill-list:not(.pill-list--radio) .pill::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("/images/lead-form/choose-rectangle.png") no-repeat
        center/contain;
    pointer-events: none;
}

/* selected state */

.pill-list:not(.pill-list--radio) .pill:has(input:checked) {
    background-color: #009282;
    /* border-color: #009282; */
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list .pill:has(input:checked) span {
    color: #fff;
}

/* when selected, swap the left icon to the tick */

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::before {
    background-image: url("/images/lead-form/correct-mark.png");
}

/* (remove any right-side checkmark if you added one earlier) */

.pill-list:not(.pill-list--radio) .pill::after {
    content: none !important;
}

/* --- FIX: radio/round tiles keep round icon on the left --- */

.pill-list.pill-list--radio .pill {
    position: relative;
    /* border: 1.5px solid #009282; */
    border-radius: 999px;
    background: #fff;
    padding-left: 52px;
    /* room for round icon */
}

.pill-list.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/images/lead-form/round-choose.png") no-repeat
        center/contain;
    pointer-events: none;
}

.pill-list.pill-list--radio .pill:has(input:checked) {
    background-color: #009282;
    border-color: #009282;
    box-shadow: 0 8px 18px rgba(0, 146, 130, 0.25);
}

.pill-list.pill-list--radio .pill:has(input:checked) span {
    color: #fff;
}

/* --- Keep “Please Specify” box white, never tinted --- */

.pill-other-input {
    background: #fff !important;
}

.pill-other .pill:has(input:checked) + .pill-other-input {
    background: #fff !important;
}

/* --- stop tinting the whole chip when selected --- */

.pill-list .pill:has(input:checked) {
    background: #fff !important;
    /* keep label white */
    color: inherit !important;
    box-shadow: none !important;
}

.pill-list .pill:has(input:checked) span {
    color: #002a3a !important;
    /* keep text color */
}

/* --- RECTANGLE (checkbox) — show a small square that turns green --- */

.pill-list:not(.pill-list--radio) .pill {
    position: relative;
    padding-left: 48px;
    /* space for the small box */
}

.pill-list:not(.pill-list--radio) .pill::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid #009282;
    background: #fff url("/images/lead-form/choose-rectangle.png") center/18px
        18px no-repeat;
    pointer-events: none;
}

/* only the little box flips to green + tick */

.pill-list:not(.pill-list--radio) .pill:has(input:checked)::before {
    background: #009282 url("/images/lead-form/correct-mark.png") center/18px
        18px no-repeat;
    border-color: #009282;
}

/* --- ROUND (radio) — show a small circle that turns green --- */

.pill-list.pill-list--radio .pill {
    position: relative;
    padding-left: 52px;
    /* space for the round dot */
    border-radius: 999px;
}

.pill-list.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1.5px solid #009282;
    background: #fff url("/images/lead-form/round-choose.png") center/16px 16px
        no-repeat;
    pointer-events: none;
}

.pill-list.pill-list--radio .pill:has(input:checked)::before {
    background: #009282 url("/images/lead-form/round-choose.png") center/16px
        16px no-repeat;
    border-color: #009282;
}

/* --- “Others” text box must always stay white --- */

.pill-other-input {
    background: #fff !important;
}

.pill-other .pill:has(input:checked) + .pill-other-input {
    background: #fff !important;
}

/* --- remove green focus glow on inputs --- */

.lf-field input:focus,
.lf-textarea:focus {
    border-color: rgba(0, 146, 130, 0.35);
    box-shadow: none;
    /* no tinted focus ring */
    outline: none;
}

/* ---------- OPTION TILES: icon-only highlight (no green on label text) ---------- */

/* Base tile – leave label white, create our own icon box on the left */

.pill {
    position: relative;
    padding-left: 48px;
    /* room for the icon */
    background: #fff !important;
    /* never tint the whole tile */
    border: none;
    /* we draw icon outline instead */
}

/* Default rectangle (checkbox) icon box */

.pill:not(.pill-list--radio .pill)::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #fff url("/images/lead-form/choose-rectangle.png")
        center/contain no-repeat;
    box-shadow: inset 0 0 0 1.5px #009282;
    /* teal outline */
    pointer-events: none;
}

/* Checked rectangle: icon turns green + tick centered */

.pill:has(input[type="checkbox"]:checked)::before {
    background: #009282;
    /* green square */
    box-shadow: none;
}

.pill:has(input[type="checkbox"]:checked)::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: url("/images/lead-form/correct-mark.png") center/16px 16px
        no-repeat;
    pointer-events: none;
}

/* Radio (round) icon box */

.pill-list--radio .pill::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff url("/images/lead-form/round-choose.png") center/contain
        no-repeat;
    box-shadow: inset 0 0 0 1.5px #009282;
    pointer-events: none;
    align-items: center;
}

/* Radio checked: bigger green ring, smaller white center */

.pill-list--radio .pill:has(input[type="radio"]:checked)::before {
    background: #009282;
    box-shadow: none;
    /* solid green disc */
}

.pill-list--radio .pill:has(input[type="radio"]:checked)::after {
    content: "";
    /* white inner dot */
    position: absolute;
    left: 21px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* smaller → thicker green ring */
    background: #fff;
    pointer-events: none;
}

/* Keep label text color unchanged when selected */

.pill:has(input:checked) span {
    color: #002a3a !important;
}

/* Remove the green glow when typing into inputs */

.lf-field input:focus,
.lf-textarea:focus {
    box-shadow: none !important;
}

/* “Please Specify” field should always stay white */

.pill-other-input {
    background: #fff !important;
}
/* ==== Multi-step lead form ==== */

.lead-step {
    display: none;
}

.lead-step.is-active {
    display: block;
}

/* Footer inside each step (Next / Back buttons) */
.lf-step-footer {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Final step: keep buttons together, rest of block centered as before */
.lf-step-footer--final {
    margin-bottom: 18px;
}

/* Step buttons */
.step-btn {
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #009282;
    background: #ffffff;
    color: #009282;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
        transform 0.12s ease;
    width: 15%;
}

.step-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 146, 130, 0.18);
    transform: translateY(-1px);
}

/* Primary (Next) */
.step-next {
    background: #009282;
    color: #ffffff;
}

/* Back button stays white */
.step-back {
    background: #ffffff;
    color: #009282;
}
.lf-actions .step-next {
    width: auto;
    min-width: 120px;
    height: 30px;
}
/* ===== Phone field with fixed US code (+1) ===== */
.phone-wrap {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 146, 130, 0.35);
    background: #ffffff;
    overflow: hidden;
}

.phone-code {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0b2630;
    background: #f5f7f8;
    border-right: 1px solid rgba(0, 146, 130, 0.35);
    white-space: nowrap;
}

.phone-wrap input[type="tel"] {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
    background: transparent;
}

/* In case you had generic .lf-field input styling, keep it but let this override borders */

/* =========================================================
   FOOTER (BG + WATERMARK)
   ========================================================= */

/* Footer BG only */

.accrivo-footer {
    position: relative;
    min-height: 580px;
    /* adjust as you like */
    background: linear-gradient(180deg, #002a3a 0%, #000000 100%);
    overflow: hidden;
    isolation: isolate;
    /* create stacking context */
}

/* Centered watermark text under everything else */

.foot-watermark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    /* perfect center */
    z-index: 0;
    /* stays below future content */
    pointer-events: none;
    user-select: none;
    color: #009282;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 107px;
    line-height: 112px;
    /* as requested */
    letter-spacing: 0;
    text-align: right;
    /* per spec (kept even while centered) */
    opacity: 0.12;
    /* subtle watermark look; tweak if needed */
}

/* Watermark responsiveness */

@media (max-width: 900px) {
    .foot-watermark {
        font-size: 180px;
    }
}

@media (max-width: 560px) {
    .foot-watermark {
        font-size: 120px;
    }
}

/* =========================================================
   CONTENT LAYER (ABOVE WATERMARK)
   ========================================================= */

/* content grid above watermark (do not change existing BG/watermark) */

.footer-inner {
    position: relative;
    z-index: 1;
    /* content sits above the watermark */
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 15px 48px;
    display: grid;
    grid-template-columns: 1fr 280px;
    /* left fluid, right fixed width like mock */
    column-gap: 64px;
    /* gives that exact breathing space */
    align-items: start;
}

/* =========================================================
   LEFT COLUMN
   ========================================================= */

.foot-left {
    color: #eaf6f4;
    text-align: left;
}

/* title + short underline exactly like the reference */

.foot-title {
    margin: 0 0 8px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 35px;
    line-height: 1.2;
}

.foot-title-underline {
    display: block;
    width: 56px;
    /* small underline length */
    height: 3px;
    /* thickness */
    background: #eaf6f4;
    opacity: 0.7;
    margin: 6px 0 18px;
    border-radius: 2px;
}

/* contact list */

.foot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.foot-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 15px 0;
    font-size: 20px;
    font-weight: 400;
}

.foot-list .ico-img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: block;
}

.foot-list a {
    color: #eaf6f4;
    text-decoration: none;
}

.foot-list a:hover {
    text-decoration: underline;
}

/* socials (PNG icons) */

.foot-social {
    display: flex;
    /* gap: 5px; */
    margin: 20px 0 30px -10px;
}

.s-badge {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    transition: transform 0.12s ease, background 0.12s ease;
}

.s-badge img {
    width: 25px;
    height: 25px;
    display: block;
}

.s-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.foot-trust {
    margin: 69px 0 50px 0;
    font-size: 33px;
    font-weight: 800;
}

/* trust block */

/* .trust-top {
    font-weight: 800;
    font-size: 22px;
    margin-top: 14px;
}
.trust-big {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.02em;
    margin: 6px 0;
}
.trust-sub {
    font-weight: 800;
    font-size: 22px;
} */

/* copyright */

.foot-copy {
    margin-top: 40px;
    font-size: 18px;
    color: #bfe2dd;
    font-weight: 300;
    letter-spacing: 2px;
}

.foot-copy a {
    color: #bfe2dd;
    text-decoration: none;
}

.foot-copy a:hover {
    text-decoration: underline;
}

/* =========================================================
   RIGHT COLUMN (QUICK LINKS + BUTTONS)
   ========================================================= */

.foot-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.quick-card {
    width: 100%;
    background: #000;
    border: 2px solid #009282;
    border-radius: 22px;
    padding: 20px 18px 16px;
}

.qc-title {
    text-align: center;
    color: #eaf6f4;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 12px;
}

.qc-links {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qc-links a {
    width: max-content;
    color: #eaf6f4;
    text-decoration: none;
    text-align: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    background: transparent;
    border: 1px solid transparent;
}

.qc-links a.active {
    background: #0b0b0b;
    border-color: rgba(0, 146, 130, 0.22);
    box-shadow: inset 0 0 0 1px rgba(0, 146, 130, 0.1);
}

/* gradient-outline buttons */

.outline-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    border-radius: 12px;
    color: #eaf6f4;
    text-decoration: none;
    font-weight: 700;
    border: 0.5px solid rgba(0, 146, 130, 0.22);
    /* required for gradient border */
    background-color: transparent;
}

.outline-btn:hover {
    transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE (CONTENT LAYER)
   ========================================================= */

@media (max-width: 1040px) {
    .footer-inner {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }
    .foot-right {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .s-badge {
        width: 36px;
        height: 36px;
    }
    .qc-title {
        font-size: 24px;
    }
}

/*====================== mobile-view =======================*/
/* === GLOBAL MOBILE VERTICAL SPACING TWEAK === */
@media (max-width: 640px) {
    /* 1) Sections: less top + bottom padding */
    .hero,
    .video-section,
    .wwd-section,
    .why-section,
    .things-section,
    .hiw-section,
    .vs-section,
    .swos-section,
    .services-section,
    .lead-form-section,
    .nep-section,
    .faq-section {
        padding-top: 4px;
        padding-bottom: 34px;
    }

    /* 2) Inner white panels/cards: reduce padding so
          text + button sit closer to the border */
    .wwd-card,
    .why-card,
    .things-wrap,
    .thing-card,
    .service-item,
    .review-card,
    .nep-card,
    .faq-item,
    .lead-form {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    /* 3) Titles: kill extra top margin on mobile */
    .wwd-title,
    .why-title,
    .things-title,
    .hiw-title,
    .vs-title,
    .swos-title,
    .services-title,
    .lead-form-title,
    .nep-title,
    .faq-title {
        margin-top: 0;
    }

    /* 4) Subtitles: a bit less bottom gap */
    .wwd-sub,
    .why-sub,
    .things-sub,
    .hiw-sub,
    .vs-sub,
    .swos-sub,
    .services-sub,
    .lead-form-sub,
    .nep-intro,
    .faq-sub {
        margin-bottom: 18px;
    }
}

@media (max-width: 900px) {
    /* pull grid in a bit */
    .swos-grid,
    .swos-grid--reverse {
        margin: 0 16px;
    }

    /* stop absolute shifting that causes overflow */
    .review-wrap,
    .review-wrap--rev {
        position: static;
        right: auto;
        left: auto;
        margin-top: 24px;
    }

    /* hide the big curved arrow on small widths */
    .review-arrow {
        display: none;
    }
}

/* === MOBILE BUTTON SIZE (like screenshot) === */
@media (max-width: 640px) {
    .btn-lg {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
        padding: 8px 18px; /* less height */
        font-size: 12px; /* smaller text */
        line-height: 1.2;
        letter-spacing: 0.08rem;
        border-width: 2px;
    }

    /* hero main CTA – pill size exactly like uploaded image */
    .hero .btn-lg {
        width: auto; /* not full width, like design */
        max-width: none;
        padding: 4px 9px;
    }

    .hero .btn-sub {
        font-size: 10px; /* small subtitle line */
    }
}
/* === FINAL UNIVERSAL MOBILE BUTTON SIZE (ALL SECTIONS) === */
@media (max-width: 640px) {
    /* default mobile style for every .btn-lg */
    .btn-lg {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto !important;
        max-width: none !important;
        margin: 16px auto 0 !important;
        padding: 8px 24px;
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0.08rem;
        border-width: 2px;
    }

    /* make sure section CTAs don't stretch full width */
    .video-cta .btn-lg,
    .wwd-cta .btn-lg,
    .why-cta .btn-lg,
    .things-cta .btn-lg,
    .hiw-cta .btn-lg,
    .vs-cta .btn-lg,
    .swos-cta .btn-lg,
    .services-section .btn-lg,
    .lead-form .btn-lg,
    .nep-section .btn-lg,
    .faq-section .btn-lg,
    .lf-actions .btn-lg {
        width: auto !important;
        max-width: none !important;
    }
}
@media (max-width: 640px) {
    .yt-card {
        width: 100%;
        max-width: 100%;
        border-width: 6px;
        border-radius: 22px;
        /* aspect-ratio still works on mobile, no height needed */
    }

    .yt-card .play img {
        width: 64px;
    }
}
/* === MOBILE: WHAT WE DO CARDS (narrower + smaller text) === */
@media (max-width: 640px) {
    /* center the single column and make card a bit narrower */
    .wwd-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    .wwd-grid-row-tow {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        margin-left: -1%;
    }
    .wwd-card {
        width: 88%; /* little less than full width */
        padding: 20px 18px 22px; /* slightly tighter padding */
        border-radius: 22px;
    }

    /* inside fonts smaller like your screenshot */
    .wwd-card h3 {
        font-size: 14px !important;
        line-height: 1.3;
    }

    .wwd-card p {
        font-size: 12px !important;
        line-height: 1.5;
    }

    /* optional: slightly smaller number so it doesn’t dominate */
    .wwd-num {
        font-size: 68px;
        right: 20px;
    }
}
/* === MOBILE TWEAKS: WHY CHOOSE ACCRIVO CARDS === */
@media (max-width: 640px) {
    /* keep single column, but make card a bit narrower */
    .why-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .why-card {
        width: 88%; /* little less width like screenshot */
        margin-inline: auto;
        padding: 18px 18px 20px; /* slightly tighter padding */
    }

    /* smaller heading text inside card */
    .why-card h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    /* smaller body text */
    .why-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* === MOBILE: smaller WHY FinTruction heading & subtext === */
@media (max-width: 640px) {
    /* hide manual line-breaks on mobile */
    .hide-on-mobile {
        display: none;
    }

    .why-section {
        padding-top: 10px;
        padding-bottom: 36px;
    }

    .why-title {
        font-size: 21px; /* smaller heading */
        line-height: 1.28;
        letter-spacing: -0.2px;
    }

    .why-sub {
        font-size: 12px; /* smaller paragraph */
        line-height: 1.5;
        max-width: 105%;
        margin-inline: auto;
        margin-top: -8px;
    }
}

/* === MOBILE: 8 THINGS SECTION (cards like screenshot) === */
@media (max-width: 640px) {
    .things-section {
        padding: 40px 0 52px;
    }

    #eight-things {
        border-radius: 18px;
    }

    .things-wrap {
        /* padding: 20px 14px 26px; */
    }

    .things-title {
        font-size: 23px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .things-sub {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 22px;
    }

    /* stack cards, full width like screenshot */
    .things-list {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .thing-card {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
        padding: 18px 16px;
        border-radius: 16px;
        border: 2px solid #a8ddd6; /* thin mint border like image */
        min-height: auto;

        display: grid;
        grid-template-columns: auto 1fr; /* icon left, text right */
        column-gap: 14px;
        row-gap: 4px;
        align-items: flex-start;
    }

    .thing-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin: 0; /* no extra spacing */
    }

    .thing-divider {
        display: none; /* no vertical line on mobile */
    }

    .thing-content h3 {
        margin-left: 0;
        font-size: 15px;
        line-height: 1.3;
    }

    .thing-content p {
        margin-left: 0;
        font-size: 14px;
        line-height: 1.5;
    }
}
/* ===== 8 THINGS: MOBILE (less top + less button padding) ===== */
@media (max-width: 640px) {
    /* reduce only the TOP space of this section */
    #eight-things.things-section {
        padding-top: 14px !important; /* was 32px (global) */
        padding-bottom: 34px; /* keep bottom as-is */
    }

    /* tighten inner wrap top padding */
    #eight-things .things-wrap {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    /* remove extra top gap above title */
    #eight-things .things-title {
        margin-top: 6px !important;
        margin-bottom: 10px !important;
    }

    #eight-things .things-sub {
        margin-bottom: 14px !important;
        font-size: 12px !important;
    }

    /* CTA block closer to cards */
    #eight-things .things-cta {
        margin-top: 16px !important;
    }

    /* button: very less padding (ONLY in this section) */
    #eight-things .things-cta .btn-lg {
        margin-top: 10px !important;
        padding: 6px 14px !important; /* ✅ reduced */
        line-height: 1.15 !important;
    }

    #eight-things .things-cta .btn-sub {
        font-size: 10px !important;
    }
}

/* === MOBILE ONLY: OTHER BOOKKEEPERS VS FinTruction === */
@media (max-width: 640px) {
    .vs-section {
        background: #e6fff9;
        color: #002a3a;
        padding: 10px 0;
    }

    .vs-title {
        margin: 0 0 6px;
        text-align: center;
        font-weight: 900;
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }

    .vs-title .teal {
        color: #009282;
    }

    .vs-sub {
        margin: 0px auto 13px;
        max-width: 360px;
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        padding: 0 12px;
    }

    /* table wrapper: stack cards in one column */
    .vs-table {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 8px 0 0;
    }

    .vs-divider {
        display: none;
    }

    /* card look (white card with shadow) */
    .vs-col {
        background: #ffffff;
        border-radius: 18px;
        padding: 18px 16px 16px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
        text-align: left;
    }

    /* left = Competitor (red outline / shadow) */
    .vs-col.left {
        border: 1.5px solid #f9b7bc;
        box-shadow: 0 18px 36px rgba(255, 84, 112, 0.18);
    }

    /* right = FinTruction (teal outline / shadow) */
    .vs-col.right {
        border: 1.5px solid #8fd9cd;
        box-shadow: 0 18px 36px rgba(0, 146, 130, 0.18);
    }

    /* headings inside each card */
    .vs-col-head {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 900;
        font-size: 16px;
        margin: 2px 0 8px;
        padding: 0;
        border: 0;
    }

    .vs-col.left .vs-col-head {
        color: #ff3f5f;
    }

    .vs-col.left .vs-col-head::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        background: url("/images/othervsaccrivo/headingcross.png") no-repeat
            center/contain;
        flex: 0 0 22px;
    }

    .vs-col.right .vs-col-head {
        color: #009282;
    }

    .vs-col.right .vs-col-head::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        background: url("/images/othervsaccrivo/headingright.png") no-repeat
            center/contain;
        flex: 0 0 22px;
    }

    /* list + bullets */
    .vs-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .vs-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        line-height: 1.55;
        margin: 9px 0;
    }

    .vs-list .ico {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        margin-top: 3px;
    }

    /* CTA under cards */
    .vs-cta {
        margin-top: 26px;
        text-align: center;
    }

    .vs-cta .btn-lg {
        display: inline-flex;
        margin: 0 auto 16px;
    }
}
/* === TESTIMONIALS – MOBILE ONLY (match uploaded design) === */
@media (max-width: 640px) {
    /* one-column layout on mobile */
    .swos-grid,
    .swos-grid--reverse {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "lead"
            "copy"
            "photo"
            "review";
        row-gap: 16px;
        margin: 0 16px;
    }

    /* let the text + review participate in the grid */
    .swos-left {
        display: contents;
        margin-top: 0;
        padding: 0;
    }

    .swos-lead {
        grid-area: lead;
        text-align: left;
        font-size: 23px;
    }

    .swos-copy {
        grid-area: copy;
        text-align: left;
        font-size: 17px;
    }

    .swos-photo {
        grid-area: photo;
        order: 0; /* cancel order:-1 from tablet rule */
        margin: 4px 0 0;
        justify-self: center;
        max-width: 100%;
    }

    /* review card sits under the image for all three */
    .review-wrap,
    .review-wrap--rev {
        grid-area: review;
        position: relative;
        margin-top: 8px;
        right: auto;
        left: auto;
        z-index: 1;
        text-align: left;
    }

    .review-card.review-card--tight {
        width: 80%; /* narrower than full */
        max-width: 80%;
        /* margin: 0 auto; center the card */
    }

    .review-arrow {
        display: block;
        position: absolute;
        bottom: 42px; /* tweak height if needed */
        width: 60px; /* same size for all 3 arrows */
        height: auto;
        opacity: 0.95;
    }
    /* 1st & 3rd testimonials → arrow on the RIGHT side */
    .review-wrap .review-arrow {
        right: -15px;
        left: auto;
        transform: scaleX(-1);
        top: -30px;
    }

    /* middle (reversed) testimonial → arrow on the LEFT side */
    .review-wrap--rev .review-arrow {
        /* left:; */
        right: auto;
        bottom: 42px;
        width: 60px;
        height: auto;
        transform: none;
    }

    .swos-grid--reverse .swos-lead,
    .swos-grid--reverse .swos-copy {
        text-align: right;
    }
    .review-wrap--rev {
        text-align: right;
    }
    .review-wrap--rev .review-card.review-card--tight {
        margin-left: auto; /* push card to right */
        margin-right: 0;
    }
}
/* === MOBILE TWEAKS: TESTIMONIALS SECTION ONLY === */
@media (max-width: 640px) {
    /* Section padding tighter */
    #testimonials.swos-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    /* Main heading smaller + less gap */
    #testimonials .swos-title {
        font-size: 19px;
        line-height: 1.25;
        margin: 0 0 14px;
    }

    /* ✅ Reduce gap between "What We Delivered..." and the pill list */
    .swos-lead {
        margin-bottom: -6px !important; /* was 12px */
    }

    /* Sub-heading "What we delivered..." */
    #testimonials .swos-lead {
        font-size: 16px;
        margin: 0 0 8px;
    }

    /* Grid a bit tighter, less side margin */
    #testimonials .swos-grid {
        margin: 0 10px;
    }

    /* Pills: smaller text & padding */
    #testimonials .swos-points {
        gap: 4px;
    }

    #testimonials .swos-pill {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Review card more compact */
    #testimonials .review-card {
        padding: 12px 14px 14px;
        max-width: 100%;
    }

    #testimonials .review-title {
        font-size: 14px;
    }

    #testimonials .review-text {
        font-size: 11px;
        line-height: 1.45;
    }

    /* Small "What other clients say..." heading */
    #testimonials .testi-h3 {
        font-size: 18px;
        /* margin: 16px 0 10px !important; */
    }

    /* Cards under it – tighter spacing */
    #testimonials .testi-row {
        gap: 14px;
        max-width: 420px;
    }

    #testimonials .testi-card {
        padding: 14px 14px 12px;
    }

    #testimonials .testi-snippet {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }

    #testimonials .testi-name {
        font-size: 13px;
    }

    #testimonials .testi-role {
        font-size: 11px;
    }

    /* CTA closer to content + smaller visual weight */
    #testimonials .swos-cta {
        /* margin-top: 22px; */
    }

    #testimonials .swos-cta .btn-lg {
        margin-top: 8px !important;
    }

    /* Image fills width nicely */
    #testimonials .swos-photo {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .swos-section .swos-cta .btn-lg {
        margin-top: -10px !important; /* keep small top space */
        /* margin-bottom: 4px !important; <<< reduce space under button */
    }
}

/* === NO EMPTY PROMISES – MOBILE (like screenshot) === */
@media (max-width: 640px) {
    .nep-section {
        padding: 40px 0 44px;
    }

    .nep-title {
        font-size: 21px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .nep-intro {
        max-width: 90%;
        font-size: 13px;
        line-height: 1.45;
        margin: 14px auto 22px;
    }

    .nep-card {
        max-width: 88%;
        width: 88%;
        margin: 10px auto 0;
        padding: 24px 16px 26px;
        border-width: 4px;
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(0, 146, 130, 0.1);
    }

    .nep-lead {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .nep-badge {
        margin: 14px 0 8px;
    }

    .nep-badge img {
        width: min(230px, 70vw);
    }

    .nep-points {
        max-width: 100%;
        margin: 10px auto 4px;
    }

    .nep-points p {
        font-size: 9px;
        line-height: 1.45;
        margin: 6px 0;
    }

    .nep-claim {
        font-size: 13px;
        line-height: 1.5;
        margin: 10px auto 14px;
        padding: 8px 10px;
    }

    .nep-closer {
        gap: 4px;
        margin-top: 6px;
    }

    .nep-closer .grad-line {
        font-size: 16px;
        letter-spacing: 0.3px;
    }
}
/* === FAQ – MOBILE (match screenshot) === */
@media (max-width: 640px) {
    .faq-section {
        padding: 40px 0 36px;
    }

    .faq-title {
        text-align: center;
        font-size: 26px;
        line-height: 1.25;
        margin: 0 0 4px;
    }

    .faq-sub {
        /* max-width: 280px; */
        margin: 0 auto 18px;
        text-align: center;
        font-size: 10px;
        line-height: 1.5;
    }

    /* stack list and keep it narrow like the mockup */
    .faq-list {
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
        border: 1.5px solid #8fd9cd; /* soft teal outline */
        background: #ffffff;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    /* first (open) item = filled mint background */
    .faq-item.is-open {
        background: #e6fff9;
        border-color: #009282;
        padding: 0px 0px 0px 0px;
    }

    .faq-head {
        padding: 14px 14px;
        width: 100%;
    }

    .faq-q {
        font-size: 14px;
        line-height: 1.45;
    }

    .faq-q .q-num {
        margin-right: 6px;
    }

    .faq-icon img {
        width: 21px;
        height: 14px;
    }

    .faq-body {
        padding: 10px 0px 14px;
    }

    .faq-body p {
        font-size: 13px;
        line-height: 1.5;
        margin: 5;
    }
}
/* === MOBILE: SERVICES LIST (match screenshot) === */
@media (max-width: 640px) {
    .services-section {
        background: #e6fff9; /* same mint panel */
        padding: 40px 0 48px;
        text-align: center;
    }

    .services-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        margin: 0 0 10px;
    }

    .services-sub {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .service-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0 auto 24px;
        max-width: 520px; /* narrow like design */
    }

    .service-item {
        background: #ffffff;
        border-radius: 18px;
        border: 2px solid #0092824d;
        /* box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06); */
        padding: 14px 16px;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 12px;
        align-items: center;
    }

    .svc-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .svc-icon img {
        width: 28px;
        height: 28px;
    }

    .svc-text {
        font-size: 14px;
        line-height: 1.35;
        text-align: left;
        font-weight: 700;
        color: #002a3a;
    }

    .svc-text small {
        display: block;
        margin-top: 2px;
        font-size: 11px;
        font-weight: 500;
    }

    /* CTA button + proof centered under cards */
    .services-section .btn-lg {
        margin-top: 18px !important;
    }

    .services-section .social-proof {
        margin-top: 10px;
        justify-content: center;
    }
}
/* === SERVICES: MOBILE TWEAKS === */
@media (max-width: 640px) {
    /* Smaller heading on mobile */
    .services-title {
        font-size: 26px; /* smaller than 34px */
        line-height: 1.25;
        padding: 0 8px; /* little breathing room on sides */
    }

    /* Center the cards */
    .service-list {
        align-items: center; /* centers flex children horizontally */
    }

    .service-item {
        width: 100%;
        max-width: 360px; /* nice card width */
        margin-inline: auto; /* just in case – ensures equal left/right */
    }
}

/* ===== LEAD FORM – MOBILE ONLY ===== */
@media (max-width: 640px) {
    .lead-form-section {
        padding: 10px 0 48px;
    }

    .lead-form-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 6px;
        padding: 0 8px;
    }

    .lead-form-sub {
        font-size: 13px;
        line-height: 1.5;
        margin: -3px auto -3px;
        max-width: 320px;
        padding: 0 6px;
    }

    .lead-form {
        max-width: 100%;
        margin: 0 auto;
        border-width: 3px;
        border-radius: 14px;
        padding: 18px 14px 20px;
    }

    /* inputs: one column & tighter */
    .lf-grid.two {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .lf-label {
        font-size: 13px;
    }

    .lf-field input {
        height: 40px;
        font-size: 13px;
        border-radius: 6px;
    }

    .phone-wrap {
        border-radius: 6px;
    }

    .phone-code {
        padding: 8px 10px;
        font-size: 13px;
    }

    .phone-wrap input[type="tel"] {
        padding: 8px 10px;
        font-size: 13px;
    }

    /* question blocks */
    .lf-block {
        margin: 10px 0;
    }

    .lf-question {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    /* pills = full-width stacked tiles */
    .pill-list {
        flex-direction: column;
        gap: 8px;
    }

    .pill {
        width: 100%;
        padding: 8px 10px 8px 44px;
    }

    .pill span {
        font-size: 13px;
        line-height: 1.4;
    }

    .pill-other {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .pill-other-input {
        width: 100%;
        flex: 0 0 auto;
        font-size: 13px;
        height: 38px;
    }

    /* textarea step */
    .lf-textarea {
        min-height: 120px;
        font-size: 13px;
    }

    /* Step footer buttons */
    .lf-step-footer,
    .lf-step-footer--final {
        margin-top: 18px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .step-btn {
        font-size: 13px;
        padding: 9px 18px;
        border-radius: 6px;
        min-width: 120px;
        width: auto;
    }

    .step-back {
        order: 1;
    }

    .step-next {
        order: 2;
    }

    /* final Submit button style/size */
    .lf-actions .btn-lg {
        width: auto;
        max-width: 220px;
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 999px;
    }

    /* social proof under final card */
    .lf-actions .social-proof {
        margin-top: 12px;
    }
}

/* Hide the slim white divider before footer on mobile */
@media (max-width: 640px) {
    .lead-footer-divider {
        display: none !important;
    }
}

/* ===== FOOTER – MOBILE (≤640px) ===== */
@media (max-width: 640px) {
    .accrivo-footer {
        position: relative;
        overflow: hidden;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* stack everything vertically like your first screenshot */
    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px 24px;
        gap: 32px;
    }

    .foot-left {
        text-align: center;
    }

    .foot-title {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .foot-title-underline {
        display: block;
        width: 60px;
        height: 2px;
        margin: 4px auto 16px;
    }

    .foot-list {
        margin: 0 0 12px;
        padding: 0;
        list-style: none;
    }

    .foot-list li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 14px;
        margin: 8px 0;
    }

    /* smaller icons on mobile */
    .foot-list .ico-img {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }

    .foot-social {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 16px 0 18px;
    }

    .s-badge {
        width: 38px;
        height: 38px;
    }

    .foot-trust {
        margin: 8px 0 12px;
        font-size: 18px;
        line-height: 1.3;
    }

    .foot-trust .trust-top {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .foot-trust .trust-big {
        font-size: 18px;
        font-weight: 700;
    }

    .foot-trust .trust-sub {
        font-size: 14px;
    }

    /* right side card + buttons */
    .foot-right {
        max-width: 260px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 1; /* above watermark */
    }

    .quick-card {
        padding: 18px 14px 14px;
        border-radius: 18px;
        margin-top: 110px; /* smaller gap than before */
    }

    .qc-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .qc-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .qc-links a {
        font-size: 14px;
        padding: 4px 0;
    }

    .outline-btn {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* big FINTRUCTION watermark behind card */
    .foot-watermark {
        font-size: 72px;
        line-height: 1;
        opacity: 0.08;
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
    }

    /* hide original copyright (inside foot-left) on mobile */
    .foot-copy {
        display: none;
    }

    /* new copyright at bottom like first screenshot */
    .accrivo-footer::after {
        content: "© 2025 FinTruction. All rights reserved\A www.fintruction.com";
        white-space: pre-line;
        display: block;
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
        letter-spacing: 1px;
        margin-top: 8px;
        color: white;
    }
}
/* MOBILE: pin footer watermark at a fixed spot */
@media (max-width: 640px) {
    .foot-watermark {
        position: absolute;
        font-size: 67px;
        line-height: 1;
        /* make it deeper & clearer */
        color: #006a61; /* rich teal */
        font-weight: 800; /* bold like the mock */
        opacity: 0.28; /* stronger than 0.08 */

        z-index: 0;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;

        /* your current offsets */
        margin-top: -100px !important;
        margin-left: -52px !important;
    }
}

/* === MOBILE: TRUSTED BY TEAL BAND === */
@media (max-width: 640px) {
    .divider-band {
        background: #009282;
        padding: 16px 0;
    }

    .divider-inner {
        max-width: 100%;
        /* margin: 0 auto; */
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* gap: 10px; */
        text-align: center;
    }

    /* make sure "Trusted by:" is visible */
    .divider-text {
        display: block !important;
        font-size: 13px !important;
        line-height: 1.3;
        font-weight: 600;
        color: #ffffff !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-top: 10px;
    }

    .divider-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0px 10px;
        width: 100%;
    }

    .divider-logos img {
        max-width: 70px;
        height: auto;
    }

    .divider-logos .logo-small {
        max-width: 60px;
    }
}

/* -----------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------- */

/* ================================
   GLOBAL SCROLL REVEAL ANIMATIONS
   ================================ */

.fx-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.98);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.7s ease,
        box-shadow 0.4s ease;
    will-change: opacity, transform, filter;
}

/* Direction variants */
.fx-reveal.fx-left {
    transform: translate3d(-32px, 0, 0);
}
.fx-reveal.fx-right {
    transform: translate3d(32px, 0, 0);
}
.fx-reveal.fx-pop {
    transform: translate3d(0, 16px, 0) scale(0.94);
}

/* When element is in view */
.fx-reveal.fx-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* Stagger support */
.fx-reveal {
    transition-delay: var(--fx-delay, 0s);
}

/* Fancy hover for key cards */
@media (hover: hover) and (pointer: fine) {
    .wwd-card,
    .why-card,
    .thing-card,
    .hiw-card,
    .service-item {
        transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
            box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .wwd-card:hover,
    .why-card:hover,
    .thing-card:hover,
    .hiw-card:hover,
    .service-item:hover {
        transform: translate3d(0, -8px, 0);
        box-shadow: 0 22px 40px rgba(11, 27, 42, 0.18);
    }
}

/* ========== STAGGERED DELAYS ========= */

/* What We Do (9 cards) */
.wwd-grid .wwd-card:nth-child(1) {
    --fx-delay: 0s;
}
.wwd-grid .wwd-card:nth-child(2) {
    --fx-delay: 0.06s;
}
.wwd-grid .wwd-card:nth-child(3) {
    --fx-delay: 0.12s;
}
.wwd-grid .wwd-card:nth-child(4) {
    --fx-delay: 0.18s;
}
.wwd-grid .wwd-card:nth-child(5) {
    --fx-delay: 0.24s;
}
.wwd-grid .wwd-card:nth-child(6) {
    --fx-delay: 0.3s;
}
.wwd-grid .wwd-card:nth-child(7) {
    --fx-delay: 0.36s;
}
.wwd-grid .wwd-card:nth-child(8) {
    --fx-delay: 0.42s;
}
.wwd-grid .wwd-card:nth-child(9) {
    --fx-delay: 0.48s;
}

/* Why Us (6 cards) */
.why-grid .why-card:nth-child(1) {
    --fx-delay: 0s;
}
.why-grid .why-card:nth-child(2) {
    --fx-delay: 0.06s;
}
.why-grid .why-card:nth-child(3) {
    --fx-delay: 0.12s;
}
.why-grid .why-card:nth-child(4) {
    --fx-delay: 0.18s;
}
.why-grid .why-card:nth-child(5) {
    --fx-delay: 0.24s;
}
.why-grid .why-card:nth-child(6) {
    --fx-delay: 0.3s;
}

/* 8 Things */
.things-list .thing-card:nth-child(1) {
    --fx-delay: 0s;
}
.things-list .thing-card:nth-child(2) {
    --fx-delay: 0.06s;
}
.things-list .thing-card:nth-child(3) {
    --fx-delay: 0.12s;
}
.things-list .thing-card:nth-child(4) {
    --fx-delay: 0.18s;
}
.things-list .thing-card:nth-child(5) {
    --fx-delay: 0.24s;
}
.things-list .thing-card:nth-child(6) {
    --fx-delay: 0.3s;
}
.things-list .thing-card:nth-child(7) {
    --fx-delay: 0.36s;
}
.things-list .thing-card:nth-child(8) {
    --fx-delay: 0.42s;
}

/* How It Works cards (5 steps) */
.hiw-wrap .hiw-card:nth-child(2) {
    --fx-delay: 0s;
} /* first article after spine */
.hiw-wrap .hiw-card:nth-child(3) {
    --fx-delay: 0.08s;
}
.hiw-wrap .hiw-card:nth-child(4) {
    --fx-delay: 0.16s;
}
.hiw-wrap .hiw-card:nth-child(5) {
    --fx-delay: 0.24s;
}
.hiw-wrap .hiw-card:nth-child(6) {
    --fx-delay: 0.32s;
}

/* Services list (6 items) */
.service-list .service-item:nth-child(1) {
    --fx-delay: 0s;
}
.service-list .service-item:nth-child(2) {
    --fx-delay: 0.06s;
}
.service-list .service-item:nth-child(3) {
    --fx-delay: 0.12s;
}
.service-list .service-item:nth-child(4) {
    --fx-delay: 0.18s;
}
.service-list .service-item:nth-child(5) {
    --fx-delay: 0.24s;
}
.service-list .service-item:nth-child(6) {
    --fx-delay: 0.3s;
}
.lead-form-qualifier {
    /* margin: 10px 0 0; */
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.85;
    color: black;
}
@media (max-width: 768px) {
    .lead-form-qualifier {
        font-size: 13px;
    }
}
.qual-green {
    color: #009282; /* green */
    font-weight: 700;
}

/* Mobile only: reduce Results heading size */
@media (max-width: 576px) {
    .results {
        font-size: 12px !important; /* change 20px to what you want */
    }
}
@media (max-width: 576px) {
    /* Video section CTA button - smaller frame on mobile */
    .video-section .video-cta .btn.btn-primary.btn-lg {
        padding: 4px 9px; /* reduce height */
        color: white;
        background-color: #009282;
    }
}
@media (max-width: 576px) {
    /* ✅ What-we-do section CTA button - same smaller frame on mobile */
    .wwd-section .wwd-cta .btn.btn-primary.btn-lg {
        padding: 4px 9px; /* reduce height/width */
        color: #fff;
        background-color: #009282;
    }
}
@media (max-width: 576px) {
    /* ✅ SAME small CTA frame on mobile for ALL these sections */

    /* How it works */
    .hiw-section .hiw-cta .btn.btn-primary.btn-lg,

  /* Why us */
  .why-section .why-cta .btn.btn-primary.btn-lg,

  /* Other vs */
  .vs-section .vs-cta .btn.btn-primary.btn-lg,

  /* Testimonials + No empty promises (both using swos-cta) */
  .swos-section .swos-cta .btn.btn-primary.btn-lg,
  .nep-section  .swos-cta .btn.btn-primary.btn-lg,

  /* FAQ section (also using vs-cta) */
  .faq-section .vs-cta .btn.btn-primary.btn-lg,

  /* Services section (CTA is directly inside section) */
  .services-section .btn.btn-primary.btn-lg {
        padding: 4px 9px; /* reduce height/width */
        color: #fff;
        background-color: #009282;
    }
}
/* =========================================================
   MOBILE ONLY: Social Proof in ONE ROW (avatars | divider | rating)
   (Does NOT change desktop/web view)
   ========================================================= */
@media (max-width: 767.98px) {

  .social-proof{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;

    /* keeps the whole row nicely centered in your lp-container */
    width: fit-content;
    max-width: 100%;
    margin: 14px auto 0 !important;

    text-align: left !important;
  }

  .social-proof .avatars{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
  }

  .social-proof .avatars img{
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    object-fit: cover !important;
    border: 2px solid #fff !important;
    margin-left: -8px !important;
  }
  .social-proof .avatars img:first-child{
    margin-left: 0 !important;
  }

  .social-proof .sp-divider{
    display: block !important;
    width: 1px !important;
    height: 34px !important;
    background: rgba(0,0,0,.14) !important;
    flex: 0 0 1px !important;
  }

  .social-proof .rating{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 4px !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  .social-proof .stars{
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    line-height: 1 !important;
  }

  .social-proof .star{
    width: 16px !important;
    height: 16px !important;
  }

  /* keep text readable + prevent breaking into a separate line */
  .social-proof .proof-copy{
    font-size: 8px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }
}

