

/* Start:/local/templates/grassman-local/template_styles.css?17821958154585*/
:root {
    --green: #4DAE3F;
    --green-dark: #3D8C32;
    --green-bright: #5BC04B;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --gray-50: #F8F8F6;
    --gray-100: #EFEFEC;
    --gray-200: #E0E0DA;
    --gray-400: #999996;
    --gray-600: #5A5A57;
    --gray-800: #2A2A28;

    --font-display: 'Onest', system-ui, sans-serif;
    --font-body: 'Onest', system-ui, sans-serif;

    --container: min(1400px, 92vw);
    --section-py: clamp(80px, 10vw, 160px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    width: var(--container);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo {
    height: 36px;
}

.header__logo img {
    height: 100%;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 32px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.header__nav a {
    transition: color .2s;
    position: relative;
}

.header__nav a:hover {
    color: var(--green-bright);
}

.header__cta {
    background: var(--green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: background .2s, transform .15s;
}

.header__cta:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section__inner {
    width: var(--container);
    margin: 0 auto;
}

.section__head {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}

.section__overline {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.section__lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.5;
    color: var(--gray-600);
    max-width: 480px;
}

@media (max-width: 800px) {
    .section__head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer__inner {
    width: var(--container);
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
    height: 48px;
    margin-bottom: 20px;
}

.footer__brand p {
    font-size: 14px;
    max-width: 280px;
    line-height: 1.5;
}

.footer__col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer__col a {
    transition: color .2s;
}

.footer__col a:hover {
    color: var(--green-bright);
}

.footer__bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
    color: var(--green-bright);
}

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

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* End */


/* Start:/local/templates/grassman-local/styles.css?178221408127124*/
/* ===== HERO ===== */
.hero {
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__inner {
    width: var(--container);
    margin: 0 auto;
    padding: 60px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {}

.hero__overline {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-bright);
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero__overline::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--green-bright);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(64px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.hero__title span {
    color: var(--green);
    display: block;
}

.hero__title .stroke {
    -webkit-text-stroke: 2px var(--green);
    color: transparent;
}

.hero__subtitle {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap;
    max-width: 100%;
}

@media (max-width: 480px) {
    .btn {
        white-space: normal;
        padding: 14px 20px;
        font-size: 15px;
    }
}

.btn--primary {
    background: var(--green);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--green);
}

.btn__arrow {
    transition: transform .2s;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.hero__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 720 / 400;
    box-shadow: 0 40px 80px -20px rgba(77, 174, 63, 0.3);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__shape {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 174, 63, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 60px;
    }

    .hero__title {
        font-size: clamp(56px, 14vw, 84px);
    }
}

/* ===== TRUST STRIP ===== */
.trust {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__inner {
    width: var(--container);
    margin: 0 auto;
    padding: 32px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(77, 174, 63, 0.15);
    color: var(--green-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust__text {}

.trust__title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.trust__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 700px) {
    .trust__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }
}

/* ===== ABOUT ===== */
.about {
    background: var(--gray-50);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about__card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all .3s;
}

.about__card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 20px 40px -20px rgba(77, 174, 63, 0.2);
}

.about__num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--green);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.about__h {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about__p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== AUDIENCE ===== */
.audience {}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience__card {
    background: var(--gray-50);
    border-radius: 24px;
    overflow: hidden;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.audience__card:hover {
    transform: translateY(-4px);
}

.audience__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-200);
}

.audience__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.audience__card:hover .audience__img img {
    transform: scale(1.05);
}

.audience__body {
    padding: 32px;
}

.audience__h {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.audience__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.audience__list li {
    font-size: 13px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    color: var(--gray-800);
}

@media (max-width: 900px) {
    .audience__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .audience__body {
        padding: 24px 20px;
    }

    .audience__h {
        font-size: 22px;
    }

    .audience__list {
        margin-top: 12px;
    }

    .audience__list li {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* ===== CATEGORIES ===== */
.cats {
    background: var(--black);
    color: var(--white);
}

.cats .section__overline {
    color: var(--green-bright);
}

.cats .section__title {
    color: var(--white);
}

.cats .section__lead {
    color: rgba(255, 255, 255, 0.6);
}

.cats__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.cat {
    background: var(--black-soft);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.cat:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.cat--hero {
    grid-row: span 2;
    background: var(--green);
    min-height: 580px;
    background-size: cover;
    background-position: center;
}

.cat--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Черный цвет с 50% прозрачности */
    z-index: 1;
    /* Чтобы слой был поверх картинки, но под текстом */
}

.cat--hero>* {
    position: relative;
    z-index: 2;
}

.cat--hero:hover {
    transform: translateY(-4px);
}

.cat__label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-bright);
    font-weight: 600;
    margin-bottom: 12px;
}

.cat--hero .cat__label {
    color: rgba(255, 255, 255, 0.85);
}

.cat__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cat--hero .cat__title {
    font-size: 56px;
    color: var(--white);
}

.cat__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cat--hero .cat__desc {
    color: var(--white);
    font-size: 17px;

}

.cat__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    align-self: flex-start;
}

.cat:hover .cat__arrow {
    background: var(--green);
    transform: rotate(-45deg);
}





@media (max-width: 900px) {
    .cats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat--hero {
        grid-row: auto;
        grid-column: span 2;
        min-height: 360px;
    }

    .cat--hero .cat__title {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .cats__grid {
        grid-template-columns: 1fr;
    }

    .cat--hero {
        grid-column: auto;
    }
}

/* ===== HERO PRODUCT ===== */
.feature {
    background: var(--gray-50);
}

.feature__inner {
    width: var(--container);
    margin: 64px auto;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
}

.feature__media {
    background: var(--gray-100);
    background-size: cover;
    background-position: center;
    min-height: 520px;
    position: relative;
}

.feature__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(77, 174, 63, 0.15) 100%);
}

.feature__body {
    padding: clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature__overline {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 20px;
}

.feature__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    word-break: break-word;
    hyphens: auto;
}

.feature__desc {
    font-size: 18px;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 440px;
}

.feature__list {
    list-style: none;
    margin-bottom: 40px;
}

.feature__list li {
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

.feature__list li:last-child {
    border-bottom: 1px solid var(--gray-200);
}

.feature__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .feature__inner {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .feature__media {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .feature__body {
        padding: 24px 20px;
    }

    .feature__title {
        font-size: 32px;
    }

    .feature__desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .feature__media {
        min-height: 240px;
    }

    .feature__list li {
        font-size: 14px;
        padding: 12px 0;
    }
}

/* ===== FAQ ===== */
.faq__list {
    max-width: 880px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq__q {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.3;
    color: var(--black);
    transition: color .2s;
}

.faq__q:hover {
    color: var(--green);
}

.faq__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}

.faq__item.is-open .faq__icon {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.faq__item.is-open .faq__a {
    max-height: 500px;
    padding: 0 0 28px 0;
}

.faq__a p {
    max-width: 720px;
}

/* ===== WHERE TO BUY ===== */
.buy {
    background: var(--gray-50);
}

.buy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.buy__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all .3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy__card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(77, 174, 63, 0.2);
}

.buy__logo {
    height: 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.buy__logo--ozon {
    color: #005BFF;
}

.buy__logo--wb {
    color: #CB11AB;
}

.buy__logo--ya {
    color: #FC3F1D;
}

.buy__h {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
}

.buy__p {
    font-size: 15px;
    color: var(--gray-600);
    flex-grow: 1;
}

.buy__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--green);
    font-size: 15px;
    transition: gap .2s;
}

.buy__card:hover .buy__link {
    gap: 14px;
}

@media (max-width: 800px) {
    .buy__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== B2B ===== */
.b2b {
    background: var(--black);
    color: var(--white);
}

.b2b__inner {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.b2b__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.b2b__title span {
    color: var(--green-bright);
}

.b2b__lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 460px;
}

.b2b__features {
    list-style: none;
}

.b2b__features li {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
}

.b2b__features li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.b2b__features svg {
    color: var(--green-bright);
    flex-shrink: 0;
}

.b2b__form {
    background: var(--black-soft);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.b2b__form h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 24px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
}

.field select option {
    background-color: #222;
    color: var(--white);
}

.field textarea {
    min-height: 80px;
    resize: vertical;
}

.field--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field--row .field {
    margin-bottom: 0;
}

.b2b__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.b2b__check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.b2b__check-box {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.b2b__check input:focus-visible~.b2b__check-box {
    outline: 2px solid var(--green-bright);
    outline-offset: 2px;
}

.b2b__check input:checked~.b2b__check-box {
    background: var(--green);
    border-color: var(--green);
}

.b2b__check-box svg {
    opacity: 0;
    width: 12px;
    height: 10px;
    stroke: var(--white);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: opacity 0.2s;
}

.b2b__check input:checked~.b2b__check-box svg {
    opacity: 1;
}

.b2b__check span {
    flex: 1;
}

.b2b__form .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .b2b__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b2b__form {
        padding: 32px 24px;
    }

    .field--row {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG TEASER ===== */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog__card {
    cursor: pointer;
}

.blog__img {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 20px;
}

.blog__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog__card:hover .blog__img img {
    transform: scale(1.05);
}

.blog__date {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog__h {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.25;
    color: var(--black);
    transition: color .2s;
}

.blog__card:hover .blog__h {
    color: var(--green);
}

.blog__lead {
    margin-top: 8px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--green);
    color: var(--white);
    padding: 24px 0;
    overflow: hidden;
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
    width: 100%;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    /* Gap between groups */
}

.marquee__item {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 4vw, 48px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 60px;
}

.marquee__item::after {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M12 0C12 0 13.5 10.5 24 12C24 12 13.5 13.5 12 24C12 24 10.5 13.5 0 12C0 12 10.5 10.5 12 0Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ===== POPUP ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    padding: 20px;
}

.popup-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    background: var(--white);
    width: min(80%, 100%);
    max-height: 90vh;
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform .3s;
}

.popup-overlay.is-active .popup {
    transform: translateY(0);
}

.popup__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    transition: all .2s;
}

.popup__close:hover {
    background: var(--black);
    color: var(--white);
}

.popup__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.popup__content {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .popup {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .popup__close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .popup__title {
        font-size: 24px;
        margin-bottom: 16px;
        padding-right: 32px;
    }

    .popup__content {
        font-size: 15px;
    }
}

/* ===== PRODUCT GRID (in popup) ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding-top: 10px;
}

.product-card {
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.product-card__img {
    aspect-ratio: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__no-img {
    color: var(--gray-400);
    font-size: 14px;
}

.product-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--black);
}

.product-card__desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
    max-height: 200px;
    overflow-y: auto;
}

.product-card__price {
    font-weight: 800;
    font-size: 18px;
    color: var(--green);
}

.loading {
    padding: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-400);
}

/* ===== AUDIENCE SLIDER ===== */
.audience-slider-outer {
    position: relative;
    padding: 0 70px;
    margin-bottom: -40px;
    /* Space for arrows */
}

.audience-slider {
    padding-bottom: 40px !important;
    overflow: hidden;
    /* Ensure clipping is on the swiper container */
}

.audience-slider-outer .swiper-button-next,
.audience-slider-outer .swiper-button-prev {
    color: var(--green);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 10;
    margin-top: -45px;
    /* Offset for better vertical centering */
}

.audience-slider-outer .swiper-button-prev {
    left: 0px;
}

.audience-slider-outer .swiper-button-next {
    right: 0px;
}

@media (max-width: 768px) {
    .audience-slider-outer {
        padding: 0;
    }

    .audience-slider-outer .swiper-button-next,
    .audience-slider-outer .swiper-button-prev {
        display: none;
    }
}


/* utilities */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card__desc::-webkit-scrollbar {
    width: 4px;
}

.product-card__desc::-webkit-scrollbar-track {
    background: transparent;
}

.product-card__desc::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.popup::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.popup::-webkit-scrollbar {
    width: 4px;
    height: 80%;
}

.popup::-webkit-scrollbar-track {
    background: transparent;
}

.popup::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.popup::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* End */
/* /local/templates/grassman-local/template_styles.css?17821958154585 */
/* /local/templates/grassman-local/styles.css?178221408127124 */
