/* ============================================
   JME Glass Recycling - Homepage Styles
   ============================================ */

body[data-page="home"] {
    background: #ffffff;
}

.home-header .header-top {
    background: var(--green-primary);
    padding: 14px 0;
    color: rgba(255,255,255,0.95);
}

.home-header .header-top__inner {
    justify-content: flex-end;
}

.home-header .header-top__contact {
    gap: 20px;
    justify-content: flex-end;
    margin-left: auto;
}

.home-header .header-top__item {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.15;
}

.home-header .header-top__item svg {
    width: 13px;
    height: 13px;
    stroke: var(--white);
}

.home-header .header-main__inner {
    height: 92px;
    gap: 28px;
}

.site-logo--home,
.site-logo--footer {
    flex-direction: row;
    align-items: center;
}

.site-logo--home {
    color: var(--green-primary);
}

.site-logo--home .site-logo__image {
    height: 72px;
    max-width: 214px;
}

.home-header .site-nav {
    justify-content: center;
}

.home-header .nav__list {
    gap: 24px;
}

.home-header .nav__link {
    padding: 10px 0 15px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #0b0d0f;
}

.home-header .nav__link::after {
    height: 3px;
    bottom: 4px;
    left: 0;
    right: 0;
    border-radius: 999px;
}

.home-header .nav__arrow {
    width: 15px;
    height: 15px;
    stroke-width: 3;
    margin-left: 5px;
}

.home-header .header-cta .btn {
    min-width: 134px;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.1;
    min-height: 36px;
    align-items: center;
    justify-content: center;
}

.hero--home {
    min-height: 640px;
}

.hero--home .hero__image--placeholder {
    z-index: 0;
}

.hero--home .hero__bg {
    background: rgba(0,0,0,0.25);
}

.hero__content--home {
    max-width: 980px;
    padding: 138px 0 96px;
    margin: 0 auto;
    text-align: center;
}

.hero--home .hero__eyebrow {
    background: none;
    border: 0;
    color: rgba(255,255,255,0.92);
    padding: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 14px;
}

.hero--home h1 {
    font-size: clamp(2.28rem, 4vw, 3.55rem);
    line-height: 1.02;
    margin-bottom: 24px;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.hero--home .hero__actions {
    justify-content: center;
}

.hero--home .btn--primary {
    min-width: 132px;
    padding: 10px 22px;
    line-height: 1.1;
}

.home-surface {
    background: #eef8ef;
}

.home-about-band {
    padding-top: 52px;
    padding-bottom: 52px;
}

.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}

.home-about-copy h2 {
    display: inline-block;
    background: var(--green-primary);
    color: var(--white);
    font-size: clamp(1.7rem, 2.25vw, 2.25rem);
    line-height: 0.98;
    max-width: 17ch;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
}

.home-about-copy .lead {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: 34ch;
}

.home-about-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
    max-width: 42ch;
}

.home-carousel {
    position: relative;
}

.home-carousel--mobile {
    display: none;
}

.home-carousel__viewport {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-med);
}

.home-carousel__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.home-carousel__slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1024 / 683;
    object-fit: contain;
    background: var(--white);
}

.home-carousel__arrow {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.94);
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transform: translateY(-50%);
    border: 0;
    cursor: pointer;
    z-index: 2;
}

.home-carousel__arrow svg,
.home-partners__arrow svg,
.home-testimonial__arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-carousel__arrow--prev {
    left: 16px;
}

.home-carousel__arrow--next {
    right: 16px;
}

.home-carousel__dots,
.home-partners__dots,
.home-proof__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.home-carousel__dots {
    margin-top: 18px;
}

.home-carousel__dots button,
.home-partners__dots button,
.home-proof__dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(8,173,82,0.28);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.home-carousel__dots .is-active,
.home-partners__dots .is-active,
.home-proof__dots .is-active {
    background: var(--green-primary);
}

.home-carousel__arrow:disabled,
.home-partners__arrow:disabled,
.home-testimonial__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-partners-band {
    background: #1f252b;
    padding: 14px 0 12px;
    overflow: hidden;
}

