/* sections-bolagsbevakning.css - Bolagsbevakning page sections + responsive */

/* Tablet Responsive - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-features-heading-main {
        font-size: 36px;
        padding-top: 64px;
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    /* Shared Mobile Styles */

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title-fg {
        font-size: 32px;
    }

    .hero-subtitle-fg {
        font-size: 12px;
    }

    .hero-buttons-fg {
        flex-direction: column;
        width: 100%;
    }

    .btn-fg-primary,
    .btn-fg-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-device-image {
        max-width: 100%;
    }

    .value-features-heading {
        font-size: 28px;
    }

    .value-features-subheading {
        font-size: 16px;
    }

    .value-features-counter .counter-number,
    .value-features-counter .plus {
        font-size: 32px;
    }

    .value-features-heading-main {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card-title {
        font-size: 16px;
    }

    .feature-card-description {
        font-size: 13px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .contact-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta-title {
        font-size: 28px;
    }
}


/* ============================================
   Bolagsbevakning Features Section
   ============================================ */

.features-section-bb {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-container-bb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-heading-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.5em;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
}

.feature-card-title-bb {
    font-size: 18px;
    font-weight: 500;
}

.features-grid-bb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    row-gap: 15px;
    column-gap: 40px;
}


/* Desktop: Position items in grid */
.feature-item-bb .feature-card-bb {
    grid-row: 1;
}

.feature-item-bb .feature-title-bb {
    grid-row: 2;
    margin: 20px 0px;
}

.feature-item-bb .feature-description-bb {
    grid-row: 3;
}

