/* Hiver Specific Styles */
/* Most styles are inherited from Digital_ItProduct.css */

.hiver-hero {
    padding: 1.875rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* HIVER: PRICING SECTION */
.hiver-pricing-wrapper {
    padding: 4.375rem 0;
    background: #F4F4F4;
}

.hiver-pricing-container {
    max-width: 100rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hiver-pricing-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, #3AB2EA, #2B3D91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiver-pricing-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

@media (max-width: 48rem) {
    .hiver-pricing-heading {
        font-size: 2.5rem !important;
    }
}

.hiver-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    /* Hiver has only 3 plans, center them */
    width: 100%;
    margin: 0;
}

.hiver-pricing-card {
    flex: 1 1 20rem;
    max-width: 21.25rem;
    min-height: 34.375rem;
    height: auto;
    background: #FFFFFF;
    border: 0.125rem solid rgba(196, 196, 196, 0.75);
    border-radius: 1rem;
    padding: 1.5rem 1.125rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiver-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 61, 145, 0.15);
}

.hiver-pricing-card.active {
    background: linear-gradient(180deg, #2BABE1 0%, #879FF3 100%);
    border: 3px solid #008ACF;
}

.hiver-plan-title {
    font-size: 2rem;
    /* Slightly increased for better emphasis */
    font-weight: 700;
    color: #008ACF;
    margin-bottom: 1rem;
}

.hiver-pricing-card.active .hiver-plan-title {
    color: #FFFFFF;
    font-weight: 700;
}

.hiver-price-bar {
    background: #008ACF;
    color: #FFFFFF;
    width: calc(100% + 2.25rem);
    margin-left: -1.125rem;
    min-height: 2.8125rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.hiver-price-bar.white {
    background: #FFFFFF;
    color: #008ACF;
}

.hiver-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.hiver-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
    font-size: 0.9375rem;
    /* Adjusting for font-size requirement */
    color: #000000;
}

.hiver-features li::before {
    content: "✓";
    min-width: 1.375rem;
    height: 1.375rem;
    background: #97DCFF;
    color: #008ACF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.hiver-pricing-card.active .hiver-features li {
    color: #FFFFFF;
}

.hiver-pricing-card.active .hiver-features li::before {
    background: #FFFFFF;
    color: #008ACF;
}

.hiver-btn-outline,
.hiver-btn-white {
    display: inline-block;
    width: 8.75rem;
    height: 2.625rem;
    align-self: center;
    border: 0.09375rem solid #2655A5;
    background: #FFFFFF;
    color: #2655A5;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.625rem 1.5rem;
    text-decoration: none;
    text-align: center;
}

.hiver-btn-outline:hover,
.hiver-btn-white:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    text-decoration: none;
    border-color: transparent;
}

/* HIVER: WHY HIVER SECTION (CENTERED REDESIGN) */
.hiver-whysmart-wrapper {
    background-color: #F8F9FB;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
}

.hiver-whysmart-frame {
    width: 100%;
    max-width: 81.25rem;
    padding: 0 2.5rem;
}

.hiver-whysmart-intro {
    display: flex;
    align-items: stretch;
    max-width: 75rem;
    margin: 0 auto 3.75rem;
    gap: 0;
}

.intro-left {
    flex: 0 0 45%;
    padding-right: 2.5rem;
    display: flex;
    align-items: center;
}

.intro-right {
    flex: 1;
    padding-left: 3.125rem !important;
    border-left: 0.125rem solid #F0F2F5;
    display: flex;
    align-items: center;
}

.hiver-whysmart-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    text-align: left;
}

.hiver-intro-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    text-align: left;
    text-align: justify;
}

.hiver-whysmart-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;
}

.hiver-whysmart-card {
    flex: 0 1 calc(33.333% - 1.25rem);
    min-width: 20rem;
    background: #FFFFFF;
    border: 0.0625rem solid #E5E9F2;
    border-radius: 1.25rem;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    min-height: 21.875rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Hover State - Fixing blue shadow to a more premium subtle grey-indigo */
.hiver-whysmart-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 2.5rem rgba(30, 41, 59, 0.1);
}

.hiver-whysmart-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.25rem;
    /* background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%); */
    transition: width 0.3s ease;
}

.hiver-whysmart-card:hover::after {
    width: 100%;
}

.hiver-whysmart-card .card-header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 0.9375rem;
}

.hiver-whysmart-card .icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.hiver-whysmart-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
    flex: 1;
}

.card-subtitle {
    font-size: 1rem;
    color: #1E293B;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.card-features li {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.card-features li::before {
    content: "•";
    color: #2BACE2;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.card-result {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 0.0625rem dashed #E5E9F2;
    font-size: 0.95rem;
    color: #1E293B;
    line-height: 1.6;
}

.card-result strong {
    color: #2BACE2;
}