.home-partners {
    padding-top: 0;
}

.home-partners__heading {
    text-align: center;
    color: var(--white);
    font-size: clamp(0.98rem, 1.15vw, 1.12rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.home-partners__slider {
    display: block;
    background: transparent;
    border-radius: 0;
    padding: 4px 0 0;
    box-shadow: none;
}

.home-partners__arrow {
    width: 34px;
    height: 34px;
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    border: 0;
    cursor: pointer;
}

.home-partners__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.home-partners__track {
    display: flex;
    gap: 26px;
    transition: none;
    will-change: transform;
}

.partner-pill {
    flex: 0 0 auto;
    min-width: 210px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 3px 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}

.partner-pill--slide {
    min-height: 0;
    padding: 3px 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.partner-pill--slide span {
    text-align: center;
    line-height: 1.25;
}

.partner-pill svg {
    width: 16px;
    height: 16px;
    stroke: none;
    fill: var(--green-primary);
    flex-shrink: 0;
}

.home-partners__dots {
    margin-top: 12px;
}

.home-services {
    padding-top: 24px;
    padding-bottom: 30px;
}

.home-services__heading {
    text-align: center;
    color: var(--green-primary);
    font-size: clamp(1.7rem, 2.35vw, 2.35rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.home-services__panel {
    background: var(--white);
    border-radius: 0;
    padding: 24px 24px 0;
}

.home-services__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.9fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.home-service-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-service-card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 236px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.home-service-card__media {
    position: absolute;
    inset: 0;
}

.home-service-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-service-card__image--flip {
    transform: scaleX(-1);
}

.home-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(8,173,82,0.94) 0%, rgba(8,173,82,0.78) 54%, rgba(8,173,82,0.32) 100%);
    pointer-events: none;
}

.home-service-stack--right .home-service-card::after {
    background: linear-gradient(270deg, rgba(8,173,82,0.94) 0%, rgba(8,173,82,0.78) 54%, rgba(8,173,82,0.32) 100%);
}

.home-service-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 18px 18px;
    background: transparent;
}

.home-service-card__content h3,
.home-service-card__content p {
    color: var(--white);
}

.home-service-card__content h3 {
    font-size: 1.02rem;
    line-height: 1.25;
    min-height: 2.8rem;
    margin-bottom: 8px;
    max-width: 75%;
}

.home-service-card__content p {
    font-weight: 500;
    line-height: 1.5;
    max-width: 75%;
    margin-bottom: 0;
}

.home-service-card__content .home-btn--white {
    margin-top: auto;
}

.home-btn--white {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
    justify-self: start;
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
    min-width: 104px;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.76rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.home-btn--white:hover {
    background: #eef8ef;
    color: var(--green-dark);
    border-color: #eef8ef;
}

@media (min-width: 1025px) {
    .home-service-stack--right .home-service-card__content {
        text-align: right;
    }

    .home-service-stack--right .home-service-card__content h3,
    .home-service-stack--right .home-service-card__content h3,
    .home-service-stack--right .home-service-card__content p {
        margin-left: auto;
    }

    .home-service-stack--right .home-service-card__content h3 {
        margin-left: auto;
    }

    .home-service-stack--right .home-btn--white {
        align-self: flex-end;
    }

}

.home-services__visual {
    position: relative;
    container-type: size;
    overflow: hidden;
    min-height: 744px;
    border-radius: 8px;
    box-shadow: var(--shadow-med);
}

.home-services__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.home-services__video.is-loaded {
    opacity: 1;
}

.home-services__video--embed {
    inset: auto;
    top: 50%;
    left: 50%;
    width: max(100cqw, 56.25cqh);
    height: max(177.78cqw, 100cqh);
    border: 0;
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.home-help {
    background: #1f252b;
    padding-top: 50px;
    padding-bottom: 44px;
}

.home-help__header {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-help__header h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.55rem);
    color: var(--white);
}

.home-help .section-label {
    color: rgba(255,255,255,0.62);
}

.home-help .divider {
    background: rgba(255,255,255,0.22);
}

.home-help__grid {
    gap: 22px;
}

.home-help-card {
    border-radius: 8px;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.home-help-card:hover {
    box-shadow: 0 8px 30px rgba(255,255,255,0.22);
    transform: translateY(-4px);
}

.home-help-card .card__body {
    min-height: 230px;
}

.home-process {
    background: var(--green-bg);
    padding-top: 48px;
    padding-bottom: 54px;
}

.home-process__header {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.home-process__header h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.55rem);
}

.home-process__header p:last-child {
    margin: 0 auto;
    max-width: 52ch;
}

.home-process__steps {
    max-width: 1120px;
    margin: 0 auto;
}

.home-process .step {
    align-items: center;
    text-align: center;
}

.home-process .step__content {
    max-width: 24ch;
    margin: 0 auto;
}

.home-call-banner {
    padding: 26px 0 56px;
    background: var(--white);
}

.home-call-banner__panel {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    padding: 26px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(8,173,82,0.88) 0%, rgba(5,130,62,0.95) 100%),
        url("/assets/images/green-heart-made-with-broken-glass-collected-from-beach.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: none;
}

.home-call-banner__text {
    position: relative;
    z-index: 1;
    font-size: clamp(1.18rem, 1.45vw, 1.55rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.home-call-banner__sub {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 16px;
}

.home-call-banner__numbers {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-call-banner .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 164px;
    padding: 9px 16px;
    border: 1px solid rgba(34,34,34,0.08);
    border-radius: 4px;
    justify-content: center;
    background: var(--white);
    color: #2f3235;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
}

.home-call-banner .call-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-call-banner .call-btn:hover {
    background: #fff4ef;
    border-color: rgba(34,34,34,0.08);
    color: #2f3235;
}

.home-facts {
    position: relative;
    padding-top: 76px;
}

.home-facts__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 42px;
    align-items: stretch;
    background: #1f252b;
    border-radius: 8px;
    overflow: visible;
    padding: 44px 42px 30px;
}

.home-facts__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 398px;
}

.home-facts__content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    color: var(--white);
    margin-bottom: 14px;
}

.home-facts__intro {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: none;
    margin-bottom: 22px;
}

.home-facts__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-fact-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.home-fact-item__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.home-fact-item p {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255,255,255,0.9);
}

.home-facts__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.home-facts__stat-number {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--green-primary);
}

