/* Business Solutions Section */
.business-section {
    background-color: #fcfcfa;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 580px;
}

.business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: flex-start;
}

.business-content {
    max-width: 400px;
}

.business-tag {
    display: inline-flex;
    align-items: center;
    background-color: #f1f3f4;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
}

.business-tag::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #fcfcfa;
    border-top: 1px dashed #9ca3af3f;
}

.tag-icon {
    margin-right: 8px;
    color: #01013b;
}

.business-title {
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: "Roboto Slab", serif;
}

.business-description {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 40px;
}

.business-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-demo {
    background-color: #01013b;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-demo:hover {
    background-color: #02024d;
}

.btn-free {
    background-color: white;
    color: #01013b;
    border: 2px solid #01013b;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-free:hover {
    background-color: #01013b;
    color: white;
}

/* Cards Grid */
.business-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solution-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8eaed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 16px;
    color: #01013b;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
}

.checkmark {
    color: #01013b;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.card-link {
    color: #01013b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #02024d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .business-content {
        max-width: 100%;
    }

    .business-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .business-section {
        padding: 60px 20px;
        min-height: auto;
        height: auto;
    }

    .business-title {
        font-size: 32px;
    }

    .business-description {
        font-size: 16px;
    }

    .business-buttons {
        justify-content: center;
    }

    .btn-demo,
    .btn-free {
        padding: 14px 24px;
        font-size: 14px;
    }

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

    .solution-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .business-section {
        padding: 40px 15px;
        min-height: auto;
        height: auto;
    }

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

    .business-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-demo,
    .btn-free {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


.integrations-section {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

.integrations-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    /* Added for SVG positioning */
}

/* SVG Container for connecting lines */
.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Flowing current animation - continuous loop */
.flowing-current {
    animation: flowDown 2s linear infinite;
    will-change: stroke-dashoffset;
}

@keyframes flowDown {
    0% {
        stroke-dashoffset: 40;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Convergence point glow at the bottom */
.flow-convergence {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,100,255,0.4) 0%, transparent 70%);
    animation: convergePulse 2s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes convergePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) scale(2.5);
        opacity: 0.7;
    }
}

.integration-logos,
.integrations-title,
.integrations-description,
.integrations-button {
    position: relative;
    z-index: 1;
    /* Above SVG */
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.logo-item {
    width: 60px;
    /* Adjust as needed */
    height: 60px;
    /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.integrations-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.integrations-button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.integrations-button::after {
    content: '>';
    margin-left: 10px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integrations-title {
        font-size: 32px;
    }

    .integrations-description {
        font-size: 16px;
    }

    .integration-logos {
        gap: 20px;
    }

    .logo-item {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .integrations-section {
        padding: 50px 0;
    }

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

    .integrations-description {
        font-size: 15px;
    }

    .integration-logos {
        gap: 15px;
    }

    .logo-item {
        width: 45px;
        height: 45px;
    }
}

/* Business Scale Section */
.business-scale-section {
    background-color: #fff;
    padding: 80px 0;
}

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

.scale-header {
    margin-bottom: 60px;
}

.scale-header-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.scale-header-left {
    display: flex;
    align-items: flex-start;
}

.scale-header-right {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.scale-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    font-family: "Roboto Slab", serif;
}

.scale-subtitle {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
}

.scale-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e8eaed;
}

.tab-button {
    background: none;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #5f6368;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: #1a1a1a;
    font-weight: 700;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #01013b;
    border-radius: 2px 2px 0 0;
}

.tab-button:hover {
    color: #1a1a1a;
}

.scale-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    /* GPU layer isolation for smooth scroll */
    will-change: transform;
    backface-visibility: hidden;
}


.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.customer-image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.customer-image:hover {
    transform: scale(1.05);
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.customer-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.customer-title {
    font-size: 16px;
    color: #5f6368;
    margin: 0;
}

.case-study-link {
    color: #01013b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #01013b;
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.case-study-link:hover {
    color: #02024d;
    border-color: #02024d;
}

/* Responsive Design for Business Scale Section */
@media (max-width: 1024px) {
    .business-scale-container {
        padding: 0 20px;
    }

    .scale-header-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .scale-title {
        font-size: 40px;
    }

    .content-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .content-image {
        min-height: 250px;
        height: 250px;
    }

    .customer-image {
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .business-scale-section {
        padding: 60px 0;
    }

    .scale-title {
        font-size: 32px;
    }

    .scale-subtitle {
        font-size: 16px;
    }

    .scale-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .tab-button {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid #e8eaed;
    }

    .tab-button.active::after {
        display: none;
    }

    .content-card {
        padding: 30px 20px;
        gap: 25px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .customer-name {
        font-size: 18px;
    }

    .customer-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .business-scale-section {
        padding: 40px 0;
    }

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

    .scale-subtitle {
        font-size: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .content-image {
        min-height: 200px;
        height: 200px;
    }

    .customer-image {
        max-height: 200px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}