/* Business Landing Page Styles */

.business-hero-area {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0e1133 0%, #1a1f4d 100%);
    position: relative;
    overflow: hidden;
}

.business-hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 62, 102, 0.15);
    color: #ff3e66;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 62, 102, 0.3);
}

.business-hero-content .title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.business-hero-content .title span {
    color: #ff3e66;
}

.business-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Image Blending */
.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, #141843 100%);
    /* Match the section background roughly */
    pointer-events: none;
}

.hero-image-blend {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.business-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.business-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #ff3e66;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ff3e66;
}

.business-btn-primary:hover {
    background: transparent;
    color: #ff3e66;
}

.business-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.business-btn-secondary:hover {
    background: #ffffff;
    color: #0e1133;
    border-color: #ffffff;
}

/* Section Titles */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title .sub-title {
    display: inline-block;
    color: #ff3e66;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-title .title {
    font-size: 42px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.business-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(14, 17, 51, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(14, 17, 51, 0.05);
}

.business-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 17, 51, 0.1);
    border-color: rgba(255, 62, 102, 0.2);
}

.business-feature-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 62, 102, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ff3e66;
    font-size: 32px;
    transition: all 0.3s ease;
}

.business-feature-card:hover .icon {
    background: #ff3e66;
    color: #ffffff;
}

.business-feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e1133;
}

.business-feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tablet Mockup */
.tablet-mockup-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Ensure it takes full width of the column */
    margin: 0 auto;
}

.tablet-device {
    position: relative;
    background: #1a1f35;
    /* Dark frame color */
    border-radius: 30px;
    padding: 15px;
    /* Bezel width */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #2a3045;
}

.tablet-screen {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Typical tablet aspect ratio */
    width: 100%;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tablet-camera {
    position: absolute;
    top: 50%;
    left: 8px;
    /* Position on the left bezel for landscape */
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* For portrait orientation if needed, or adjust based on preference */
@media (max-width: 768px) {
    .tablet-device {
        padding: 10px;
        border-radius: 20px;
    }

    .tablet-screen {
        border-radius: 14px;
    }
}

.how-it-works-step {
    position: relative;
    padding: 30px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0e1133;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0e1133;
}

/* Streamlined How It Works (Timeline) */
.how-it-works-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.how-it-works-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 29px;
    /* Align with the center of the dots */
    width: 2px;
    background: rgba(14, 17, 51, 0.1);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px solid #ff3e66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ff3e66;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 62, 102, 0.15);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: #ff3e66;
    color: #ffffff;
    transform: scale(1.1);
}

.timeline-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 62, 102, 0.2);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .how-it-works-timeline::before {
        left: 19px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 30px;
    }
}

/* Dashboard Section List */
.check-list-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-2 li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 18px;
    color: #0e1133;
    font-weight: 500;
    line-height: 1.5;
}

.check-list-2 li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #ff3e66;
    font-size: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(14, 17, 51, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 17, 51, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid #ff3e66;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(255, 62, 102, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3e66;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #0e1133;
    line-height: 1;
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.pricing-features li i {
    color: #ff3e66;
    margin-right: 12px;
    font-size: 18px;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.pricing-btn-outline {
    border: 2px solid #0e1133;
    color: #0e1133;
    background: transparent;
}

.pricing-btn-outline:hover {
    background: #0e1133;
    color: #ffffff;
}

.pricing-btn-fill {
    background: #ff3e66;
    color: #ffffff;
    border: 2px solid #ff3e66;
}

.pricing-btn-fill:hover {
    background: transparent;
    color: #ff3e66;
}

/* Value Prop Section */
.value-prop-section {
    background: #0e1133;
    color: #ffffff;
    padding: 100px 0;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.value-list li i {
    width: 30px;
    height: 30px;
    background: rgba(255, 62, 102, 0.2);
    color: #ff3e66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .business-hero-content .title {
        font-size: 42px;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .business-hero-content .title {
        font-size: 36px;
    }

    .business-hero-area {
        padding: 120px 0 80px;
    }

    /* Mobile Button Layout */
    .business-hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .business-btn-primary,
    .business-btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Mobile Image Adjustments */
    .hero-image-container {
        margin-top: 40px;
    }

    .about-image {
        margin-bottom: 40px;
    }

    /* Tablet Mockup Mobile */
    .tablet-device {
        border-radius: 20px;
        padding: 10px;
    }

    .tablet-screen {
        border-radius: 12px;
    }

    /* Typography Adjustments */
    .section-title .title {
        font-size: 32px;
    }

    .business-hero-content p {
        font-size: 18px;
    }

    /* Timeline Adjustments */
    .how-it-works-timeline {
        padding-left: 10px;
        padding-right: 10px;
    }
}