.feature-card-bb {
    background: #F5EFE7;
    padding: 0px 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    overflow: hidden;
    height: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.feature-card-empty-bb {
    background: transparent;
}

.feature-image-bb {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-image-bb:hover,
.feature-card-bb:hover .feature-image-bb {
    transform: scale(1.05);
}

/* Government logos card */
.feature-card-govt-bb {
    position: relative;
}

.feature-govt-logos-bb {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.govt-gradient-overlay-bb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.govt-logo-bb {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-card-govt-bb:hover .govt-logo-bb {
    transform: scale(1.05);
}

.govt-logo-1-bb {
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 140px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-1-bb {
    transform: translateY(-50%) scale(1.05);
}

.govt-logo-2-bb {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-2-bb {
    transform: translate(-50%, -50%) scale(1.05);
}

.govt-logo-3-bb {
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 80px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-3-bb {
    transform: translateY(-50%) scale(1.05);
}

.feature-title-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
    padding: 0;
}

.feature-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
    padding: 0;
}

.feature-empty-bb {
    display: block;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .features-grid-bb {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 15px;
    }

    .features-heading-bb {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .feature-card-bb {
        min-height: 240px;
        height: auto !important;
        padding: 20px 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .feature-govt-logos-bb {
        padding: 80px;
    }

    .govt-logo-1-bb {
        width: 100px;
    }

    .govt-logo-2-bb {
        width: 80px;
        top: 77%;
    }

    .govt-logo-3-bb {
        width: 60px;
    }


    .features-section-bb {
        padding: 60px 0;
    }

    .features-heading-bb {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid-bb {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-card-bb {
        min-height: auto;
        padding: 0px !important;
    }

    .feature-item-bb {
        display: flex;
        flex-direction: column;
        background-color: #F5EFE7;
        padding: 20px;
        border-radius: 15px;
    }

    .feature-item-bb .feature-title-bb {
        order: 1;
        margin: 0 0 20px 0;
    }

    .feature-item-bb .feature-card-bb {
        order: 3;
    }

    .feature-item-bb .feature-description-bb {
        order: 2;
    }

    .feature-item-bb .feature-checklist {
        order: 4;
    }
}

@media screen and (max-width: 480px) {
    .features-heading-bb {
        font-size: 28px;
        margin-bottom: 30px;
    }

}

/* ================================
   Why Choose Section - Bolagsbevakning
   ================================ */

.why-choose-section-bb {
    background: #FFFFFF;
    padding: 100px 0;
    width: 100%;
}

.why-choose-wrapper-bb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.why-choose-image-container-bb {
    flex: 1;
    max-width: 600px;
    min-width: 400px;
}

.why-choose-main-image-bb {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.why-choose-content-bb {
    flex: 1;
    max-width: 600px;
}

.why-choose-text-bb {
    margin-bottom: 40px;
}

.why-choose-heading-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2em;
    color: #000000;
    margin-bottom: 24px;
}

.why-choose-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: #666666;
    margin-bottom: 20px;
}

.why-choose-features-bb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-feature-card-bb {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-feature-card-bb:hover {
    background: #EFEFEF;
    transform: translateX(5px);
}

.feature-icon-wrapper-bb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon-img-bb {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card-text-bb {
    flex: 1;
}

.feature-card-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: #666666;
    margin: 0;
}

.why-choose-cta-bb {
    margin-top: 40px;
}

.btn-why-choose-bb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #EA5A0B;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-why-choose-bb:hover {
    background: #D14F09;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 90, 11, 0.3);
}

@media screen and (max-width: 1200px) {
    .why-choose-wrapper-bb {
        gap: 60px;
        padding: 0 30px;
    }

    .why-choose-heading-bb {
        font-size: 36px;
    }

    .why-choose-image-container-bb {
        min-width: 350px;
    }
}

@media screen and (max-width: 968px) {
    .why-choose-section-bb {
        padding: 80px 0;
    }

    .why-choose-wrapper-bb {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .why-choose-image-container-bb {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .why-choose-content-bb {
        max-width: 100%;
    }

    .why-choose-heading-bb {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-section-bb {
        padding: 48px 0;
    }

    .why-choose-heading-bb {
        font-size: 28px;
    }

    .why-choose-description-bb {
        font-size: 15px;
    }

    .why-choose-features-bb {
        gap: 12px;
    }

    .why-choose-feature-card-bb {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .feature-icon-wrapper-bb {
        width: 40px;
        height: 40px;
    }

    .btn-why-choose-bb {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ================================
   Pricing Section - Bolagsbevakning
   ================================ */

.pricing-section-bb {
    background: #F7F7F7;
    padding: 80px 0;
    width: 100%;

}

.pricing-container-bb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-heading-bb {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3em;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid-bb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card-bb.pricing-card-featured-bb {
    border: 2px solid #ea5a0b;
    box-shadow: 0 4px 12px rgba(234, 90, 11, 0.3);
}

.pricing-card-bb {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 30px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #c3c4c7;

}

.pricing-card-bb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-badge-bb {
    display: inline-block;
    background: #EA5A0B;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: absolute;
    top: -2%;
    left: 32%;
}

.pricing-title-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3em;
    color: #000000;
    margin-bottom: 20px;
}

.pricing-price-bb {
    margin-bottom: 30px;
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    display: flex;
    border-bottom: 1px solid #F0F0F0;
}

.price-amount-bb {
    font-weight: 700;
    font-size: 52px;
    line-height: 1em;
    color: #000;
    display: block;
}

.price-currency-bb {
    font-weight: 600;
    font-size: 18px;
    color: #666666;
    margin-left: 5px;
    align-items: end;
    display: flex;
}

.pricing-features-bb {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-feature-bb {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
}

.pricing-feature-bb:last-child {
    border-bottom: none;
}



.pricing-feature-bb span {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5em;
    color: #666666;
}

.pricing-sub-features-bb {
    grid-column: 2;
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.pricing-sub-features-bb li {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #666666;
    margin-bottom: 6px;
}

.pricing-btn-bb {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: #000000;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-btn-bb:hover {
    background: #D14F09;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 90, 11, 0.3);
}

@media screen and (max-width: 1024px) {
    .pricing-grid-bb {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-container-bb {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .pricing-section-bb {
        padding: 60px 0;
    }

    .pricing-heading-bb {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pricing-container-bb {
        padding: 0 20px;
    }

    .pricing-card-bb {
        padding: 35px 25px;
    }

    .pricing-title-bb {
        font-size: 22px;
    }

    .price-amount-bb {
        font-size: 40px;
    }

    .price-currency-bb {
        font-size: 16px;
    }

    .pricing-feature-bb span {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-section-bb {
        padding: 50px 0;
    }

    .pricing-card-bb {
        padding: 30px 20px;
    }

    .pricing-title-bb {
        font-size: 20px;
    }

    .price-amount-bb {
        font-size: 36px;
    }

    .pricing-badge-bb {
        font-size: 11px;
        padding: 5px 16px;
    }

    .pricing-btn-bb {
        font-size: 15px;
        padding: 14px 25px;
    }
}