:root {
    --bo-bg: #f6f8fc;
    --bo-surface: #ffffff;
    --bo-ink: #0f172a;
    --bo-muted: #5f6474;
    --bo-primary: #0f766e;
    --bo-primary-dark: #0b4f4a;
    --bo-accent: #f59e0b;
    --bo-border: #e5e8f1;
    --bo-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
    --bo-shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.12);
    --bo-radius: 18px;
}

.home .site-content .col-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.home #colophon {
    display: none;
}

.bo-home {
    background: linear-gradient(180deg, #ffffff 0%, var(--bo-bg) 54%, #f2f5fb 100%);
    color: var(--bo-ink);
    font-family: "Outfit", sans-serif;
}

.bo-wrap {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.bo-section {
    padding: 72px 0;
}

.bo-top-slider {
    padding: 12px 0 8px;
    background: #ffffff;
}

.bo-mini-slider {
    position: relative;
    height: clamp(180px, 19vw, 240px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #d7dfed;
    box-shadow: 0 14px 30px rgba(12, 24, 44, 0.12);
    background: #e6edf8;
}

.bo-mini-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.bo-mini-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bo-mini-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.bo-mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bo-mini-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 20, 39, 0.08) 0%, rgba(7, 20, 39, 0.12) 46%, rgba(7, 20, 39, 0.35) 100%);
}

.bo-mini-caption {
    position: absolute;
    left: 14px;
    top: 12px;
    z-index: 4;
    border-radius: 999px;
    background: rgba(5, 20, 40, 0.62);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
}

.bo-mini-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(8, 23, 45, 0.44);
    color: #ffffff;
    line-height: 1;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: background-color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.bo-mini-slider:hover .bo-mini-arrow {
    opacity: 1;
}

.bo-mini-arrow:hover {
    background: rgba(8, 23, 45, 0.68);
    transform: translateY(-50%) scale(1.04);
}

.bo-mini-prev {
    left: 12px;
}

.bo-mini-next {
    right: 12px;
}

.bo-soft {
    background: #f9fbff;
    border-top: 1px solid var(--bo-border);
    border-bottom: 1px solid var(--bo-border);
}

.bo-reveal {
    animation: boFadeUp 0.65s ease both;
}

.bo-delay-1 {
    animation-delay: 0.14s;
}

.bo-delay-2 {
    animation-delay: 0.24s;
}

@keyframes boFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bo-hero {
    padding: 78px 0;
    background:
        radial-gradient(circle at 88% 10%, rgba(245, 158, 11, 0.2), transparent 34%),
        radial-gradient(circle at 12% 16%, rgba(15, 118, 110, 0.18), transparent 34%),
        linear-gradient(115deg, #f8fafc 0%, #ffffff 45%, #ecfdf5 100%);
}

.bo-hero-showcase {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #0b1220;
}

.bo-hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: #111827;
}

.bo-hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.55) 100%);
}

.bo-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.bo-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    animation: boHeroZoom 7s ease-out both;
}

@keyframes boHeroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

.bo-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    padding: 54px 0 94px;
}

.bo-hero-content-wrap {
    width: min(1100px, calc(100% - 56px));
    margin: 0 auto;
    height: 100%;
    display: grid;
    align-items: flex-start;
    padding-top: clamp(54px, 8vh, 96px);
}

.bo-hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 4;
    display: flex;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(8, 20, 36, 0.28);
    backdrop-filter: blur(3px);
}

.bo-hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.bo-hero-dots button.is-active {
    width: 18px;
    border-radius: 999px;
    background: #ff7a19;
    border-color: #ff7a19;
    transform: translateY(-1px);
}

.bo-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(9, 20, 38, 0.45);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.bo-hero-arrow:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(9, 20, 38, 0.68);
    transform: translateY(-50%) scale(1.03);
}

.bo-hero-prev {
    left: 18px;
}

.bo-hero-next {
    right: 18px;
}

.bo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

.bo-hero-grid > * {
    pointer-events: auto;
}

.bo-overlay-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 22px 0;
    box-shadow: none;
    backdrop-filter: none;
    max-width: 860px;
}

.bo-hero-copy h1 {
    margin: 14px 0 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.bo-hero-copy p {
    margin: 0;
    max-width: 48ch;
    color: rgba(241, 245, 255, 0.78);
    font-size: 18px;
    line-height: 1.58;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.24);
}

