/* --- home-above-fold-interactions.css (deferred — hover/transition only) --- */
.home-banner-slider__cta {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-banner-slider__cta:hover {
    background: var(--bb-banner-accent-hover);
    transform: translateY(-1px);
}

.home-features__card {
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.home-features__card:hover {
    border-color: rgb(235 125 30 / 0.35);
    box-shadow: 0 12px 28px rgb(15 23 42 / 0.14);
    transform: translateY(-2px);
}

.home-product-tabs__tab {
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-product-tabs__tab:hover,
.home-product-tabs__tab:focus-visible {
    color: var(--bb-tabs-accent);
    outline: none;
}

.bb-product-card,
.home-product-tabs__card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bb-product-card:hover,
.home-product-tabs__card:hover {
    border-color: rgb(235 125 30 / 0.45);
    box-shadow: 0 8px 24px rgb(15 23 42 / 0.08);
}

.bb-product-card__name a:hover,
.home-product-tabs__name a:hover {
    color: var(--bb-card-accent);
}

.bb-product-card__qty-btn {
    transition: background-color 0.15s ease;
}

.bb-product-card__qty-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.bb-product-card__cta,
.home-product-tabs__cta {
    transition: background-color 0.2s ease;
}

.bb-product-card__cta:hover,
.home-product-tabs__cta:hover {
    background: #d96d12;
    color: #ffffff;
}

.home-featured-blogs__view-all,
.home-featured-blogs__card-title a,
.home-featured-blogs__read-more,
.home-featured-blogs__card {
    transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-featured-blogs__view-all:hover,
.home-featured-blogs__card-title a:hover,
.home-featured-blogs__read-more:hover {
    color: var(--bb-blogs-accent);
}

.home-featured-blogs__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* --- home-featured-products.css --- */
/**
 * Homepage — Featured Product section (dynamic category products)
 */

.home-featured-products {
    --bb-featured-container-max: 96rem;
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.home-featured-products__container {
    width: 100%;
    max-width: var(--bb-featured-container-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
    box-sizing: border-box;
}

.home-featured-products__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    text-align: center;
}

.home-featured-products__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 1279px) {
    .home-featured-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .home-featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .home-featured-products__grid {
        grid-template-columns: 1fr;
        max-width: 20rem;
        margin-inline: auto;
    }
}

/* --- home-industries.css --- */
/**
 * Homepage — Industries We Serve
 */

.home-industries {
    --bb-industries-accent: #eb7d1e;
    --bb-industries-container-max: 96rem;
    --bb-industries-bg: url("https://bulkdevices.co.uk/media/wysiwyg/industry-serve-bg.webp");

    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background-color: #1e293b;
    background-image: var(--bb-industries-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.home-industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgb(15 23 42 / 0.82) 0%,
        rgb(15 23 42 / 0.75) 100%
    );
    pointer-events: none;
}

.home-industries__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--bb-industries-container-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
    box-sizing: border-box;
}

.home-industries__header {
    max-width: 42rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.home-industries__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.home-industries__intro {
    margin: 0;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.6;
    color: rgb(255 255 255 / 0.88);
}

.home-industries__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-industries__item {
    margin: 0;
    padding: 0;
}

.home-industries__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 1.5rem 1.25rem;
    /* background: rgb(255 255 255 / 0.97);
    border: 1px solid rgb(255 255 255 / 0.2); */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-industries__card:hover {
    transform: translateY(-4px);
    border-color: rgb(235 125 30 / 0.45);
    box-shadow: 0 16px 36px rgb(0 0 0 / 0.28);
}

.home-industries__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.home-industries__icon img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 4rem;
    object-fit: contain;
}

.home-industries__body {
    min-width: 0;
}

.home-industries__name {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.home-industries__card:hover .home-industries__name {
    color: var(--bb-industries-accent);
}

.home-industries__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #fff;
}

@media (max-width: 991px) {
    .home-industries__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .home-industries {
        padding: 2rem 0;
    }

    .home-industries__header {
        margin-bottom: 1.5rem;
    }

    .home-industries__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-industries__card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }

    .home-industries__icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .home-industries__icon img {
        max-height: 3rem;
    }

    .home-industries__name {
        font-size: 1rem;
    }

    .home-industries__text {
        font-size: 0.8125rem;
    }
}

/* --- home-brands.css --- */
/**
 * Homepage — Powered By The World's Leading IT Brands
 */

.home-brands {
    --bb-brands-text: #111827;
    --bb-brands-divider: #d1d5db;
    --bb-brands-container-max: 96rem;

    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.home-brands__container {
    width: 100%;
    max-width: var(--bb-brands-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-brands__header {
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
}

.home-brands__title {
    margin: 0 0 1rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--bb-brands-text);
    letter-spacing: -0.01em;
}

.home-brands__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: var(--bb-brands-divider);
}

.home-brands__rows {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.home-brands__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-brands__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}

.home-brands__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.home-brands__link:focus-visible {
    outline: 2px solid #eb7d1e;
    outline-offset: 3px;
    border-radius: 0.25rem;
}

.home-brands__logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 2.25rem;
    max-width: 7.5rem;
    object-fit: contain;
    filter: none;
}

/* .home-brands__row--featured .home-brands__logo img {
    max-height: 3rem;
    max-width: 9.5rem;
} */

@media (max-width: 767px) {
    .home-brands__row {
        gap: 1.25rem 1.75rem;
    }

    .home-brands__logo img {
        max-height: 1.875rem;
        max-width: 6.5rem;
    }

    /* .home-brands__row--featured .home-brands__logo img {
        max-height: 2.5rem;
        max-width: 8rem;
    } */
}

@media (max-width: 479px) {
    .home-brands__row {
        gap: 1rem 1.25rem;
    }

    .home-brands__logo {
        flex-basis: calc(33.333% - 1rem);
    }

    /* .home-brands__row--featured .home-brands__logo {
        flex-basis: calc(50% - 0.75rem);
    } */
}

/* --- home-top-categories.css --- */
/**
 * Homepage — Top Categories (8 cards, 4×2 grid, image left / links right)
 */

.home-top-categories {
    --bb-topcat-accent: #eb7d1e;
    --bb-topcat-container-max: 96rem;
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.home-top-categories__container {
    width: 100%;
    max-width: var(--bb-topcat-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-top-categories__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    text-align: center;
}

.home-top-categories__panel {
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
    box-sizing: border-box;
}

.home-top-categories__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-top-categories__item {
    margin: 0;
    padding: 0;
}

.home-top-categories__card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    height: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-top-categories__card:hover {
    border-color: rgb(235 125 30 / 0.4);
    box-shadow: 0 6px 20px rgb(15 23 42 / 0.08);
}

.home-top-categories__media {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
}

.home-top-categories__media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 5.5rem;
    max-height: 5.5rem;
    object-fit: contain;
}

.home-top-categories__body {
    flex: 1;
    min-width: 0;
}

.home-top-categories__name {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1f2937;
}

.home-top-categories__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-top-categories__links li {
    margin: 0;
    padding: 0;
}

.home-top-categories__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.2rem 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.home-top-categories__link::after {
    content: "";
    flex-shrink: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.55;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.home-top-categories__link:hover {
    color: var(--bb-topcat-accent);
    padding-left: 0.15rem;
}

.home-top-categories__link:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(1px, -1px);
}

.home-top-categories__viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bb-topcat-accent);
    text-decoration: none;
}

.home-top-categories__viewall::after {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.home-top-categories__viewall:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .home-top-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .home-top-categories__media {
        width: 4.5rem;
        height: 4.5rem;
    }

    .home-top-categories__media img {
        max-width: 4.5rem;
        max-height: 4.5rem;
    }
}

/* --- home-whyus.css --- */
/**
 * Homepage — Why Bulk Devices
 */

.home-whyus {
    --bb-whyus-accent: #eb7d1e;
    --bb-whyus-accent-hover: #c96a18;
    --bb-whyus-container-max: 96rem;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #f8f9fb;
}

.home-whyus__container {
    width: 100%;
    max-width: var(--bb-whyus-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-whyus__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.home-whyus__content {
    min-width: 0;
}

.home-whyus__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

.home-whyus__text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}

.home-whyus__text:last-of-type {
    margin-bottom: 1rem;
}

.home-whyus__more {
    margin-bottom: 0.25rem;
}

.home-whyus__more .home-whyus__text:last-child {
    margin-bottom: 0;
}

.home-whyus__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--bb-whyus-accent);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-whyus__toggle::after {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -0.15rem;
}

.home-whyus__toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    margin-top: 0.15rem;
}

