/**
 * Homepage-only service sections — brand greens + neutrals (#43B649 → #15572a / #0f3d1f, #070707, #5C5856)
 */

.home-services-hub {
    background: #fff;
}

.home-svc-grid {
    margin-top: 50px;
}

/* Space between each card row/cell (Bootstrap 3 floats — margin on columns is reliable) */
.home-svc-grid > [class*="col-"] {
    margin-bottom: 44px;
}

.home-svc-card {
    display: block;
    height: auto;
    min-height: 280px;
    padding: 26px 24px 28px;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid rgba(7, 7, 7, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    text-decoration: none !important;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}

.home-svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6ee87a 0%, #43b649 40%, #15572a 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(19, 66, 39, 0.14);
    border-color: rgba(67, 182, 73, 0.35);
}

.home-svc-card:hover::before {
    opacity: 1;
}

.home-svc-card--accent::before {
    background: linear-gradient(90deg, #15572a 0%, #43b649 45%, #e74032 100%);
}

/* Icon only — no inner boxed background */
.home-svc-card__icon {
    display: block;
    margin: 0 0 20px;
    line-height: 0;
}

.home-svc-card__icon img {
    display: block;
    max-width: 52px;
    max-height: 52px;
    width: auto;
    height: auto;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-svc-card:hover .home-svc-card__icon img {
    transform: scale(1.04);
}

.home-svc-card h4 {
    font-family: "Mark Pro", sans-serif !important;
    font-size: 20px;
    line-height: 26px;
    font-weight: 800;
    color: #070707;
    margin: 0 0 12px;
}

.home-svc-card p {
    font-size: 16px;
    line-height: 25px;
    color: #5c5856;
    margin: 0 0 16px;
}

.home-svc-card__link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #43b649;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-svc-card__link .fa {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-svc-card:hover .home-svc-card__link .fa {
    transform: translateX(4px);
}

.home-svc-foot {
    margin-top: 16px;
    padding-top: 12px;
}

.home-svc-foot p {
    font-size: 17px;
    color: #5c5856;
}

.home-svc-foot a {
    color: #43b649;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(67, 182, 73, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.home-svc-foot a:hover {
    color: #134227;
    border-color: rgba(19, 66, 39, 0.45);
}

/* Delivery journey */
.home-delivery-journey {
    background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f7 100%);
    position: relative;
}

.home-delivery-journey::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(67, 182, 73, 0.1) 0%, transparent 58%);
    pointer-events: none;
}

.home-delivery-journey .container {
    position: relative;
    z-index: 1;
}

.home-journey-row {
    margin-top: 20px;
    position: relative;
}

@media (min-width: 992px) {
    .home-journey-row::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, rgba(110, 232, 122, 0.45), rgba(67, 182, 73, 0.35), rgba(21, 87, 42, 0.3));
        z-index: 0;
    }
}

.home-journey-step {
    text-align: center;
    padding: 0px 12px 28px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.home-journey-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-family: "Mark Pro", sans-serif !important;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
    border: 4px solid #f8f9fb;
}