.bo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #ecfdf5;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 9px 15px;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.bo-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 48px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.bo-btn:hover {
    transform: translateY(-1px);
}

.bo-btn-primary {
    background: #0f766e;
    color: #ffffff;
    box-shadow: none;
}

.bo-btn-primary:hover {
    color: #ffffff;
    background: #0c625c;
}

.bo-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.bo-btn-ghost:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.bo-stats {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 7;
}

.bo-stats > div {
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d7deed;
    padding: 18px 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bo-stats > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.bo-stats strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 6px;
}

.bo-stats span {
    color: #667085;
    font-size: 16px;
}

.bo-hero-card {
    display: none;
}

.bo-hero-stats-strip {
    padding: 16px 0 22px;
    background: #f7f9fd;
}

.bo-hero-card h3 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    line-height: 1.1;
    color: #eaf2ff;
}

.bo-hero-card p {
    margin: 0;
    color: #ccd4e5;
    line-height: 1.7;
}

.bo-hero-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bo-hero-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #e9eefc;
}

.bo-hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bo-accent);
}

.bo-service-strip {
    padding: 28px 0 20px;
}

.bo-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bo-service-card {
    border: 1px solid var(--bo-border);
    border-radius: 16px;
    background: #ffffff;
    padding: 18px 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bo-service-card:hover {
    transform: translateY(-3px);
    border-color: #bcd3ee;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.bo-service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #e84f71;
    background: #fff0f4;
}

.bo-service-icon svg {
    width: 24px;
    height: 24px;
}

.bo-service-card h3 {
    margin: 12px 0 6px;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Manrope", sans-serif;
}

.bo-service-card p {
    margin: 0;
    color: #6a7284;
}

.bo-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.bo-section-head h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.bo-section-head a {
    color: var(--bo-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.bo-cat-grid,
.bo-product-grid,
.bo-value-grid {
    display: grid;
    gap: 18px;
}

.bo-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bo-cat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--bo-border);
    border-radius: 16px;
    padding: 18px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bo-cat-card:hover {
    transform: translateY(-3px);
    border-color: #bcd3ee;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.bo-cat-card img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: contain;
    flex: 0 0 58px;
    background: #fff0f4;
    padding: 10px;
}

.bo-cat-body {
    padding: 2px 0 0;
}

.bo-cat-body h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.2;
}

.bo-cat-body p {
    margin: 0;
    font-size: 16px;
    color: #6a7284;
}

.bo-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bo-product-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bo-product-card {
    background: #ffffff;
    border: 1px solid var(--bo-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.bo-product-card:hover {
    transform: translateY(-4px);
    border-color: #c7d7f4;
    box-shadow: var(--bo-shadow-lg);
}

.bo-product-media-wrap {
    position: relative;
}

.bo-product-media {
    display: block;
    height: 250px;
    background: linear-gradient(180deg, #f8fbff, #f4f7fe);
}

.bo-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.3s ease;
}

.bo-product-card:hover .bo-product-media img {
    transform: scale(1.04);
}

.bo-media-actions {
    position: absolute;
    right: 14px;
    top: 16px;
    display: grid;
    gap: 8px;
    z-index: 4;
}

.bo-action-item {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #d5dfef;
    background: #ffffff;
    color: #0b2b53;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.bo-action-item i {
    font-size: 18px;
    line-height: 1;
}

.bo-action-item:hover {
    transform: translateY(-1px);
    background: #0b2b53;
    color: #ffffff;
}

.bo-plugin-action .woosw-btn,
.bo-plugin-action .woosc-btn,
.bo-plugin-action .yith-wcwl-add-to-wishlist a,
.bo-plugin-action .compare,
.bo-plugin-action a {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    border: 1px solid #d5dfef;
    background: #ffffff;
    color: #0b2b53;
    display: grid;
    place-items: center;
    position: relative;
}

.bo-product-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bo-product-body h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Manrope", sans-serif;
    min-height: 52px;
}

.bo-product-body h3 a {
    color: #111827;
    text-decoration: none;
}

.bo-product-body .bo-price {
    color: #0f766e;
    font-weight: 700;
    font-size: 18px;
    min-height: 28px;
    display: flex;
    align-items: center;
}

.bo-card-add {
    margin-top: auto;
    padding-top: 14px;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid #022a56;
    background: #022a56;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bo-card-add:hover {
    color: #ffffff;
    background: #03356d;
    box-shadow: 0 10px 20px rgba(2, 42, 86, 0.25);
    transform: translateY(-1px);
}

.bo-brand-slider-wrap {
    position: relative;
    padding: 0 38px;
}

.bo-brand-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.bo-brand-slider::-webkit-scrollbar {
    display: none;
}

.bo-brand-card {
    min-height: 150px;
    border: 1px solid var(--bo-border);
    border-radius: 16px;
    background: #ffffff;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 14px;
    scroll-snap-align: start;
}

.bo-brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.bo-brand-card img {
    max-width: 100%;
    max-height: 96px;
    object-fit: contain;
}

.bo-brand-card span {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.bo-brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #6b7280;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    z-index: 3;
}

.bo-brand-prev {
    left: 2px;
}

.bo-brand-next {
    right: 2px;
}

.bo-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bo-value-grid article {
    border: 1px solid var(--bo-border);
    border-radius: 16px;
    background: #ffffff;
    padding: 26px 22px;
}

.bo-value-grid h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.2;
}

.bo-value-grid p {
    margin: 0;
    color: #5f6474;
    line-height: 1.75;
}

.bo-footer-block {
    background: #0b1220;
    color: #c7d0e4;
    margin-top: 12px;
    padding: 56px 0 24px;
}

.bo-footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 0.9fr 1fr;
}

