/* BusinessBits.css - Refined, Premium, Animated SaaS Design */

/* Global Styles */
* {
    box-sizing: border-box;
}

.bb-page-wrapper {
    font-family: 'Poppins', sans-serif;
    color: #475569;
    line-height: 1.8;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 70px);
}



.bb-gradient-text {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bb-blue-bold {
    color: #008ACF;
    font-weight: 700;
}

/* BUTTON REFINEMENTS (Matching GoogleWorkspace/M365) */
.bb-btn-refined {
    display: inline-block;
    background: #ffffff;
    color: #2655A5;
    border: 0.09375rem solid #2655A5;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.bb-btn-refined:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 1.5625rem rgba(42, 60, 144, 0.25);
}

.bb-btn-full-width {
    display: block;
    width: 100%;
    text-align: center;
}

.bb-btn-refined-blue {
    display: inline-block;
    background: #008ACF;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.bb-btn-refined-blue:hover {
    background: #2A3C90;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 138, 207, 0.3);
}

.bb-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0F172A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-link-secondary:hover {
    color: #008ACF;
}

/* 1. HERO SECTION */
.bb-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    overflow: hidden;
    background: #fff;
}

.bb-hero-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
        "content visual"
        "actions visual";
    align-items: center;
    gap: clamp(30px, 100px);
}

.bb-hero-content {
    grid-area: content;
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.bb-hero-visual {
    grid-area: visual;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bb-hero-actions {
    grid-area: actions;
    display: flex;
    gap: 0.9375rem;
}

.bb-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bb-subheading {
    font-size: 1.15rem;
    color: #64748B;
    margin-bottom: 2rem;
    max-width: 100%;
    text-align: justify;
}

.bb-mission-banner {
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 2rem;
}

.bb-mission-word {
    font-weight: 700;
    color: #008ACF;
    font-size: 1.1rem;
    position: relative;
}

.bb-mission-word:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    background: #CBD5E1;
    border-radius: 50%;
    margin-left: 0.9375rem;
    vertical-align: middle;
}

.bb-supporting {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
    text-align: justify;
}

.bb-hero-visual {
    grid-area: visual;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bb-hero-main-img {
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.bb-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 138, 207, 0.08) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}


.bb-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 138, 207, 0.1);
    color: #008ACF;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.dashboard-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #e2e8f0;
}

/* 2. WHAT WE DO */
.bb-what-we-do {
    margin: 50px;
    padding: 30px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
    overflow: hidden;
}

.bb-wwd-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-template-areas:
        "info visual"
        "grid visual";
    gap: 40px 120px;
    align-items: center;
}

.bb-wwd-info {
    grid-area: info;
}

.bb-wwd-visual {
    grid-area: visual;
}

.bb-wwd-grid {
    grid-area: grid;
}


.bb-wwd-content .section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 12px;
    text-align: left;
}

.bb-wwd-content .section-desc {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

.bb-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    margin-bottom: 40px;
}

.wwd-feature {
    display: flex;
    align-items: flex-start;
}

.wwd-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.wwd-icon.bg-blue {
    background: #eff6ff;
    color: #3b82f6;
}

.wwd-icon.bg-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.wwd-icon.bg-indigo {
    background: #eef2ff;
    color: #6366f1;
}

.wwd-icon.bg-cyan {
    background: #ecfeff;
    color: #0891b2;
}

.wwd-icon.bg-sky {
    background: #f0f9ff;
    color: #0ea5e9;
}

.wwd-icon.bg-blue-deep {
    background: #eef2ff;
    color: #4f46e5;
}

.wwd-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.wwd-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 8px;
}



/* Mockup Frame */
.bb-wwd-visual {
    position: relative;
    perspective: 1000px;
}

.bb-mockup-frame {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e2e8f0;
}