.home-journey-step--green .home-journey-step__num {
    background: linear-gradient(135deg, #43b649 0%, #2d8a33 100%);
    box-shadow: 0 10px 28px rgba(67, 182, 73, 0.35);
}

.home-journey-step--deep .home-journey-step__num {
    background: linear-gradient(135deg, #1d6b2a 0%, #0f3d1f 100%);
    box-shadow: 0 10px 28px rgba(19, 66, 39, 0.35);
}

.home-journey-step--blend .home-journey-step__num {
    background: linear-gradient(135deg, #6ee87a 0%, #43b649 35%, #15572a 100%);
    box-shadow: 0 10px 28px rgba(45, 138, 51, 0.28);
}

.home-journey-step--coral .home-journey-step__num {
    background: linear-gradient(135deg, #e74032 0%, #c4352a 100%);
    box-shadow: 0 10px 28px rgba(231, 64, 50, 0.28);
}

.home-journey-step h4 {
    font-family: "Mark Pro", sans-serif !important;
    font-size: 19px;
    font-weight: 800;
    color: #070707;
    margin: 0 0 12px;
    line-height: 24px;
}

.home-journey-step p {
    font-size: 16px;
    line-height: 25px;
    color: #5c5856;
    margin: 0;
}

.home-journey-cta {
    margin-top: 28px;
}

.home-journey-cta .main-btn {
    display: inline-flex;
    justify-content: center;
}

/* Outcomes / stats */
.home-outcomes-stats {
    background: #fff;
    border-top: 1px solid rgba(7, 7, 7, 0.06);
    border-bottom: 1px solid rgba(7, 7, 7, 0.06);
}

.home-stat-row {
    margin-top: 16px;
}

.home-stat-tile {
    text-align: center;
    padding: 32px 18px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border: 1px solid rgba(7, 7, 7, 0.06);
    height: calc(100% - 24px);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-stat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.home-stat-tile__value {
    display: block;
    font-family: "Mark Pro", sans-serif !important;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(135deg, #6ee87a 0%, #43b649 38%, #134227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.home-stat-tile__label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #070707;
    margin-bottom: 12px;
}

.home-stat-tile p {
    font-size: 15px;
    line-height: 23px;
    color: #5c5856;
    margin: 0;
}

/* Post-hero: company + why choose (trust pitch) */
.home-trust-pitch {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 72px;
}

.home-trust-pitch__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 10% 20%, rgba(110, 232, 122, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 92% 80%, rgba(67, 182, 73, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #f6fbf7 0%, #eef5f0 42%, #e8f2ea 100%);
}

.home-trust-pitch .container {
    position: relative;
    z-index: 1;
}

.home-trust-pitch__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.home-trust-pitch__copy {
    padding-right: 20px;
}

.home-trust-pitch__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #15572a;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(67, 182, 73, 0.12);
    border: 1px solid rgba(67, 182, 73, 0.22);
}

.home-trust-pitch__copy h2 {
    font-family: "Mark Pro", sans-serif !important;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 900;
    color: #070707;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.home-trust-pitch__copy > p {
    font-size: 17px;
    line-height: 28px;
    color: #5c5856;
    margin: 0 0 14px;
}

.home-trust-pitch__lead {
    font-size: 16px;
    line-height: 26px;
    color: #070707;
    font-weight: 600;
    margin: 0 0 22px !important;
    padding-left: 16px;
    border-left: 4px solid #43b649;
}

.home-trust-pitch__chips {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.home-trust-pitch__chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #134227;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(67, 182, 73, 0.25);
    box-shadow: 0 4px 14px rgba(19, 66, 39, 0.06);
}

.home-trust-pitch__chips li .fa {
    color: #43b649;
    font-size: 14px;
}

.home-trust-pitch__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
}

.home-trust-pitch__about {
    font-size: 15px;
    font-weight: 700;
    color: #15572a;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(67, 182, 73, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.home-trust-pitch__about:hover {
    color: #0f3d1f;
    border-color: rgba(15, 61, 31, 0.45);
}

.home-trust-pitch__about .fa {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-trust-pitch__about:hover .fa {
    transform: translateX(4px);
}

.home-trust-pitch__visual {
    padding-left: 10px;
}

.home-trust-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 520px;
    margin-left: auto;
}

.home-trust-bento__featured {
    grid-column: 1 / -1;
    padding: 22px 24px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.55;
    color: #070707;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 251, 247, 0.98) 100%);
    border: 1px solid rgba(67, 182, 73, 0.22);
    box-shadow: 0 12px 40px rgba(19, 66, 39, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.home-trust-bento__featured strong {
    display: block;
    font-family: "Mark Pro", sans-serif !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #43b649;
    margin-bottom: 8px;
}

.home-trust-bento__card {
    padding: 18px 16px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(7, 7, 7, 0.06);
    box-shadow: 0 10px 32px rgba(19, 66, 39, 0.07);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}

.home-trust-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(19, 66, 39, 0.12);
    border-color: rgba(67, 182, 73, 0.28);
}

.home-trust-bento__ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(145deg, rgba(110, 232, 122, 0.28) 0%, rgba(67, 182, 73, 0.12) 55%, rgba(21, 87, 42, 0.1) 100%);
}

.home-trust-bento__ico img {
    max-width: 26px;
    max-height: 26px;
    width: auto;
    height: auto;
}

.home-trust-bento__card h3 {
    font-family: "Mark Pro", sans-serif !important;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    color: #070707;
    margin: 0 0 8px;
}

.home-trust-bento__card p {
    font-size: 14px;
    line-height: 22px;
    color: #5c5856;
    margin: 0;
}

@media (max-width: 991px) {
    .home-trust-pitch__copy {
        padding-right: 0;
        margin-bottom: 36px;
    }

    .home-trust-pitch__visual {
        padding-left: 0;
    }

    .home-trust-bento {
        margin-left: 0;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-svc-grid > [class*="col-"] {
        margin-bottom: 36px;
    }

    .home-journey-row::before {
        display: none;
    }

    .home-journey-step {
        margin-bottom: 16px;
    }

    .home-trust-pitch {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-trust-pitch__copy h2 {
        font-size: 28px;
    }

    .home-trust-bento {
        grid-template-columns: 1fr;
    }
}