.home-whyus__toggle:focus-visible {
    outline: 2px solid var(--bb-whyus-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.home-whyus__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.home-whyus__list li {
    margin: 0;
    padding: 0;
}

.home-whyus__list-item {
    position: relative;
    margin: 0;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1f2937;
}

.home-whyus__list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: rgb(235 125 30 / 0.15);
    border: 2px solid var(--bb-whyus-accent);
    box-sizing: border-box;
}

.home-whyus__list-item::after {
    content: "";
    position: absolute;
    left: 0.3rem;
    top: 0.48rem;
    width: 0.35rem;
    height: 0.6rem;
    border-right: 2px solid var(--bb-whyus-accent);
    border-bottom: 2px solid var(--bb-whyus-accent);
    transform: rotate(45deg);
}

.home-whyus__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
    background: var(--bb-whyus-accent);
    border: 1px solid var(--bb-whyus-accent);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgb(235 125 30 / 0.35);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-whyus__cta:hover {
    background: var(--bb-whyus-accent-hover);
    border-color: var(--bb-whyus-accent-hover);
    transform: translateY(-1px);
}

.home-whyus__media {
    min-width: 0;
}

.home-whyus__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .home-whyus{
        content-visibility: hidden;
        contain-intrinsic-size: auto 0px;
        padding: 0;
    }
    .home-whyus__layout {
        grid-template-columns: 1fr;
    }

    .home-whyus__media {
        order: -1;
        max-width: 32rem;
        margin-inline: auto;
    }
}

