/*=== Common Components ===*/

/* Content Box */
.content-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

/* Benefits Section */
.benefits-section .benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefits-section .benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.benefit-item h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Features Detailed */
.features-detailed .feature-category {
    margin-bottom: 40px;
}

.category-title {
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.feature-item h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Use Cases */
.use-cases .use-case-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.use-cases .use-case-card:hover {
    transform: translateY(-3px);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.use-case-card h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card ul {
    padding-left: 20px;
}

.use-case-card li {
    margin-bottom: 8px;
    color: #666;
}

/* Implementation Process */
.implementation-process .process-steps {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: #e9ecef;
}

.step-number {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Sidebar Navigation */
.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: #f8f9fa;
}

.sidebar-nav i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Pricing */
.pricing-card.popular {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
}

.price span {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Special Offers */
.special-offers {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
}

.offer-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffeaa7;
}

.offer-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.offer-item h5 {
    color: #856404;
    margin-bottom: 5px;
    font-weight: 600;
}

.offer-item p {
    color: #856404;
    margin-bottom: 5px;
}

.offer-item small {
    color: #856404;
    font-size: 12px;
}

/* Specs & Integration Lists */
.specs-list, .integration-list {
    list-style: none;
    padding: 0;
}

.specs-list li, .integration-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.specs-list li:last-child, .integration-list li:last-child {
    border-bottom: none;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
}

.specs-list strong {
    color: #333;
}

/* CTA & AI Features */
.cta-buttons {
    margin-top: 20px;
}

.ai-feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ai-feature-item h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/*=== Product Specific Colors ===*/

/* whizzhelper */
.whizzhelper .content-box { border-left-color: #1d79eb; }
.whizzhelper .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.whizzhelper .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.whizzhelper .feature-item { border-left-color: #1d79eb; }
.whizzhelper .use-case-icon { color: #1d79eb; }
.whizzhelper .step-number { background: #1d79eb; }
.whizzhelper .sidebar-nav a:hover { color: #1d79eb; }
.whizzhelper .pricing-card.popular { border-color: #1d79eb; }
.whizzhelper .popular-badge { background: #1d79eb; }
.whizzhelper .price { color: #1d79eb; }
.whizzhelper .plan-features li:before { color: #1d79eb; }

/* taskflow */
.taskflow .content-box { border-left-color: #1d79eb; }
.taskflow .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.taskflow .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.taskflow .feature-item { border-left-color: #1d79eb; }
.taskflow .use-case-icon { color: #1d79eb; }
.taskflow .step-number { background: #1d79eb; }
.taskflow .sidebar-nav a:hover { color: #1d79eb; }
.taskflow .pricing-card.popular { border-color: #1d79eb; }
.taskflow .popular-badge { background: #1d79eb; }
.taskflow .price { color: #1d79eb; }
.taskflow .plan-features li:before { color: #1d79eb; }

/* pos software */
.pos-software .content-box { border-left-color: #1d79eb; }
.pos-software .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.pos-software .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.pos-software .feature-item { border-left-color: #1d79eb; }
.pos-software .use-case-icon { color: #1d79eb; }
.pos-software .step-number { background: #1d79eb; }
.pos-software .sidebar-nav a:hover { color: #1d79eb; }
.pos-software .pricing-card.popular { border-color: #1d79eb; }
.pos-software .popular-badge { background: #1d79eb; }
.pos-software .price { color: #1d79eb; }
.pos-software .plan-features li:before { color: #1d79eb; }

/* hrm software */
.hrm-software .content-box { border-left-color: #1d79eb; }
.hrm-software .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.hrm-software .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.hrm-software .feature-item { border-left-color: #1d79eb; }
.hrm-software .use-case-icon { color: #1d79eb; }
.hrm-software .step-number { background: #1d79eb; }
.hrm-software .sidebar-nav a:hover { color: #1d79eb; }
.hrm-software .pricing-card.popular { border-color: #1d79eb; }
.hrm-software .popular-badge { background: #1d79eb; }
.hrm-software .price { color: #1d79eb; }
.hrm-software .plan-features li:before { color: #1d79eb; }

/* daily poster maker */
.daily-poster .content-box { border-left-color: #1d79eb; }
.daily-poster .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.daily-poster .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.daily-poster .feature-item, 
.daily-poster .ai-feature-item { border-left-color: #1d79eb; }
.daily-poster .use-case-icon { color: #1d79eb; }
.daily-poster .step-number { background: #1d79eb; }
.daily-poster .sidebar-nav a:hover { color: #1d79eb; }
.daily-poster .pricing-card.popular { border-color: #1d79eb; }
.daily-poster .popular-badge { background: #1d79eb; }
.daily-poster .price { color: #1d79eb; }
.daily-poster .plan-features li:before { color: #1d79eb; }

/* class point */
.class-point .content-box { border-left-color: #1d79eb; }
.class-point .benefit-icon { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.class-point .category-title { background: linear-gradient(270deg, #0811ab 0%, #4ac4f3 100%); }
.class-point .feature-item { border-left-color: #1d79eb; }
.class-point .use-case-icon { color: #1d79eb; }
.class-point .step-number { background: #1d79eb; }
.class-point .sidebar-nav a:hover { color: #1d79eb; }
.class-point .pricing-card.popular { border-color: #1d79eb; }
.class-point .popular-badge { background: #1d79eb; }
.class-point .price { color: #1d79eb; }
.class-point .plan-features li:before { color: #1d79eb; }

/*=== index ===*/
.products-area .info {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.products-area .info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.products-area .info i {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.products-area .info h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.products-area .info h4 a {
    color: #333;
    text-decoration: none;
}

.products-area .info h4 a:hover {
    color: #007bff;
}

.products-area .info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/*=== Responsive Design ===*/
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: none;
    }
    
    .process-step:after {
        display: none;
    }
}