.home-facts__stat-label {
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    max-width: 11ch;
}

.home-facts__image {
    position: relative;
    z-index: 1;
    min-height: 430px;
    border-radius: 8px;
    overflow: hidden;
    background: #f7faf8;
    margin-top: -86px;
    margin-bottom: 0;
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.home-facts-slideshow__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.9s ease-in-out, transform 3.2s ease;
}

.home-facts-slideshow__image.is-active {
    opacity: 1;
    transform: scale(1.055);
}

@media (prefers-reduced-motion: reduce) {
    .home-facts-slideshow__image {
        transition: opacity 0.2s ease;
        transform: none;
    }

    .home-facts-slideshow__image.is-active {
        transform: none;
    }
}

.home-proof {
    background: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-proof-strip {
    background: var(--white);
    padding: 40px 0;
}

.home-proof__stars {
    display: flex;
    justify-content: center;
}

.home-proof__stars .stars {
    color: var(--green-primary);
}

.home-proof__heading {
    text-align: center;
    display: table;
    background: var(--green-primary);
    color: var(--white);
    font-size: clamp(1.9rem, 2.7vw, 2.55rem);
    line-height: 1.05;
    margin: 0 auto 24px;
    padding: 12px 18px;
    border-radius: 6px;
}

.home-testimonial {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
    row-gap: 8px;
}

.home-testimonial__viewport {
    overflow: hidden;
}

.home-testimonial__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-testimonial__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.home-testimonial__card {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 0;
}

.home-testimonial .testimonial__text {
    max-width: none;
    margin: 0;
    padding: 18px 28px;
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    border-left: 0;
    font-size: 0.92rem;
    font-style: normal;
    line-height: 1.5;
    color: var(--text-dark);
    text-align: center;
    position: relative;
}

.home-testimonial .testimonial__text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 22px;
    background: var(--white);
    transform: translateX(-50%) rotate(45deg);
}

