.b2b-page {
    color: #111;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

.b2b-page * {
    box-sizing: border-box;
}

.b2b-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.b2b-section {
    padding: 80px 0;
}

.b2b-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.b2b-section-heading h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.15;
    color: #000;
    text-transform: uppercase;
}

.b2b-section-heading p {
    margin: 0;
    color: #555;
    font-size: 17px;
}

/* HERO */
.b2b-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.b2b-hero__bg {
    position: absolute;
    inset: 0;
}

.b2b-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.42);
}

.b2b-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 42%, rgba(0,0,0,.42) 100%);
    pointer-events: none;
}

.b2b-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.b2b-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.b2b-hero__text h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 52px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.b2b-hero__text h2 {
    margin: 0 0 28px;
    color: #ffd400;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.b2b-hero__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 680px;
}

.b2b-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.b2b-hero__benefits img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 56px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
}

.b2b-hero__benefits strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 3px;
}

.b2b-hero__benefits span {
    display: block;
    color: #e6e6e6;
    font-size: 15px;
}

.b2b-form-box {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.b2b-form-box h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    text-transform: uppercase;
}

.b2b-form-box p {
    margin: 0 0 20px;
    color: #555;
}

.b2b-form-box .wpcf7 form p {
    margin: 0 0 14px;
}

.b2b-form-box input,
.b2b-form-box select,
.b2b-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}

.b2b-form-box input:focus,
.b2b-form-box select:focus,
.b2b-form-box textarea:focus {
    outline: none;
    border-color: #ffd400;
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.18);
}

.b2b-form-box input[type="submit"],
.b2b-form-box button,
.b2b-form-box .wpcf7-submit {
    width: 100%;
    background: #ffd400;
    color: #000;
    border: 0;
    border-radius: 8px;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
}

.b2b-form-box input[type="submit"]:hover,
.b2b-form-box button:hover,
.b2b-form-box .wpcf7-submit:hover {
    background: #e7bf00;
}

/* WHY */
.b2b-why {
    background: #fff;
}

.b2b-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.b2b-why-card {
    padding: 30px 22px;
    text-align: center;
    background: #f7f7f7;
    border-radius: 16px;
    border: 1px solid #ececec;
    transition: transform .2s ease, box-shadow .2s ease;
}

.b2b-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
}

.b2b-why-card img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 18px;
}

.b2b-why-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
}

.b2b-why-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

/* PARTNERS */
.b2b-partners {
    background: #fafafa;
}

.b2b-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.b2b-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 20px;
}

.b2b-partner img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

/* ABOUT */
.b2b-about {
    background: #fff;
}

.b2b-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.b2b-about__media img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.b2b-about__content h2 {
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

.b2b-about__content p {
    margin: 0 0 16px;
    color: #444;
    font-size: 17px;
}

/* GALLERY */
.b2b-gallery {
    background: #000;
}

.b2b-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.b2b-gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* CTA */
.b2b-cta {
    background: #ffd400;
    text-align: center;
    padding: 90px 0;
}

.b2b-cta h2 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.1;
    color: #000;
    text-transform: uppercase;
}

.b2b-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 999px;
    transition: .2s ease;
}

.b2b-btn:hover {
    background: #222;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .b2b-hero__grid,
    .b2b-about-grid {
        grid-template-columns: 1fr;
    }

    .b2b-hero__text {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .b2b-why-grid,
    .b2b-partners-grid,
    .b2b-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .b2b-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .b2b-hero__text h1 {
        font-size: 40px;
    }

    .b2b-hero__text h2 {
        font-size: 22px;
    }

    .b2b-section-heading h2,
    .b2b-about__content h2,
    .b2b-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .b2b-section {
        padding: 60px 0;
    }

    .b2b-why-grid,
    .b2b-partners-grid,
    .b2b-gallery-grid {
        grid-template-columns: 1fr;
    }

    .b2b-hero__text h1 {
        font-size: 32px;
    }

    .b2b-hero__text h2 {
        font-size: 20px;
    }

    .b2b-hero__benefits li {
        align-items: flex-start;
    }

    .b2b-form-box {
        padding: 22px 18px;
    }

    .b2b-section-heading h2,
    .b2b-about__content h2,
    .b2b-cta h2 {
        font-size: 28px;
    }
}

.b2b-hero__grid.single {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.b2b-hero__text.center {
    margin-bottom: 30px;
}

.b2b-hero__form.center {
    display: flex;
    justify-content: center;
}

.b2b-hero__desc {
    color: #e6e6e6;
    font-size: 16px;
    margin-top: 10px;
}

.b2b-hero {
    position: relative;
    min-height: 750px; /* bija ~720 */
    padding: 12px 0 23px; /* 🔥 galvenais fix */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}