.bo-footer-grid h3,
.bo-footer-grid h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

.bo-footer-grid p {
    margin: 0;
    line-height: 1.8;
}

.bo-footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bo-footer-grid li {
    margin: 0 0 10px;
}

.bo-footer-grid a {
    color: #d9e3fb;
    text-decoration: none;
}

.bo-footer-grid a:hover {
    color: #ffffff;
}

.bo-footer-copy {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bo-footer-copy p {
    margin: 0;
    color: #a9b5cd;
}

.bo-empty {
    margin: 0;
    background: #ffffff;
    border: 1px dashed #ced5e6;
    border-radius: 12px;
    padding: 18px;
    color: #5f6474;
}

.bo-popup-open {
    overflow: hidden;
}

.bo-popup {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}

.bo-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.bo-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 34, 0.75);
}

.bo-popup-dialog {
    position: relative;
    margin: 4vh auto;
    width: min(860px, calc(100% - 28px));
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.bo-popup-close {
    position: absolute;
    right: 12px;
    top: 10px;
    border: none;
    background: transparent;
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.bo-popup-image {
    width: 100%;
    height: min(74vh, 680px);
    object-fit: contain;
    background: #f7f9ff;
    border-radius: 12px;
}

.bo-popup-title {
    margin: 10px 4px 2px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #111827;
}

@media (max-width: 1100px) {
    .bo-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bo-product-grid,
    .bo-product-grid-wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bo-cat-grid,
    .bo-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 820px) {
    .bo-wrap {
        width: min(1200px, calc(100% - 28px));
    }

    .bo-product-grid,
    .bo-product-grid-wide,
    .bo-cat-grid,
    .bo-value-grid,
    .bo-footer-grid {
        padding: 52px 0;
    }

    .bo-hero-slider {
        height: 74vh;
        min-height: 500px;
    }

    .bo-hero-overlay {
        align-items: end;
        padding: 22px 0 34px;
    }

    .bo-hero-content-wrap {
        width: min(1100px, calc(100% - 24px));
        align-items: end;
        padding-top: 0;
    }

    .bo-hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bo-hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .bo-hero-prev {
        left: 12px;
    }

    .bo-hero-next {
        right: 12px;
    }

    .bo-section {
        padding: 54px 0;
    }

    .bo-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bo-overlay-panel {
        padding: 0;
    }

    .bo-hero-copy h1 {
        font-size: clamp(30px, 9vw, 46px);
        line-height: 1.06;
    }

    .bo-hero-copy p {
        font-size: 17px;
        line-height: 1.5;
    }

    .bo-hero-actions {
        margin-top: 16px;
        gap: 10px;
    }

    .bo-btn {
        min-height: 44px;
        padding: 9px 16px;
    }

    .bo-stats {
        margin-top: 0;
        grid-template-columns: 1fr;
    }

    .bo-service-grid {
        grid-template-columns: 1fr;
    }

    .bo-product-media {
        height: 260px;
    }

    .bo-brand-slider-wrap {
        padding: 0 4px;
    }

    .bo-brand-nav {
        display: none;
    }

    .bo-brand-slider {
        grid-auto-columns: minmax(160px, 1fr);
    }
}