.home-testimonial__arrow {
    color: var(--green-primary);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
    margin-bottom: 6px;
}

.home-google-review__badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
}

.home-google-review__author,
.home-google-review__source {
    margin: 0;
}

.home-google-review__author {
    font-weight: 700;
    color: var(--text-dark);
}

.home-google-review__source {
    color: var(--green-primary);
}

.home-proof__dots {
    grid-column: 1 / -1;
    margin-top: 0;
}

.home-proof-marquee {
    display: block;
    margin-top: 0;
}

.home-proof-marquee__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.home-proof-marquee__track {
    display: flex;
    gap: 28px;
    width: 100%;
    transition: none;
    will-change: transform;
}

.home-proof-marquee__arrow {
    width: 34px;
    height: 34px;
    border: 0;
    background: none;
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.home-proof-marquee__arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-proof-marquee__dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.home-proof-marquee__dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(8,173,82,0.28);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.home-proof-marquee__dots .is-active {
    background: var(--green-primary);
}

.home-proof-card {
    position: relative;
    flex: 0 0 clamp(230px, 24vw, 300px);
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1.9 / 1;
    box-shadow: var(--shadow-light);
}

.home-proof-card .placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    background-size: cover;
    background-position: center;
}

.home-proof-card .home-proof-card__image--top {
    background-position: center 25%;
}

.home-proof-card .placeholder-img span {
    display: none;
}

.home-proof-card h3 {
    position: absolute;
    inset: 0;
    margin: 0;
    color: var(--white);
    font-size: 1.12rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: linear-gradient(180deg, rgba(10,32,22,0.36) 0%, rgba(10,32,22,0.72) 100%);
}

.home-footer {
    background: #1f252b;
    color: var(--white);
    padding: 54px 0 46px;
}

.home-footer__main {
    grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.95fr) minmax(220px, 1fr);
    gap: 48px;
    padding-bottom: 0;
    border-bottom: 0;
    align-items: start;
}

.home-footer__bottom {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.34);
    text-align: left;
}

.home-footer__bottom p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    line-height: 1.5;
}

.home-footer__bottom a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.site-logo--footer {
    color: var(--white);
    margin-bottom: 20px;
}

.site-logo--footer .site-logo__image {
    height: auto;
    width: min(220px, 100%);
    max-width: 220px;
    mix-blend-mode: normal;
}

.home-footer .footer-brand__tagline {
    color: rgba(255,255,255,0.96);
    max-width: 31ch;
    font-size: 0.82rem;
    line-height: 1.6;
}

.home-footer .footer-col h4 {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
}

.home-footer__nav {
    display: grid;
    gap: 22px;
    align-content: start;
}

.home-footer__nav-block {
    display: grid;
    gap: 10px;
}

.home-footer .footer-links {
    gap: 8px;
}

.home-footer .footer-links a,
.home-footer .footer-contact-item,
.home-footer__address {
    color: rgba(255,255,255,0.96);
    font-size: 0.82rem;
    line-height: 1.55;
}

.home-footer .footer-links a {
    position: relative;
    display: inline-flex;
    padding-left: 15px;
}

.home-footer__policy-link {
    display: inline-flex;
    margin-top: 14px;
    color: rgba(255,255,255,0.96);
    font-size: 0.82rem;
    font-weight: 600;
}

.home-footer__policy-link:hover,
.home-footer__policy-link:focus-visible {
    color: var(--white);
}

.home-footer .footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-right: 1.6px solid rgba(255,255,255,0.84);
    border-bottom: 1.6px solid rgba(255,255,255,0.84);
    transform: translateY(-50%) rotate(-45deg);
}