.mockup-screen {
    border-radius: 10px;
    overflow: hidden;
    background: #022c22;
    /* Match the teal vibe from the prompt image */
    aspect-ratio: 16/10;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.bb-section-header {
    text-align: center;
    margin-bottom: clamp(1.875rem, 5vw, 3.75rem);
    margin-top: clamp(1.875rem, 5vw, 3.75rem);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* 3. KEY FEATURES (REDESIGNED) */
.bb-features {
    background: #fff;
}

.bb-features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
}

.bb-feature-card-premium {
    padding: clamp(1.5625rem, 3vw, 2.5rem);
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.0625rem solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.bb-feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
    backdrop-filter : blur(10px);
}

.bb-feature-card-premium:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

.card-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.card-icon-wrap img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
    /* Removes white background from icon images */
}

.bb-feature-card-premium h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    color: #0F172A;
}

.bb-feature-card-premium p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* Color Variants */
.color-1 {
    background: #EBF5FF;
}

.color-1 .card-icon-wrap {
    background: #DBEAFE;
    color: #3B82F6;
}

.color-2 {
    background: #FFF7ED;
}

.color-2 .card-icon-wrap {
    background: #FFEDD5;
    color: #F59E0B;
}

.color-3 {
    background: #ECFDF5;
}

.color-3 .card-icon-wrap {
    background: #D1FAE5;
    color: #10B981;
}

.color-4 {
    background: #F5F3FF;
}

.color-4 .card-icon-wrap {
    background: #EDE9FE;
    color: #8B5CF6;
}

.color-5 {
    background: #FFF1F2;
}

.color-5 .card-icon-wrap {
    background: #FFE4E6;
    color: #F43F5E;
}

.color-6 {
    background: #ECFEFF;
}

.color-6 .card-icon-wrap {
    background: #CFFAFE;
    color: #06B6D4;
}

.bb-feature-card-premium:hover .card-icon-wrap {
    transform: scale(1.1) translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.05);
}

/* Coordinate Hover Colors for Feature Icons */
.color-1:hover .card-icon-wrap {
    background: #BFDBFE !important;
}

.color-2:hover .card-icon-wrap {
    background: #FED7AA !important;
}

.color-3:hover .card-icon-wrap {
    background: #A7F3D0 !important;
}

.color-4:hover .card-icon-wrap {
    background: #DDD6FE !important;
}

.color-5:hover .card-icon-wrap {
    background: #FECDD3 !important;
}

.color-6:hover .card-icon-wrap {
    background: #A5F3FC !important;
}

.bb-feature-card-premium:hover .card-icon-wrap img {
    transform: scale(1.1);
}


/* 4. OUR APPROACH */
.bb-approach {
    background: #ffffff;
}

.bb-section-header .section-subtitle {
    font-size: 1.15rem;
    color: #64748B;
    max-width: 43.75rem;
    margin: 0 auto 3.125rem;
    line-height: 1.6;
}

.bb-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.875rem);
}

.bb-approach-card {
    background: #F8FAFC;
    border: 0.0625rem solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 2.5rem 1.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bb-approach-card:hover {
    background: #ffffff;
    border-color: #008ACF;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 138, 207, 0.08);
    transform: translateY(-0.5rem);
}

.card-icon-box {
    width: 4rem;
    height: 4rem;
    background: #EBF7FF;
    border: 0.0625rem solid #DBEAFE;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-icon-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}

.bb-approach-card:hover .card-icon-box {
    background: #C6E9FF;
    border-color: #008ACF;
    box-shadow: 0 0.5rem 1rem rgba(0, 138, 207, 0.15);
}

.bb-approach-card:hover .card-icon-box img {
    transform: scale(1.1);
}



.bb-approach-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.bb-approach-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #008ACF;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #2A3C90;
}

.card-link:hover i {
    transform: translateX(0.25rem);
}

/* 5. WHY CHOOSE BITSWARE */
.bb-why-choose {
    padding-bottom: 3.75rem;
}

.bb-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
}

.bb-why-card {
    text-align: center;
    padding: 1.875rem;
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 138, 207, 0.1);
}

.bb-why-icon-box {
    width: 4rem;
    height: 4rem;
    background: #ffffff;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.05);
    position: relative;
    border: 0.0625rem solid rgba(0, 138, 207, 0.1);
}

.bb-why-icon-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}