@media (max-width: 576px) {
    .home-whyus {
        padding: 2rem 0;
    }

    .home-whyus__title {
        font-size: 1.375rem;
    }

    .home-whyus__text,
    .home-whyus__list-item {
        font-size: 0.875rem;
    }
}

/* --- home-featured-blogs.css --- */
/**
 * Featured Blogs — BulkDevices homepage section
 */

.home-featured-blogs {
    --bb-blogs-accent: #eb7d1e;
    --bb-blogs-text: #111827;
    --bb-blogs-muted: #6b7280;
    --bb-blogs-surface: #ffffff;
    --bb-blogs-page-bg: #f5f5f5;
    --bb-blogs-border: #e5e7eb;
    --bb-blogs-container-max: 96rem;
    --bb-blogs-radius: 10px;
    --bb-blogs-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    padding: clamp(2.5rem, 5vw, 4rem) 0;
    /* background: var(--bb-blogs-page-bg); */
}

.home-featured-blogs__container {
    width: 100%;
    max-width: var(--bb-blogs-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-featured-blogs__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.home-featured-blogs__title {
    flex: 1;
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bb-blogs-text);
    text-align: center;
    letter-spacing: -0.01em;
}

.home-featured-blogs__view-all {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bb-blogs-text);
}

.home-featured-blogs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.home-featured-blogs__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bb-blogs-surface);
    border: 1px solid var(--bb-blogs-border);
    border-radius: var(--bb-blogs-radius);
    box-shadow: var(--bb-blogs-shadow);
    overflow: hidden;
}

