
:root {
    --primary-color: #059669;
    --secondary-color: #0284c7;
    --accent-color: #0d9488;
    --dark-color: #1e293b;
    --light-color: #f1f5f9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

.accounting-page {
    background: #ffffff;
}

/* Hero Section */
.accounting-page .hero-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.accounting-page .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
}

.accounting-page .badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.accounting-page .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.accounting-page .hero-title .highlight {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accounting-page .hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.accounting-page .hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.accounting-page .btn-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
}

.accounting-page .btn-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
}

.accounting-page .btn-outline-primary {
    border: 2px solid #059669;
    color: #059669;
    padding: 14px 35px;
    font-weight: 600;
}

.accounting-page .btn-outline-primary:hover {
    background: #059669;
    color: white;
}

/* Stats Counter */
.accounting-page .stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.accounting-page .stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.accounting-page .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
}

.accounting-page .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    border-radius: 20px;
    font-size: 35px;
    color: white;
}

.accounting-page .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #059669;
    margin: 15px 0 10px;
}

.accounting-page .stat-label {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Categories Section */
.accounting-page .categories-section {
    padding: 80px 0;
    background: #fafafa;
}

.accounting-page .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #059669;
    border-radius: 50px;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.accounting-page .section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.accounting-page .section-description {
    font-size: 17px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
}

.accounting-page .category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.accounting-page .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15);
}

.accounting-page .category-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.accounting-page .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accounting-page .category-card:hover .category-image img {
    transform: scale(1.1);
}

.accounting-page .category-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.accounting-page .category-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.accounting-page .category-badge.trending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.accounting-page .category-content {
    padding: 30px;
}

.accounting-page .category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 15px;
    font-size: 28px;
    color: #059669;
    margin-bottom: 20px;
}

.accounting-page .category-icon.tech {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #0284c7;
}

.accounting-page .category-icon.consulting {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #ec4899;
}

.accounting-page .category-icon.agency {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #f59e0b;
}

.accounting-page .category-icon.realestate {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #8b5cf6;
}

.accounting-page .category-icon.manufacturing {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #ef4444;
}

.accounting-page .category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.accounting-page .category-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.accounting-page .category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.accounting-page .category-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
}

.accounting-page .category-features li i {
    color: #10b981;
    font-size: 14px;
}

.accounting-page .btn-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f1f5f9;
    color: #059669;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accounting-page .btn-category:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

/* Features Section */
.accounting-page .features-advanced {
    padding: 80px 0;
    background: white;
}

.accounting-page .feature-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.accounting-page .feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 25px;
    background: rgba(5, 150, 105, 0.95);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accounting-page .feature-badge.success {
    background: rgba(16, 185, 129, 0.95);
}

.accounting-page .feature-item-inline {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.accounting-page .feature-item-inline:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    transform: translateX(-5px);
}

.accounting-page .feature-icon-inline {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    border-radius: 15px;
    font-size: 26px;
    color: white;
}

.accounting-page .feature-item-inline h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.accounting-page .feature-item-inline p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.accounting-page .pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.accounting-page .pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.accounting-page .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
}

.accounting-page .pricing-card.featured {
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
    border: 3px solid #059669;
    transform: scale(1.05);
}

.accounting-page .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.4);
}

.accounting-page .pricing-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.accounting-page .pricing-price {
    text-align: center;
    margin-bottom: 15px;
}

.accounting-page .pricing-price .currency {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.accounting-page .pricing-price .amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.accounting-page .pricing-price .period {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 5px;
}

.accounting-page .pricing-description {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #e2e8f0;
}

.accounting-page .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.accounting-page .pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #1e293b;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.accounting-page .pricing-features ul li:last-child {
    border-bottom: none;
}

.accounting-page .pricing-features ul li i.fa-check {
    color: #10b981;
    font-size: 16px;
}

.accounting-page .pricing-features ul li.disabled {
    opacity: 0.4;
}

.accounting-page .pricing-features ul li.disabled i.fa-times {
    color: #ef4444;
}

.accounting-page .btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accounting-page .btn-pricing:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    color: white;
}

/* Testimonials */
.accounting-page .testimonials-section {
    padding: 80px 0;
    background: white;
}

.accounting-page .testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.accounting-page .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.accounting-page .testimonial-rating {
    margin-bottom: 20px;
}

.accounting-page .testimonial-rating i {
    color: #f59e0b;
    font-size: 18px;
}

.accounting-page .testimonial-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.accounting-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accounting-page .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #059669;
}

.accounting-page .testimonial-author h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.accounting-page .testimonial-author span {
    font-size: 13px;
    color: #64748b;
}

/* CTA Section */
.accounting-page .cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.accounting-page .cta-box {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
}

.accounting-page .cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.accounting-page .cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.accounting-page .btn-cta {
    padding: 16px 40px;
    background: white;
    color: #059669;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accounting-page .btn-cta:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #059669;
}

/* FAQ Section */
.accounting-page .faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.accounting-page .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accounting-page .accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
}

.accounting-page .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: none;
}

.accounting-page .accordion-body {
    padding: 20px 25px;
    color: #64748b;
    line-height: 1.8;
    background: white;
}

/* Responsive */
@media (max-width: 991px) {
    .accounting-page .hero-title {
        font-size: 36px;
    }
    
    .accounting-page .section-title {
        font-size: 32px;
    }
    
    .accounting-page .pricing-card.featured {
        transform: scale(1);
    }
    
    .accounting-page .cta-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .accounting-page .hero-actions {
        flex-direction: column;
    }
    
    .accounting-page .hero-title {
        font-size: 28px;
    }
    
    .accounting-page .section-title {
        font-size: 26px;
    }
    
    .accounting-page .stat-number {
        font-size: 32px;
    }
    
    .accounting-page .cta-box {
        padding: 40px 30px;
    }
}

 