.bb-why-card:hover .bb-why-icon-box {
    background: #e0f2fe;
    transform: scale(1.1) translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 138, 207, 0.15);
    border-color: #008ACF;
}

.bb-why-card:hover .bb-why-icon-box img {
    transform: scale(1.1);
}

/* 6. WHO IT'S FOR */
.bb-who-it-is {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #fff;
    padding: 3.75rem 0;
    margin-bottom: 4.375rem;
}

.bb-who-it-is .bb-section-header {
    margin-top: 0;
}

.bb-who-it-is .section-title {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.bb-who-categories {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.875rem;
    margin-bottom: 0px;
}

.bb-who-circle {
    width: 7.5rem;
    height: 7.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-who-item:hover .bb-who-circle {
    background: #fff;
    color: #008ACF;
}

/* 7. HOW IT WORKS (VERTICAL FLOW DESIGN) */
.bb-how-vertical {
    padding-top: 3.125rem;
    background: #fff;
}

.bb-how-container-v {
    display: flex;
    align-items: flex-start;
    gap: 3.75rem;
    max-width: 100%;
    margin: 0 auto;
}

.bb-how-v-content {
    flex: 1;
    padding-top: 0.5rem;
}

.bb-how-v-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5625rem;
    margin-top: 0;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-align: center;
    width: 100%;
}

/* Steps Section styles moved and updated below */

/* Right Visual */
.bb-how-v-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.v-visual-box {
    background: #e6f4fe;
    border-radius: 1.5rem;
    padding: 1.5625rem;
    position: relative;
    width: 100%;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.v-visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-visual-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
}

/* Steps Section */
.bb-v-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bb-v-step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.v-icon-box {
    width: 3rem;
    height: 3rem;
    background: #eef2ff;
    color: #3b82f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-top: 0.25rem;
}

.v-step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-v-step-item:hover .v-icon-box {
    background: #fff;
    box-shadow: 0 0.5rem 1.25rem rgba(59, 130, 246, 0.15);
    transform: translateY(-0.125rem);
}

.bb-v-step-item:hover .v-step-img {
    transform: scale(1.1);
}

.v-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: normal;
}

.v-text p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}



.bb-how-highlight {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
}

/* 8. PRICING (NEAT & CLEAN DESIGN) */
.bb-pricing {
    background: #F8FAFC;
    position: relative;
}

.bb-pricing-card-refined {
    max-width: min(26.25rem, 100%);
    margin: 0px auto 0;
    background: #ffffff;
    border-radius: 2.5rem;
    padding: clamp(1.875rem, 5vw, 2.5rem) clamp(1.5625rem, 5vw, 2.8125rem);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.bb-pricing-card-refined:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 3.125rem 7.5rem rgba(0, 0, 0, 0.08);
}

.bb-popular-pill {
    position: absolute;
    top: 0;
    right: 0;
    background: #3B82F6;
    color: #ffffff;
    padding: 0.625rem 1.875rem;
    border-radius: 0 2.5rem 0 1.25rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
    z-index: 2;
}

.bb-pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5625rem;
    color: #3c4858;
}

.bb-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.1875rem;
}

.bb-price-wrap .currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: -0.9375rem;
}

.bb-price-wrap .amount {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: #000000;
    line-height: 1;
    letter-spacing: -2px;
}

.price-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #94A3B8;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.bb-pricing-divider {
    height: 0.0625rem;
    background: #F1F5F9;
    margin: 1.875rem 0;
    width: 100%;
}

.bb-pricing-features {
    text-align: left;
    margin-bottom: 2.8125rem;
}

.bb-pricing-features ul {
    list-style: none;
    padding: 0;
}

.bb-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #4B5563;
    font-weight: 500;
}

.bb-pricing-features li i {
    color: #10B981;
    font-size: 1.1rem;
}

.bb-btn-dark-full {
    display: block;
    width: 100%;
    background: #008ACF;
    color: #ffffff;
    padding: 1.25rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.bb-btn-dark-full:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 138, 207, 0.25);
}




/* 10. HIERARCHICAL RESPONSIVE SYSTEM (REFINE FOR ALL SCREENS) */