.home-featured-blogs__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

.home-featured-blogs__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-featured-blogs__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem 1.5rem;
}

.home-featured-blogs__card-title {
    margin: 0 0 0.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--bb-blogs-text);
}

.home-featured-blogs__card-title a {
    color: inherit;
    text-decoration: none;
}

.home-featured-blogs__excerpt {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--bb-blogs-muted);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-featured-blogs__read-more {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: var(--bb-blogs-text);
}

@media (min-width: 40rem) {
    .home-featured-blogs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .home-featured-blogs__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
    }

}
@media (max-width: 991px) {
    .home-featured-blogs {
        content-visibility: hidden;
        contain-intrinsic-size: auto 0px;
        padding: 0;
    }
}
@media (max-width: 639px) {
    .home-featured-blogs__header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .home-featured-blogs__view-all {
        align-self: center;
    }

}

/* --- home-get-started.css --- */
/**
 * Homepage — Get Started Today contact form
 */

.home-get-started {
    --bb-get-started-accent: #eb7d1e;
    --bb-get-started-accent-hover: #c96a18;
    --bb-get-started-text: #111827;
    --bb-get-started-text-secondary: #374151;
    --bb-get-started-muted: #6b7280;
    --bb-get-started-field-bg: #f5f5f5;
    --bb-get-started-container-max: 96rem;
    position: relative;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.home-get-started::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    transform: translateX(-50%);
    background: #ffffff;
    pointer-events: none;
}

.home-get-started__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--bb-get-started-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-get-started__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

@media (min-width: 64rem) {
    .home-get-started__layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
        gap: clamp(2.5rem, 5vw, 4.5rem);
    }
}

.home-get-started__header {
    text-align: left;
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.home-get-started__title {
    margin: 0 0 0.875rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bb-get-started-text);
    letter-spacing: -0.01em;
}

.home-get-started__intro {
    margin: 0;
    max-width: 28rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--bb-get-started-muted);
}

.home-get-started__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.home-get-started__contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.home-get-started__contact-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--bb-get-started-accent);
}

.home-get-started__contact-icon svg,
.home-get-started__contact-icon img {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
}

.home-get-started__contact-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.125rem;
}

.home-get-started__contact-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bb-get-started-text);
}

.home-get-started__contact-phone {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--bb-get-started-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-get-started__contact-phone:hover {
    color: var(--bb-get-started-accent);
}

.home-get-started__contact-note {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--bb-get-started-muted);
}

.home-get-started__form {
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-get-started__fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.home-get-started__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.home-get-started__field--full {
    grid-column: 1 / -1;
}

.home-get-started__input,
.home-get-started__textarea {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.9375rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--bb-get-started-field-bg);
    color: var(--bb-get-started-text);
    font-size: 0.9375rem;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-get-started__input::placeholder,
.home-get-started__textarea::placeholder {
    color: #4b5563;
    font-style: normal;
    opacity: 1;
}

.home-get-started__input:focus,
.home-get-started__textarea:focus {
    border-color: var(--bb-get-started-accent);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgb(235 125 30 / 0.12);
}

.field.required .home-get-started__input:invalid,
.field.required .home-get-started__textarea:invalid {
    border-color: #ef4444;
}

.home-get-started__textarea {
    min-height: 9.5rem;
    resize: vertical;
}

.home-get-started__actions {
    margin-top: 1.25rem;
    text-align: left;
}

.home-get-started__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    min-height: 2.875rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--bb-get-started-accent);
    border-radius: 4px;
    background: var(--bb-get-started-accent);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.home-get-started__submit:hover {
    background: var(--bb-get-started-accent-hover);
    border-color: var(--bb-get-started-accent-hover);
    transform: translateY(-1px);
}

.home-get-started__submit:active {
    transform: translateY(0);
}

