/******************************************************************/
/* benefits.css                                                   */
/******************************************************************/

/* Enhanced Benefits Page Styles */
.benefits-sidebar-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .benefits-sidebar-item:hover {
        background: rgba(29, 151, 211, 0.05);
        transform: translateX(5px);
    }

    .benefits-sidebar-item.current {
        background: linear-gradient(90deg, rgba(29, 151, 211, 0.1), transparent);
        border-left: 3px solid #1d97d3;
        font-weight: 600;
    }

.benefit-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Key Points Highlight Box */
.key-points-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #1d97d3;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

    .key-points-box h3 {
        color: #1d97d3;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.key-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.key-point-icon {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1d97d3, #10b981);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

.benefit-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.benefit-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Content Typography Improvements */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.subpage h2 {
    color: #1d97d3;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Trial Highlight Section */
.trial-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 2rem;
    margin: 0;
    text-align: center;
}

    .trial-highlight h3 {
        color: #166534;
        margin-bottom: 1rem;
    }

    .trial-highlight .highlight-number {
        font-size: 3rem;
        font-weight: bold;
        color: #10b981;
        display: block;
        margin-bottom: 0.5rem;
    }

/* Trial highlight tagline styling */
.trial-highlight-tagline {
    font-size: 1.1rem;
    color: #047857;
    margin-bottom: 1.5rem;
}

/* Top Benefits heading */
.benefits-heading {
    margin-top: 2.5rem;
    margin-bottom: 0;
    color: #2c3e50;
}

/* Hide desktop-only text on mobile */
@media (max-width: 767px) {
    .desktop-only-text {
        display: none;
    }

    /* Break trial highlight tagline into separate lines on mobile */
    .trial-highlight-phrase {
        display: block;
    }
}
