/* ===== CRM DEFINITION SECTION ===== */

.crm-definition-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.definition-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.definition-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
}

.definition-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.crm-fit-checklist {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.05), rgba(0, 188, 242, 0.02));
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.crm-fit-checklist h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.crm-fit-checklist p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: left;
}

.crm-fit-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crm-fit-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.crm-fit-checklist li i {
    color: #00bcf2;
    font-size: 1.1rem;
    flex-shrink: 0;
}

[data-theme="dark"] .crm-fit-checklist {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(0, 188, 242, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== CRM BENEFITS SECTION ===== */

.crm-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .crm-benefits-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.crm-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 120, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.15);
    border-color: rgba(0, 120, 212, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-stat {
    background: linear-gradient(135deg, rgba(0, 188, 242, 0.1), rgba(0, 120, 212, 0.05));
    border: 1px solid rgba(0, 188, 242, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.benefit-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00bcf2;
    margin-bottom: 5px;
}

.benefit-stat .stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* ===== CRM FEATURES SHOWCASE ===== */

.crm-features-showcase {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-list .feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 120, 212, 0.3);
}

.feature-list .feature-item i {
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-list .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.feature-list .feature-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.features-visual {
    position: relative;
}

.features-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.features-visual:hover .features-image {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.9), rgba(0, 188, 242, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.stat-bubble.stat-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.stat-bubble.stat-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.stat-bubble.stat-3 {
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.bubble-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bubble-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ===== CUSTOMER STORIES SECTION ===== */

.customer-stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.03) 0%, rgba(0, 188, 242, 0.01) 100%);
    position: relative;
}

[data-theme="dark"] .customer-stories-section {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.05) 0%, rgba(0, 188, 242, 0.02) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.1);
    border-color: rgba(0, 120, 212, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(0, 120, 212, 0.1);
    padding: 8px;
}

.story-meta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.story-meta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.story-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 20px;
}

.story-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: #00bcf2;
    line-height: 1;
}

.story-results {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00bcf2;
    margin-bottom: 5px;
}

.result-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== AI PRODUCTIVITY SECTION ===== */

.ai-productivity-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08) 0%, rgba(0, 188, 242, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .ai-productivity-section {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.12) 0%, rgba(0, 188, 242, 0.06) 100%);
}

.ai-productivity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 120, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.productivity-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.productivity-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.productivity-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.productivity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.productivity-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .productivity-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.productivity-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.productivity-stat:hover::before {
    left: 100%;
}

.productivity-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.15);
    border-color: rgba(0, 120, 212, 0.3);
}

.productivity-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00bcf2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 188, 242, 0.3);
}

.productivity-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    text-transform: lowercase;
}

/* ===== CTA SECTION ===== */

.crm-cta-section {
    padding: 80px 0 80px 0;
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crm-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    padding: 40px 20px;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 12px;
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .features-content {
        gap: 60px;
    }
    
    .stat-bubble {
        padding: 12px 16px;
    }
    
    .bubble-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .features-text {
        order: 2;
    }
    
    .features-visual {
        order: 1;
    }
    
    .stat-bubble.stat-1 {
        right: 5%;
    }
    
    .stat-bubble.stat-2 {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .crm-definition-section,
    .crm-benefits-section,
    .crm-features-showcase,
    .customer-stories-section,
    .ai-productivity-section {
        padding: 60px 0;
    }
    
    .productivity-header h2 {
        font-size: 2rem;
    }
    
    .productivity-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .productivity-stat {
        padding: 30px 20px;
    }
    
    .productivity-number {
        font-size: 3rem;
    }
    
    .definition-text h2 {
        font-size: 2rem;
    }
    
    .crm-fit-checklist {
        padding: 20px;
    }
    
    .crm-fit-checklist h3 {
        font-size: 1.2rem;
    }
    
    .crm-cta-section {
        padding: 60px 0 60px 0;
    }
    
    .cta-content {
        padding: 20px 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .features-text h2 {
        font-size: 2rem;
    }
    
    .feature-list .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .story-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .stat-bubble {
        position: relative;
        margin: 10px;
        display: inline-block;
    }
    
    .floating-stats {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
}