@media (max-width: 575px) {
    .home-get-started__grid {
        grid-template-columns: 1fr;
    }

    .home-get-started__submit {
        width: 100%;
    }
}

/* --- home-seo-content.css --- */
/**
 * Homepage — SEO / read more content block
 */

.home-seo-content {
    --bb-seo-accent: #eb7d1e;
    --bb-seo-container-max: 96rem;
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.home-seo-content__container {
    width: 100%;
    max-width: var(--bb-seo-container-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
    box-sizing: border-box;
}

.home-seo-content__inner {
    max-width: 56rem;
    margin-inline: auto;
}

.home-seo-content__title {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

.home-seo-content__lead {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
}

.home-seo-content__more {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed #e5e7eb;
}

.home-seo-content__subtitle {
    margin: 1.25rem 0 0.75rem;
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1f2937;
}

.home-seo-content__subtitle:first-child {
    margin-top: 0;
}

.home-seo-content__text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
}

.home-seo-content__text:last-child {
    margin-bottom: 0;
}

.home-seo-content__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--bb-seo-accent);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-seo-content__toggle:hover {
    color: #c96a18;
}

.home-seo-content__toggle::after {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -0.15rem;
}

.home-seo-content__toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    margin-top: 0.15rem;
}

.home-seo-content__toggle:focus-visible {
    outline: 2px solid var(--bb-seo-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --- home-customers-review.css --- */
/**
 * Customers Review — BulkDevices homepage section
 */

.home-customers-review {
    --bb-reviews-accent: #00b67a;
    --bb-reviews-text: #111827;
    --bb-reviews-muted: #6b7280;
    --bb-reviews-surface: #ffffff;
    /* --bb-reviews-page-bg: #f5f5f5; */
    --bb-reviews-border: #e5e7eb;
    --bb-reviews-divider: #d1d5db;
    --bb-reviews-container-max: 96rem;
    --bb-reviews-radius: 10px;
    --bb-reviews-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);

    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--bb-reviews-page-bg);
}

.home-customers-review__container {
    width: 100%;
    max-width: var(--bb-reviews-container-max);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.home-customers-review__header {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.home-customers-review__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bb-reviews-text);
    letter-spacing: -0.01em;
}

.home-customers-review__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: var(--bb-reviews-divider);
}

.home-customers-review__track {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.home-customers-review__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.375rem 1.375rem;
    background: var(--bb-reviews-surface);
    border: 1px solid var(--bb-reviews-border);
    border-radius: var(--bb-reviews-radius);
    box-shadow: var(--bb-reviews-shadow);
}

.home-customers-review__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 0.875rem;
    color: var(--bb-reviews-accent);
}

.home-customers-review__stars svg {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor;
}

.home-customers-review__author {
    margin: 0 0 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bb-reviews-text);
}

.home-customers-review__headline {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--bb-reviews-text);
}

.home-customers-review__text {
    margin: 0 0 1.25rem;
    flex: 1 1 auto;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--bb-reviews-muted);
}

.home-customers-review__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    align-self: flex-start;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--bb-reviews-muted);
    transition: color 0.2s ease;
}

.home-customers-review__read-more:hover {
    color: var(--bb-reviews-accent);
}

.home-customers-review__read-more svg {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    stroke: currentColor;
    fill: none;
}

.home-customers-review__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: 0;
    list-style: none;
}

.home-customers-review__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-customers-review__dot:hover {
    background: #9ca3af;
}

.home-customers-review__dot.is-active {
    background: var(--bb-reviews-text);
    transform: scale(1.05);
}

@media (min-width: 40rem) {
    .home-customers-review__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .home-customers-review__track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 639px) {
    .home-customers-review__track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .home-customers-review__track::-webkit-scrollbar {
        display: none;
    }

    .home-customers-review__card {
        flex: 0 0 min(100%, 18.5rem);
        scroll-snap-align: start;
    }
}