.home-footer .footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.home-footer .footer-contact-item:hover {
    color: var(--white);
}

.home-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.home-footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.72);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-footer__social span {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-transform: lowercase;
}

.home-footer__info {
    display: grid;
    gap: 22px;
    align-content: start;
}

.home-footer__info-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
}

.home-footer__info-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.home-footer__info-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-footer__info-block {
    display: grid;
    gap: 6px;
}

.home-footer .footer-contact-item {
    display: block;
}

.home-footer__address {
    max-width: 20ch;
    margin: 0;
    line-height: 1.55;
}

.placeholder-img--hero {
    background:
        linear-gradient(140deg, #2b3137 0%, #cf7d16 35%, #f0a52d 58%, #23272b 100%);
    color: rgba(255,255,255,0.9);
}

.placeholder-img--photo {
    background:
        linear-gradient(135deg, #cad8c9 0%, #a8c7ad 45%, #dfe8f1 100%);
    color: var(--green-dark);
}

.placeholder-img--service {
    background:
        linear-gradient(135deg, #91b598 0%, #74a97c 45%, #c4d6c7 100%);
    color: rgba(255,255,255,0.92);
}

.placeholder-img--glass {
    background:
        linear-gradient(180deg, #c7d9df 0%, #9ebfcb 45%, #d6ecef 100%);
    color: var(--green-dark);
}

.placeholder-img--proof {
    background:
        linear-gradient(135deg, #648598 0%, #4d6474 50%, #7ea19d 100%);
    color: rgba(255,255,255,0.96);
}

.placeholder-img--news {
    background:
        linear-gradient(135deg, #f1f1f1 0%, #dfeac8 45%, #ffffff 100%);
    color: var(--green-dark);
}

@media (max-width: 1180px) {
    .home-services__layout {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr) minmax(0, 1fr);
        gap: 16px;
    }

    .home-services__visual {
        min-height: 744px;
    }
}

@media (max-width: 1024px) {
    .home-header .header-top__contact {
        gap: 16px;
    }

    .home-header .header-main__inner {
        height: 88px;
        gap: 18px;
    }

    .site-logo--home .site-logo__image {
        height: 64px;
        max-width: 190px;
    }

    .home-header .nav__list {
        gap: 16px;
    }

    .home-header .nav__link {
        font-size: 0.84rem;
    }

    .home-header .header-cta .btn {
        min-width: 124px;
        padding: 11px 15px;
        font-size: 0.78rem;
    }

    .home-about-grid,
    .home-facts__panel,
    .home-services__layout {
        grid-template-columns: 1fr;
    }

    .home-services__panel {
        padding-left: 0;
        padding-right: 0;
    }

    .home-facts__image {
        order: -1;
        min-height: 360px;
        margin-top: -64px;
        margin-bottom: 0;
    }

    .home-facts__content {
        min-height: 0;
        gap: 24px;
    }

    .home-services__visual {
        min-height: 340px;
        order: -1;
    }

    .home-proof-card {
        flex-basis: calc((100% - 28px) / 2);
    }

    .partner-pill {
        flex-basis: calc((100% - 8px) / 2);
    }

    .home-footer__main {
        grid-template-columns: 1.2fr 1fr;
        gap: 36px;
    }

    .home-footer__info {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 30px;
    }
}

@media (max-width: 768px) {
    .home-header .header-top__inner,
    .home-header .header-top__contact {
        justify-content: center;
    }

    .home-header .header-top__contact {
        margin-left: 0;
    }

    .home-header .header-main__inner {
        height: 84px;
        gap: 20px;
    }

    .home-header .site-nav {
        top: 84px;
        max-height: calc(100vh - 84px);
    }

    .site-logo--home .site-logo__image {
        height: 54px;
        max-width: 146px;
    }

    .home-header .nav__list {
        gap: 0;
    }

    .home-header .nav__link {
        padding: 14px 8px;
        font-size: 1rem;
        font-weight: 700;
    }

    .hero--home {
        min-height: 620px;
    }

    .hero__content--home {
        padding: 120px 0 88px;
    }

    .hero--home .hero__actions {
        align-items: center;
    }

    .hero--home h1 {
        font-size: clamp(1.85rem, 7.2vw, 2.7rem);
    }

    .home-about-copy h2 {
        max-width: 100%;
        font-size: clamp(1.45rem, 5.6vw, 1.85rem);
    }

    .home-partners__track {
        gap: 16px;
    }

    .partner-pill {
        min-width: 175px;
        justify-content: center;
    }

    .home-services__panel,
    .home-facts__panel {
        padding: 20px 0;
    }

    .home-facts {
        padding-top: 54px;
    }

    .home-facts__panel {
        padding-top: 0;
        padding-bottom: 24px;
    }

    .home-facts__image {
        min-height: 300px;
        margin-left: 0;
        margin-right: 0;
    }

    .home-service-card {
        min-height: 240px;
    }

    .home-service-card__content {
        padding: 22px;
    }

    .home-call-banner__panel {
        padding: 24px 18px 22px;
    }

    .home-call-banner__sub {
        font-size: 0.86rem;
    }

    .home-call-banner__numbers {
        flex-direction: column;
    }

    .home-facts__stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 4px;
    }

    .home-testimonial {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-testimonial__arrow {
        display: none;
    }

    .home-proof-marquee {
        grid-template-columns: 1fr;
    }

    .home-proof-marquee__arrow {
        display: none;
    }

    .home-proof-card {
        flex-basis: min(76vw, 280px);
    }

    .home-footer__main,
    .home-footer__info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-header .header-top__contact {
        gap: 10px;
    }

    .home-header .header-top__item {
        font-size: 0.72rem;
    }

    .hero__content--home {
        padding: 88px 0 64px;
    }

    .hero--home {
        min-height: 500px;
    }

    .home-carousel__arrow {
        width: 36px;
        height: 36px;
    }

    .home-call-banner .call-btn {
        width: 100%;
        justify-content: center;
    }

    .home-stats {
        padding: 22px 0;
    }

    .home-stats__item {
        padding: 14px 12px;
    }

}

.home-partners.js-marquee .partner-pill {
    flex-basis: auto;
}

.home-proof-marquee.js-marquee .home-proof-card {
    flex-basis: clamp(230px, 24vw, 300px);
}

@media (max-width: 768px) {
    .home-proof-marquee.js-marquee .home-proof-card {
        flex-basis: min(76vw, 280px);
    }
}

/* --- About band: solid green background overrides --- */
.home-about-band {
    background: var(--green-primary);
}

.home-about-band .home-about-copy h2 {
    background: none;
    color: var(--white);
    padding: 0;
    border-radius: 0;
    max-width: none;
}

.home-about-band .home-about-copy .lead {
    color: var(--white);
}

.home-about-band .home-about-copy p {
    color: rgba(255, 255, 255, 0.92);
}

.home-about-band .home-carousel__dots button {
    background: rgba(255, 255, 255, 0.35);
}

.home-about-band .home-carousel__dots .is-active {
    background: var(--white);
}

/* --- Testimonials band: white background --- */
.home-proof .home-proof__stars .stars {
    color: var(--green-primary);
}

.home-proof .home-proof__heading {
    background: none;
    color: #1f252b;
    padding: 0;
    border-radius: 0;
}

.home-proof .home-testimonial__arrow {
    color: var(--green-primary);
}

.home-proof .home-proof__dots button {
    background: rgba(8,173,82,0.28);
}

.home-proof .home-proof__dots .is-active {
    background: var(--green-primary);
}

.home-proof .home-google-review__author {
    color: var(--text-dark);
}

.home-proof .home-google-review__source {
    color: var(--green-primary);
}

.home-proof .home-testimonial .testimonial__text {
    background: var(--green-primary);
    color: var(--white);
    font-weight: 700;
}

.home-proof .home-testimonial .testimonial__text::after {
    background: var(--green-primary);
    bottom: -7px;
}

/* ============================================
   Stats Bar
   ============================================ */

.home-stats {
    background: #1f252b;
    padding: 28px 0;
    border-top: 3px solid var(--green-primary);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.home-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.2s ease;
}

.home-stats__item:hover {
    transform: scale(1.06);
}

.home-stats__item:last-child {
    border-right: 0;
}

.home-stats__number {
    font-size: clamp(1.85rem, 2.8vw, 2.55rem);
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1;
}

.home-stats__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.72);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

    .home-stats__item:nth-child(2) {
        border-right: 0;
    }

    .home-stats__item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.12);
    }
}

/* ============================================
   About band: centred text (carousel removed)
   ============================================ */

.home-about-copy--centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-about-copy--centered .lead,
.home-about-copy--centered p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer: Contact bar
   ============================================ */

.home-footer {
    padding-top: 38px;
}

.home-footer__contact-bar {
    background: var(--green-primary);
    border-radius: 10px;
    padding: 28px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.home-footer__contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.home-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.home-footer__contact-item:first-child {
    padding-left: 0;
}

.home-footer__contact-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.home-footer__contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-footer__contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-footer__contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.home-footer__contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1;
}

.home-footer__contact-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
    display: block;
    text-decoration: none;
}