/* ULTRA WIDE DESKTOP (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        padding: 0 5%;
    }

    .bb-hero-content {
        flex: 1.5;
    }
}

/* STANDARD DESKTOP & LAPTOP (1200px - 1399px) */
@media (max-width: 87.4375rem) and (min-width: 64.0625rem) {
    .bb-wwd-layout {
        gap: 3.75rem;
    }

    .bb-features-grid-premium {
        gap: 1.875rem;
    }
}

/* SMALL LAPTOP & TABLET LANDSCAPE (max-width: 1024px) */
@media (max-width: 64rem) {
    .bb-hero-content h1 {
        font-size: 3.2rem;
    }

    .bb-wwd-layout {
        gap: 2.5rem;
    }

    .bb-features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625rem;
    }

    .bb-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bb-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bb-how-container-v {
        gap: 2.5rem;
    }
}

/* PORTRAIT TABLET (max-width: 991px) */
@media (max-width: 61.9375rem) {
    .bb-hero-split-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "actions";
        text-align: center;
        gap: 3.125rem;
    }

    .bb-hero-content {
        grid-area: content;
    }

    .bb-hero-visual {
        grid-area: visual;
        width: 100%;
        max-width: 31.25rem;
        margin: 0 auto;
    }

    .bb-hero-actions {
        grid-area: actions;
        justify-content: center;
    }

    .bb-hero-content h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    .bb-subheading,
    .bb-supporting {
        text-align: center;
        max-width: 50rem;
        margin-left: auto;
        margin-right: auto;
    }

    .bb-mission-banner {
        justify-content: center;
    }

    .bb-wwd-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "info"
            "visual"
            "grid";
        text-align: center;
        gap: 2.5rem;
    }

    .bb-wwd-info .section-title,
    .bb-wwd-info .section-desc {
        text-align: center;
    }

    .bb-wwd-grid {
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .bb-how-container-v {
        flex-direction: column;
        align-items: center;
    }

    .bb-how-v-visual {
        width: 100%;
        max-width: 37.5rem;
    }

    .bb-how-v-content {
        width: 100%;
        max-width: 43.75rem;
    }
}

/* MOBILE DEVICES (max-width: 768px) */
@media (max-width: 48rem) {
    .bb-hero {
        padding: 3.75rem 0;
    }

    .bb-hero-content h1 {
        font-size: 2.3rem;
    }

    .bb-mission-banner {
        flex-wrap: wrap;
        gap: 0.625rem;
    }

    .bb-mission-word {
        font-size: 1rem;
    }

    .bb-wwd-grid {
        grid-template-columns: 1fr;
    }

    .bb-features-grid-premium {
        grid-template-columns: 1fr;
    }

    .bb-approach-grid {
        grid-template-columns: 1fr;
    }

    .bb-why-grid {
        grid-template-columns: 1fr;
    }

    .bb-who-categories {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
        margin-top: 40px;
    }

    .bb-who-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .bb-who-circle {
        width: 6.25rem;
        height: 6.25rem;
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .bb-who-item span {
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .bb-how-v-title {
        font-size: 2.2rem;
    }

    .bb-pricing-card-refined {
        padding: 2.5rem 1.5625rem;
    }

    .bb-cta-wrapper {
        padding: 2.5rem 1.875rem;
        border-radius: 1.875rem;
    }

    .bb-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.9375rem;
        width: 100%;
    }

    .bb-btn-refined,
    .bb-btn-refined-blue {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
        display: block;
    }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .bb-hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bb-mission-word {
        font-size: 0.9rem;
    }

    .bb-btn-refined,
    .bb-btn-refined-blue {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }

    .v-text h3 {
        font-size: 1.1rem;
    }

    .bb-price-wrap .amount {
        font-size: 3rem;
    }

    .bb-contact-icon img {
        width: 3.125rem;
        height: 3.125rem;
    }
}



/* Lottie Animation Styling - Enlarged for Hero Section */
.lottie-container {
    width: 100%;
    max-width: 800px;
    /* Increased for better balance */
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

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