.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    width: 100%;
    background-image: url("https://images.pexels.com/photos/8159115/pexels-photo-8159115.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-button:active {
    transform: translateY(0);
}

/* Add network connection dots and lines as a pseudo-element */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/placeholder.svg?height=500&width=800&query=network of connected people icons on world map transparent");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.feature-icon-crm {
    background-color: rgba(67, 97, 238, 0.1);
}

.feature-icon-sales {
    background-color: rgba(76, 201, 240, 0.1);
}

.feature-icon-ai {
    background-color: rgba(74, 222, 128, 0.1);
}

.feature-icon-integration {
    background-color: rgba(249, 199, 79, 0.1);
}

.feature-icon-analytics {
    background-color: rgba(76, 201, 240, 0.1);
}

.feature-icon-training {
    background-color: rgba(74, 222, 128, 0.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    max-width: 250px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
}

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

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

.stats-section {
    background-color: #0066ff;
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    top: -5px;
}

.stat-description {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }
}

.cta-section {
    padding: 60px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #e6f2ff, #ffffff);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cta-content {
    flex: 1;
    padding: 40px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-image {
    flex: 0 0 40%;
    max-width: 40%;
    align-self: flex-end;
}

.cta-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive styles */
@media (max-width: 992px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }

    .cta-content {
        padding: 30px;
        text-align: center;
    }

    .cta-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-image {
        flex: 0 0 100%;
        max-width: 100%;
        order: -1;
        max-height: 300px;
        overflow: hidden;
    }

    .cta-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center top;
    }
}

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

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .cta-image img {
        height: 250px;
    }
}

.process-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 60px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}

.step-blue {
    background: linear-gradient(135deg, #0066ff, #00ccff);
}

.step-orange {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.step-teal {
    background: linear-gradient(135deg, #00cccc, #00ffcc);
}

.step-purple {
    background: linear-gradient(135deg, #9966ff, #cc99ff);
}

.step-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.step-icon svg {
    width: 20px;
    height: 20px;
}

.step-icon-blue {
    background-color: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

.step-icon-orange {
    background-color: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.step-icon-teal {
    background-color: rgba(0, 204, 204, 0.1);
    color: #00cccc;
}

.step-icon-purple {
    background-color: rgba(153, 102, 255, 0.1);
    color: #9966ff;
}

/* Responsive styles */
@media (max-width: 992px) {
    .process-container {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .process-container {
        flex-direction: column;
    }

    .process-step {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }
}

.why-choose-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-underline {
    width: 80px;
    height: 3px;
    background-color: #0066ff;
    margin: 0 auto 50px;
}

.comparison-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparison-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.challenges-card {
    background-color: #0066ff;
    color: white;
}

.benefits-card {
    background-color: white;
    color: #333;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-negative,
.icon-positive {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon-negative {
    background-color: #ff4d4d;
    color: white;
}

.icon-negative svg,
.icon-positive svg {
    width: 16px;
    height: 16px;
}

.icon-positive {
    background-color: #4caf50;
    color: white;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 992px) {
    .comparison-container {
        flex-direction: column;
    }

    .comparison-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .challenges-card {
        margin-bottom: 20px;
    }
}

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

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

    .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .comparison-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .icon-negative,
    .icon-positive {
        width: 22px;
        height: 22px;
    }

    .icon-negative svg,
    .icon-positive svg {
        width: 14px;
        height: 14px;
    }
}

.features-section {
    padding: 60px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.header-line {
    width: 4px;
    height: 30px;
    background-color: #0066ff;
    margin-right: 15px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

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

.feature-column {
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.feature-column:last-child {
    border-right: none;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
}

.feature-check {
    color: #0066ff;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
}

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

    .feature-column:nth-child(2) {
        border-right: none;
    }

    .feature-column:nth-child(3) {
        grid-column: span 2;
        border-top: 1px solid #eee;
        padding-top: 30px;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

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

    .feature-column {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .feature-column:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .feature-column:nth-child(3) {
        grid-column: span 1;
        border-top: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.4rem;
    }

    .column-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

.integration-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.integration-table-container {
    overflow-x: auto;
}

.integration-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.integration-table th {
    background-color: #0066ff;
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 15px 20px;
}

.integration-table tr:nth-child(even) {
    background-color: #e6f2ff;
}

.integration-table tr:nth-child(odd) {
    background-color: #f0f8ff;
}

.feature-cell {
    padding: 15px 20px;
    font-weight: 500;
    color: #333;
    width: 25%;
}

.integration-cell {
    padding: 15px 20px;
    width: 75%;
}

.integration-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.integration-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.integration-icon:hover {
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-cell {
        width: 35%;
    }

    .integration-cell {
        width: 65%;
    }

    .integration-icons {
        gap: 10px;
    }

    .integration-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .integration-cell {
        padding: 12px 15px;
    }

    .integration-icons {
        gap: 8px;
    }

    .integration-icon {
        width: 22px;
        height: 22px;
    }
}