/* Response for Tablet */
@media (max-width: 64rem) {
    .hiver-whysmart-card {
        flex: 0 1 calc(50% - 0.9375rem);
    }

    .hiver-whysmart-intro {
        flex-direction: column;
        gap: 1.875rem;
    }

    .intro-left {
        padding-right: 0;
        justify-content: center;
        text-align: center;
    }

    .intro-left .hiver-whysmart-title {
        text-align: center;
    }

    .intro-right {
        padding-left: 0;
        border-left: none;
        padding-top: 1.875rem;
        border-top: 0.125rem solid #F0F2F5;
        text-align: center;
    }

    .hiver-intro-description {
        text-align: justify;
    }
}

/* Responsive for Mobile */
@media (max-width: 48rem) {
    .hiver-whysmart-card {
        flex: 0 1 100%;
        min-height: auto;
    }

    .hiver-whysmart-title {
        font-size: 2.5rem;
    }
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 1.125rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.feature-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2BABE1;
    font-size: 1.125rem;
    line-height: 1;
}

/* Removing redundant intro description style */

/* HIVER: KEY FEATURES SECTION */
.hiver-features-section {
    background-color: #ffffff;
    padding: 2.25rem 0;
}

.hiver-features-frame {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    border-radius: 0.625rem;
}

.hiver-features-header {
    text-align: center;
    margin-bottom: 3.125rem;
}

.hiver-features-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(90deg, #3AB2EA, #2B3D91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.9375rem;
}

.hiver-features-header p {
    font-size: 1.05rem;
    color: #475569;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.8;
}

.hiver-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.hiver-feature-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hiver-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 61, 145, 0.15);
}

.hiver-feature-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9375rem;
}

.hiver-feature-icon {
    width: 2.8125rem;
    height: 2.8125rem;
    background: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiver-feature-icon img {
    width: 2.25rem;
    height: 2.25rem;
}

.hiver-feature-header-row h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.hiver-feature-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-top: 0.625rem;
}

@media (max-width: 992px) {
    .hiver-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hiver-features-grid {
        grid-template-columns: 1fr;
    }

    .hiver-features-header h2 {
        font-size: 1.75rem;
    }
}

/* HIVER: NEW WHY CHOOSE BITSWARE SECTION (REDESIGN) */
.hiver-partner-section-new {
    padding: 5rem 0;
    background-color: #ffffff;
}

.hiver-partner-container-new {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hiver-partner-content-new {
    display: flex;
    align-items: stretch;
    gap: 3.75rem;
}

.hiver-partner-left {
    flex: 1;
}

.hiver-partner-heading-new {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: left !important;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.benefit-icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.benefit-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.3125rem 0;
}

.benefit-text p {
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.hiver-partner-right {
    flex: 1;
}

.partner-visual-box {
    background-color: #EBF5FF;
    border-radius: 1.875rem;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
    height: 100%;
}

.partner-lottie-container {
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-lottie-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsiveness for Partner Section */
@media (max-width: 64rem) {
    .hiver-partner-content-new {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hiver-partner-left {
        display: contents;
    }

    .hiver-partner-heading-new {
        order: 1;
        width: 100%;
        text-align: center !important;
        margin-bottom: 1.875rem;
    }

    .hiver-partner-right {
        order: 2;
        width: 100%;
    }

    .partner-benefits-list {
        order: 3;
        width: 100%;
        margin-top: 0.625rem;
    }

    .hiver-partner-container-new {
        padding: 0 1.25rem;
    }
}

@media (max-width: 48rem) {
    .hiver-partner-heading-new {
        font-size: 2rem;
    }
}

.hiver-highlight-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    background: #ffffff;
    position: relative;
    border: 0.1875rem solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #199fd7 0%,
            #8a50d8 25%,
            #ee5091 50%,
            #fc7942 75%,
            #99bd3c 100%) border-box;
    box-shadow: 0 0 0.9375rem rgba(0, 120, 212, 0.15),
        0 0 0.9375rem rgba(255, 140, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiver-highlight-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(138, 80, 216, 0.25);
}

@media (max-width: 900px) {
    .hiver-highlight-card {
        padding: 1.25rem;
        border-width: 0.125rem;
    }
}

/* HIVER FEATURE CARD - PASTEL COLORS */
.hiver-feature-card:nth-child(1) {
    background-color: #fff2cc !important;
}

.hiver-feature-card:nth-child(2) {
    background-color: #d1f2eb !important;
}

.hiver-feature-card:nth-child(3) {
    background-color: #cfeafd !important;
}

.hiver-feature-card:nth-child(4) {
    background-color: #e0f2f1 !important;
}

.hiver-feature-card:nth-child(5) {
    background-color: #fce4ec !important;
}

.hiver-feature-card:nth-child(6) {
    background-color: #ffe5cc !important;
}

/* Lottie Animation Styling for Hiver Hero */
.hiver-lottie-container {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hiver-lottie-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}