/* Quick Contact Buttons Page Styles */

/* Hero Section */
.hero.widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero h1 i {
    font-size: 4.5rem;
    color: #ffd700;
}

.icons-yellow {
    color: #ffd700 !important;
}

.icon-red {
    color: #dc3545;
}

.icon-green {
    color: #28a745;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-features-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.contact-features-highlight h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.contact-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-feature:hover {
    transform: translateY(-5px);
}

.contact-feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.contact-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.contact-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    font-size: 2rem;
    color: #667eea;
}

.section-title.black {
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.dull-black {
    color: #222;
}

/* What is it Section */
.what-is-it {
    background: #f8f9fa;
}

.what-is-it .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-is-it p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Problem Solution Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid;
}

.problem-card:first-child {
    border-left-color: #dc3545;
}

.problem-card:last-child {
    border-left-color: #28a745;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card h3 i {
    font-size: 1.3rem;
}

.problem-card p {
    line-height: 1.7;
    color: #555;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #667eea;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
}

.feature-icon i {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}



.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Demo Widget Section */
.demo-widget {
    background: #f8f9fa;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.demo-controls {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.demo-controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.control-group select,
.control-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
}

/* Стили для кнопок управления */
.button-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
}

.control-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.control-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Специальные стили для кнопок цветов */
.button-group:has([data-target="demo-button-color"]) .control-btn {
    min-width: 40px;
    padding: 8px;
    font-size: 1.2rem;
}

/* Стили для сетки позиций */
.position-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.position-row {
    display: flex;
    gap: 8px;
}

.position-group .control-btn {
    flex: 1;
    min-width: 80px;
    font-size: 0.8rem;
    padding: 10px 8px;
}

.demo-messengers {
    margin-bottom: 30px;
}

.demo-messengers h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.messenger-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.messenger-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.messenger-item input[type="checkbox"] {
    margin: 0;
}

.messenger-item label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    min-width: 80px;
}

.messenger-item input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.8rem;
}

.demo-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.demo-btn:hover {
    transform: translateY(-2px);
}

.demo-info {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.demo-info h4 {
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 1.1rem;
}

.demo-info p {
    margin: 0;
    color: #1565c0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-controls-grid {
        grid-template-columns: 1fr;
    }
    
    .messenger-list {
        grid-template-columns: 1fr;
    }
    
    .demo-actions {
        flex-direction: column;
    }
    
    .demo-btn {
        width: 100%;
    }
    
    .demo-btn i {
        margin-right: 6px;
        font-size: 0.9rem;
    }
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-category h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* How it works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step h3 i {
    color: #667eea;
    font-size: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Integration Steps */
.integration-steps {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.integration-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.integration-steps h3 i {
    color: #667eea;
    font-size: 1.5rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.integration-step {
    text-align: center;
    padding: 20px;
}

.integration-step-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #667eea;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
}

.integration-step-icon i {
    font-size: 1.8rem;
}

.integration-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.integration-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Demo Section */
.demo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.demo-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.demo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.demo-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.demo-placeholder p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.demo-feature i {
    font-size: 1.2rem;
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-card h3 i {
    color: #667eea;
    font-size: 1.1rem;
}

.case-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-result {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    font-size: 0.9rem;
    color: #555;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #667eea;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* New Pricing Content Styles */
.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.pricing-info > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    background: #e9ecef;
}

.service-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: #667eea;
    width: 24px;
    text-align: center;
}

.service-name {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.pricing-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.price-info {
    margin-bottom: 15px;
}

.price-info .price {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.price-info .price-period {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.price-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.free-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.free-trial i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #ffd700;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.pricing-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.pricing-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    padding-right: 50px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
    position: relative;
    word-wrap: break-word;
    line-height: 1.4;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #667eea;
    color: white;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.show {
    padding: 20px;
    max-height: 200px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button i {
    font-size: 1rem;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    color: white;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-info {
        padding: 20px;
    }
    
    .pricing-info h3 {
        font-size: 1.5rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .price-info .price {
        font-size: 2.5rem;
    }
    
    .contact-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 i {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 60px 0;
    }

    .section-title i {
        font-size: 3rem;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-products-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px;
        padding-right: 45px;
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-question:after {
        right: 15px;
        font-size: 1.3rem;
    }
    
    .product-content {
        padding: 0 20px 20px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .demo-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-info {
        padding: 15px;
    }
    
    .pricing-info h3 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-icon {
        font-size: 1.2rem;
        margin-right: 10px;
    }
    
    .service-icon i {
        width: 20px;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .price-info .price {
        font-size: 2rem;
    }
    
    .price-description {
        font-size: 1rem;
    }
    
    .free-trial {
        padding: 12px;
        font-size: 1rem;
    }
    
    .free-trial i {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 12px;
        padding-right: 40px;
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .faq-question:after {
        right: 12px;
        font-size: 1.2rem;
    }
}

/* Integration Products Section */
.integration-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.integration-product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    
}

.integration-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.integration-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    position: relative;
    z-index: 1;
}

.product-icon i {
    font-size: 2rem;
}

.product-content {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
    flex-grow: 1;
}

.feature-tag {
    background: #f8f9fa;
    color: #667eea;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 0.8rem;
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
}

.product-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.product-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(3px);
}

/* Demo button colors */
.text-primary {
    color: #007bff !important;
}
.text-success {
    color: #28a745 !important;
}
.text-danger {
    color: #dc3545 !important;
}
.text-purple {
    color: #6f42c1 !important;
}
