/* Pricing Page Styles */

/* Deployment Grid Styles */
.pricing-page__deployment-section {
    margin: 4rem 0;
}

.pricing-page__deployment-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
}

.pricing-page__deployment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-page__deployment-card {
 background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-page__deployment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.pricing-page__deployment-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2f80ed 0%, #1a5fc4 100%);
    border-radius: 1rem;
}

.pricing-page__deployment-icon img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

.pricing-page__deployment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    text-align: center;
}

.pricing-page__deployment-card p {
 color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-page__deployment-card ul {
    list-style: none;
    padding-left: 0;
}

.pricing-page__deployment-card li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
}

.pricing-page__deployment-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 20px;
    height: 20px;
    background-image: url('/img/noun-check-8054063.svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(97%) contrast(97%);
}

/* ROI Section Styles */
.pricing-page__roi-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
 border-radius: 1rem;
    color: white;
    margin: 4rem 0;
}

.pricing-page__roi-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.pricing-page__roi-content p {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.pricing-page__roi-factors {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-page__roi-factors h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pricing-page__roi-factors ul {
    list-style: none;
    padding-left: 0;
}

.pricing-page__roi-factors li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-page__roi-factors li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    background-image: url('/img/noun-check-8054063.svg');
    background-size: contain;
    background-repeat: no-repeat;
    /* Green checkmark filter */
    filter: brightness(0) saturate(100%) invert(69%) sepia(58%) saturate(425%) hue-rotate(92deg) brightness(95%) contrast(88%);
}

/* Included Items Grid */
.pricing-page__included-grid {
  display: grid;
    grid-template-columns: 1fr;
  gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-page__included-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 4px solid #2f80ed;
}

.pricing-page__check-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(97%) contrast(97%);
}

.pricing-page__included-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 600;
}

.pricing-page__included-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9375rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .pricing-page__deployment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-page__included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