a.home-footer__contact-value:hover {
    color: rgba(255,255,255,0.82);
}

/* ============================================
   Footer: Restructured body columns
   ============================================ */

.home-footer__main {
    padding-top: 48px;
    grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.95fr) minmax(200px, 0.9fr) !important;
}

.home-footer__sitemap {
    display: grid;
    gap: 14px;
    align-content: start;
}

.home-footer__sitemap h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.home-footer__get-in-touch {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.home-footer__get-in-touch h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.home-footer__get-in-touch p {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    max-width: 26ch;
}

.home-footer__cta-btn {
    margin-top: 4px;
    font-size: 0.84rem;
}

@media (max-width: 900px) {
    .home-footer__contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-footer__contact-item {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .home-footer__contact-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .home-footer__main {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 36px;
    }

    .home-footer__get-in-touch {
        grid-column: 1 / -1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-about-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
        gap: 32px;
        align-items: center;
    }

    .home-about-copy h2 {
        font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    }

    .home-about-copy p {
        font-size: 0.9rem;
    }

    .home-carousel__slide img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .home-services__layout {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 0.7fr) minmax(0, 1fr);
        gap: 14px;
    }

    .home-services__visual {
        order: 0;
        min-height: 680px;
    }

    .home-service-stack--right .home-service-card__content {
        text-align: right;
    }

    .home-service-stack--right .home-service-card__content h3,
    .home-service-stack--right .home-service-card__content p {
        margin-left: auto;
    }

    .home-service-stack--right .home-btn--white {
        align-self: flex-end;
    }

    .home-service-card {
        min-height: 214px;
    }

    .home-service-card__content {
        padding: 22px 16px 16px;
    }

    .home-service-card__content h3 {
        font-size: 0.94rem;
    }

    .home-btn--white {
        min-width: 96px;
        padding: 8px 12px;
    }

    .home-call-banner__numbers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(760px, 100%);
    }

    .home-call-banner .call-btn {
        width: 100%;
        min-width: 0;
    }

    .home-help__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-footer__contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 28px;
    }

    .home-footer__contact-item {
        padding: 18px 0 0;
        border-right: 0;
        border-bottom: 0;
    }

    .home-footer__contact-item:first-child {
        grid-column: 1 / -1;
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .home-footer__contact-item:last-child {
        padding-top: 18px;
    }

    .home-footer__main {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 40px 48px;
    }

    .home-footer__brand {
        order: 1;
    }

    .home-footer__get-in-touch {
        order: 2;
        grid-column: auto;
    }

    .home-footer__nav {
        order: 3;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .home-footer__main {
        grid-template-columns: 1fr !important;
        padding-top: 36px;
    }

    .home-footer__get-in-touch {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .home-footer {
        padding-top: 28px;
    }

    .home-footer__contact-bar {
        border-radius: 8px;
        padding: 18px 20px;
    }

    .home-footer__contact-item {
        gap: 14px;
        padding: 14px 0;
    }

    .home-footer__contact-item:last-child {
        padding-bottom: 0;
    }

    .home-footer__contact-icon {
        width: 42px;
        height: 42px;
    }

    .home-footer__bottom {
        margin-top: 32px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .home-header .header-main__inner {
        gap: 12px;
    }

    .mobile-call-toggle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--green-primary);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    .home-header .nav-toggle {
        margin-left: 0;
    }

    .mobile-call-toggle svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .home-carousel--desktop {
        display: none;
    }

    .home-carousel--mobile {
        display: block;
        margin: 22px 0 20px;
    }

    .home-about-copy {
        text-align: left;
    }

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

    .home-services__visual {
        display: block;
        order: 0;
        min-height: 360px;
    }

    .home-service-card::after {
        background: linear-gradient(90deg, rgba(8,173,82,0.94) 0%, rgba(8,173,82,0.78) 54%, rgba(8,173,82,0.32) 100%);
    }

    .home-service-card__content h3,
    .home-service-card__content p {
        max-width: 72%;
    }

    .home-service-stack--right .home-service-card__content {
        text-align: right;
    }

    .home-service-stack--right .home-service-card__content h3,
    .home-service-stack--right .home-service-card__content p {
        margin-left: auto;
    }

    .home-service-stack--right .home-btn--white {
        align-self: flex-end;
    }

    .home-service-stack--right .home-service-card::after {
        background: linear-gradient(270deg, rgba(8,173,82,0.94) 0%, rgba(8,173,82,0.78) 54%, rgba(8,173,82,0.32) 100%);
    }

    .home-call-banner__numbers {
        flex-direction: row;
        gap: 14px;
    }

    .home-call-banner .call-btn {
        width: 52px;
        min-width: 0;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .home-call-banner .call-btn span {
        display: none;
    }

    .home-call-banner .call-btn svg {
        width: 20px;
        height: 20px;
    }

    .home-call-banner .call-btn:nth-child(3) {
        display: none;
    }

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

@media (min-width: 601px) and (max-width: 768px) {
    .home-about-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.75fr);
        gap: 26px;
        align-items: center;
    }

    .home-about-copy h2 {
        font-size: clamp(1.42rem, 3vw, 1.72rem);
    }

    .home-about-copy p {
        font-size: 0.88rem;
    }

    .home-carousel__slide img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .home-services__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-services__visual {
        display: none;
    }

    .home-service-stack--right .home-service-card__content {
        text-align: right;
    }

    .home-service-stack--right .home-service-card__content p {
        margin-left: auto;
    }

    .home-service-stack--right .home-btn--white {
        align-self: flex-end;
    }

    .home-service-card {
        min-height: 250px;
    }

    .home-service-card__content {
        padding: 22px 18px 18px;
    }

    .home-service-card__content h3 {
        font-size: 1.02rem;
        line-height: 1.25;
        min-height: 2.8rem;
    }

    .home-btn--white {
        min-width: 104px;
        padding: 8px 15px;
        font-size: 0.76rem;
    }

    .home-call-banner__numbers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .home-call-banner .call-btn {
        width: 100%;
        min-width: 0;
    }

    .home-help__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .home-footer__contact-item {
        padding: 16px 0 0;
        border-right: 0;
        border-bottom: 0;
    }

    .home-footer__contact-item:first-child {
        grid-column: 1 / -1;
        padding-top: 0;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .home-footer__contact-item:last-child {
        padding-top: 16px;
    }

    .home-footer__main {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 36px 38px;
    }

    .home-footer__brand {
        order: 1;
    }

    .home-footer__get-in-touch {
        order: 2;
        grid-column: auto;
    }

    .home-footer__nav {
        order: 3;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}
