/* Premium Pricing Improvements */
.pricing-badge { 
    display: inline-block; 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1)); 
    border: 1px solid rgba(16, 185, 129, 0.3); 
    color: #10b981; 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-top: 16px;
}

.pricing-badge-tier {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 14px;
    border-radius: 8px 8px 8px 0;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 24px;
    transform: translateY(-50%);
}

.pricing-badge-tier.enterprise {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.pricing-card {
    position: relative;
    padding-top: 40px;
}

.price-annual {
    font-size: 13px;
    color: #10b981;
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* New Offer Styling */
.offer-card {
    position: relative;
    overflow: hidden;
}

.offer-savings {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #10b981;
    color: white;
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.pricing-price-lock {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 500;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 20px 0;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 16px;
}

.price-period {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.7);
}

/* Setup Page Bundle Summary */
.bundle-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-card, #1a1a24);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.bundle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bundle-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.bundle-details {
    flex: 1;
}

.bundle-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bundle-includes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.bundle-includes li {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.bundle-price {
    text-align: right;
}

.bundle-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
}

.bundle-price .period {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

.bundle-price .original-price {
    display: block;
    text-decoration: line-through;
    color: rgba(255,255,255,0.3);
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.bundle-price .price-note {
    font-size: 0.85rem;
    color: #10b981;
    margin-top: 0.5rem;
}

/* Setup Progress */
.setup-progress {
    display: flex;
    gap: 1rem;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    opacity: 0.5;
    transition: all 0.3s;
}

.progress-step.active {
    opacity: 1;
    background: rgba(99, 102, 241, 0.15);
}

.progress-step.completed {
    opacity: 1;
}

.progress-step .step-number {
    width: 28px;
    height: 28px;
    background: var(--border, rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.progress-step.completed .step-number {
    background: #10b981;
}

.progress-step .step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Setup Steps */
.setup-step {
    display: none;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.setup-step.active {
    display: block;
}

.step-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.step-actions.center {
    justify-content: center;
}

/* Setup Form */
.setup-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-card, #1a1a24);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.integration-category h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card, #1a1a24);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.integration-item:hover {
    border-color: rgba(255,255,255,0.2);
}

.integration-item.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.integration-item .integration-icon {
    font-size: 1.5rem;
}

.integration-item span {
    flex: 1;
    font-weight: 500;
}

.integration-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #6366f1;
}

.webhook-info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.webhook-info h4 {
    margin-bottom: 0.5rem;
}

.webhook-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* Deployment Summary */
.deployment-summary {
    background: var(--bg-card, #1a1a24);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.deployment-summary h3 {
    margin-bottom: 1.5rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}

.checklist-item .icon {
    width: 28px;
    height: 28px;
    background: var(--border, rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.checklist-item.success .icon {
    background: #10b981;
    color: white;
}

.checklist-item.validating .icon {
    background: #f59e0b;
    color: white;
    animation: spin 1s linear infinite;
}

.checklist-item.error .icon {
    background: #ef4444;
    color: white;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Trust Section */
.trust-section {
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card, #1a1a24);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 24px;
    padding: 2rem;
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(155deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.05));
    border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.result-metric {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

.result-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Company Logos */
.company-logos {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.logos-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    color: rgba(255,255,255,0.3);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-card, #1a1a24);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    nav .nav-links {
        display: none;
    }
    
    nav .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    /* Hero */
    .hero {
        padding: 140px 1.5rem 80px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .outcome-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 4rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .price-original {
        font-size: 1.25rem;
    }
    
    .pricing-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Steps */
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    /* Reliability */
    .reliability-grid {
        grid-template-columns: 1fr;
    }
    
    .reliability-visual {
        order: -1;
    }
    
    /* Trust Badges */
    .trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .trust-badge {
        flex: 0 0 45%;
        justify-content: center;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Blog */
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        order: -1;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .metric {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .pricing-card.offer-card {
        padding-top: 50px;
    }
    
    .offer-savings {
        right: -28px;
        font-size: 10px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }
    
    .solution-card:hover {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: none;
    }
    
    .integration-item:hover {
        border-color: inherit;
    }
}

/* ===== BLOG STYLES ===== */
.blog-featured {
    padding: 3rem 2rem 5rem;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.post-image {
    border-radius: 24px;
    overflow: hidden;
}

.post-image-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.post-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-category {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.post-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.blog-section {
    padding: 4rem 2rem;
    background: var(--bg-card);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.blog-image {
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.02);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #1a1a24, #2a2a35);
}

.blog-card .blog-meta {
    padding: 1.25rem 1.5rem 0;
}

.blog-card .category {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card .date {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.blog-card h3 {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-card p {
    padding: 0 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card .read-more {
    display: inline-block;
    padding: 1rem 1.5rem 1.5rem;
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.blog-card .read-more:hover {
    color: #6366f1;
}

.newsletter {
    text-align: center;
    max-width: 500px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6366f1;
}

/* ===== CONTACT STYLES ===== */
.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255,255,255,0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
}

.contact-form button[type="submit"].success {
    background: #10b981;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-item a {
    color: #a5b4fc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.25rem;
}

.office-location {
    padding: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-location h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.contact-cta {
    padding: 4rem 2rem;
}

.contact-cta .cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Detail Hero Override */
.detail-hero {
    padding: 180px 2rem 5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.detail-hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.35);
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.legal-body h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    color: rgba(255,255,255,0.9);
}

.legal-body p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul {
    list-style: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-body li {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: #a5b4fc;
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cookie-table th {
    background: rgba(255,255,255,0.03);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.cookie-table td {
    color: rgba(255,255,255,0.7);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.98), rgba(20, 20, 30, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.cookie-banner-text a {
    color: #a5b4fc;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
    padding: 5rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.team-avatar {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #a5b4fc;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 2rem;
    background: var(--bg-card);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6366f1, rgba(99,102,241,0.2));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 18px;
    height: 18px;
    background: #6366f1;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: #6366f1;
}

.footer-newsletter .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.deployment-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin: 2rem 0;
}

.deployment-notice .notice-icon {
    font-size: 1.5rem;
}

.deployment-notice h4 {
    margin-bottom: 0.25rem;
}

.deployment-notice p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: #6366f1;
    color: #a5b4fc;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Deployment Result */
.deployment-result {
    text-align: center;
    padding: 3rem;
}

.deployment-result.hidden {
    display: none;
}

.deployment-result .result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.deployment-result h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.deployment-result p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bundle-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .bundle-includes {
        grid-template-columns: 1fr;
    }
    
    .bundle-price {
        text-align: center;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .setup-progress {
        display: none;
    }
}

/* ========================================
   SMOOTH PAGE TRANSITIONS
   ======================================== */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Page fade in on load */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageFadeIn 0.4s ease-out forwards;
}

/* Smooth section reveal */
@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: smoothReveal 0.6s ease-out forwards;
}

/* Card smooth hover */
.solution-card,
.pricing-card,
.blog-card,
.testimonial-card,
.stat-card,
.value-card,
.team-card,
.contact-info-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.solution-card:hover,
.pricing-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.stat-card:hover,
.value-card:hover,
.team-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Button smooth click */
.btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* Nav link smooth underline */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Smooth scroll indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading state */
.loading-skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Smooth toggle */
.smooth-toggle {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal smooth open */
.modal-smooth {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-smooth.active {
    opacity: 1;
    visibility: visible;
}

/* Progress bar smooth */
.progress-smooth {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Badge pop animation */
@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.badge-pop {
    animation: badgePop 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Smooth image reveal */
.image-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-reveal.visible {
    clip-path: inset(0 0 0 0);
}

/* Text gradient flow */
@keyframes gradientFlow {
    background-position: 0% 50%;
    background-position: 100% 50%;
}

.gradient-text {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
}

/* ========================================
   GETTING STARTED PAGE
   ======================================== */

.getting-started-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.getting-started-checklist .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.3s;
}

.getting-started-checklist .checklist-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
}

.getting-started-checklist .check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.getting-started-checklist strong {
    display: block;
    margin-bottom: 0.25rem;
}

.getting-started-checklist p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.getting-started-checklist a {
    color: #a5b4fc;
}

.getting-started-checklist a:hover {
    text-decoration: underline;
}

/* ========================================
   FEATURES PAGE
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.feature-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

/* ========================================
   INTEGRATIONS PAGE
   ======================================== */

.integrations-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.integration-category {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.integration-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.integration-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.2s;
}

.integration-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

/* ========================================
   CASE STUDIES PAGE
   ======================================== */

.case-study-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cs-stat {
    text-align: center;
    flex: 1;
}

.cs-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.cs-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   PRICING PAGE OFFER TAGS
   ======================================== */

.offer-tag {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.offer-tag.popular {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

.pricing-card {
    position: relative;
    padding-top: 3rem;
}

/* ========================================
   TEMPLATE PACKS & COMPARISON
   ======================================== */

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.02);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table th {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.7);
}

.comparison-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.comparison-table .price-row {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table .price-row td {
    padding: 1.5rem;
    font-size: 1.1rem;
}

.comparison-table td strong {
    color: #a5b4fc;
}

/* Value indicator */
.value-tag {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.solution-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Pack value comparison */
.pack-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.pack-features li strong {
    color: #10b981;
}

/* Category highlight */
.category-highlight {
    position: relative;
}

.category-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 3px 0 0 3px;
}

/* Stats bar for templates */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03));
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
    display: block;
}

/* Responsive for table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }
}
