/* ===== ENHANCED CRM INTEGRATIONS PAGE STYLES ===== */

/* ===== HERO SECTION ===== */
.integrations-hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 1) 0%, 
        rgba(26, 26, 46, 0.9) 50%, 
        rgba(10, 10, 20, 1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.integrations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(138, 87, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 58, 149, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 87, 255, 0.15);
    border: 1px solid rgba(138, 87, 255, 0.3);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Enhanced Integration Stats Grid */
.integration-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.integration-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.integration-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.05) 0%, 
        rgba(255, 58, 149, 0.03) 50%, 
        rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.integration-stat-card:hover::before {
    opacity: 1;
}

.integration-stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(138, 87, 255, 0.3);
    box-shadow: 0 15px 40px rgba(138, 87, 255, 0.2);
}

.integration-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: all var(--transition-bounce);
}

.stat-icon.integrations-count {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-icon.setup-time {
    background: linear-gradient(135deg, var(--green-accent), #22ff99);
}

.stat-icon.sync-speed {
    background: linear-gradient(135deg, #00D4FF, #5B73FF);
}

.stat-icon.reliability {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.integration-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== ROI & BENEFITS SECTION ===== */
.roi-benefits-section {
    padding: var(--section-padding) 0;
    background: var(--darker-bg);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roi-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.roi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.05) 0%, 
        rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.roi-card:hover::before {
    opacity: 1;
}

.roi-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 87, 255, 0.3);
    box-shadow: 0 20px 40px rgba(138, 87, 255, 0.15);
}

.roi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-bounce);
}

.roi-card:hover .roi-icon {
    transform: scale(1.1) rotate(10deg);
}

.roi-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.roi-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.roi-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== AI FEATURES SECTION ===== */
.ai-features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(10, 10, 20, 1) 50%, 
        rgba(26, 26, 46, 0.8) 100%);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.05) 0%, 
        rgba(255, 58, 149, 0.03) 50%, 
        rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 87, 255, 0.3);
    box-shadow: 0 20px 40px rgba(138, 87, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--darker-bg);
    position: relative;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.workflow-step:nth-child(even) {
    grid-template-columns: 80px 1fr 1fr;
}

.workflow-step:nth-child(even) .step-content {
    order: 2;
}

.workflow-step:nth-child(even) .step-visual {
    order: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(138, 87, 255, 0.3);
    position: relative;
    z-index: 10;
}

.step-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-accent), #22ff99);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 0.8rem;
}

.step-visual {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Chat Preview */
.chat-preview {
    width: 100%;
    max-width: 400px;
}

.chat-bubble {
    background: var(--darker-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    position: relative;
    max-width: 85%;
    animation: slideIn 0.3s ease-out;
}

.chat-bubble.ai {
    background: rgba(138, 87, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    margin-left: 0;
}

.chat-bubble.customer {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid var(--green-accent);
    margin-left: 15%;
}

.chat-bubble p {
    color: var(--text-light);
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.ai-analysis {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.analysis-tag {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-tag.qualified {
    background: rgba(0, 255, 136, 0.2);
    color: var(--green-accent);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.analysis-tag.high-intent {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.analysis-tag.urgent {
    background: rgba(255, 58, 149, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 58, 149, 0.3);
}

/* Data Enrichment Preview */
.data-enrichment-preview {
    width: 100%;
    max-width: 350px;
}

.contact-card {
    background: var(--darker-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info h4 {
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.lead-score {
    margin-left: auto;
    text-align: center;
}

.lead-score span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-accent);
    line-height: 1;
}

.lead-score small {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enriched-data {
    margin-bottom: 1.5rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.data-row strong {
    color: var(--text-light);
}

.validation-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.verified {
    background: rgba(0, 255, 136, 0.2);
    color: var(--green-accent);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge.enriched {
    background: rgba(138, 87, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(138, 87, 255, 0.3);
}

/* CRM Sync Preview */
.crm-sync-preview {
    width: 100%;
    max-width: 380px;
}

.sync-animation {
    text-align: center;
    margin-bottom: 2rem;
}

.sync-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    animation: spin 2s linear infinite;
}

.sync-text {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
    font-weight: 500;
}

.sync-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite;
}

.crm-record {
    background: var(--darker-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.record-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--green-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.timestamp {
    margin-left: auto;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.record-details p {
    color: var(--text-gray);
    margin: 0.75rem 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.record-details strong {
    color: var(--text-light);
}

.automation-triggers {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.trigger-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-accent);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
    padding: var(--section-padding) 0;
    background: var(--darker-bg);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.05) 0%, 
        rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 87, 255, 0.3);
    box-shadow: 0 20px 40px rgba(138, 87, 255, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.company-info h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.company-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.story-quote {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    line-height: 1;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(138, 87, 255, 0.05);
    border: 1px solid rgba(138, 87, 255, 0.1);
    border-radius: var(--radius-lg);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== SECURITY SECTION ===== */
.security-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(10, 10, 20, 1) 50%, 
        rgba(26, 26, 46, 0.8) 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.05) 0%, 
        rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.security-card:hover::before {
    opacity: 1;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 87, 255, 0.3);
    box-shadow: 0 15px 40px rgba(138, 87, 255, 0.15);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-bounce);
}

.security-card h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.badge-item:hover {
    background: rgba(138, 87, 255, 0.1);
    border-color: rgba(138, 87, 255, 0.3);
    color: var(--primary-color);
}

.badge-item i {
    color: var(--green-accent);
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, 
        rgba(138, 87, 255, 0.1) 0%, 
        rgba(255, 58, 149, 0.08) 50%, 
        rgba(0, 255, 136, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0;
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-guarantees {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.guarantee-item i {
    color: var(--green-accent);
    font-size: 0.9rem;
}

.cta-social-proof {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Background Elements */
.integrations-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circuit {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(138, 87, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-circuit-1 {
    top: 10%;
    left: 10%;
    animation-delay: -2s;
}

.bg-circuit-2 {
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

.bg-circuit-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: -6s;
}

.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 15%; animation-delay: -1s; }
.dot-2 { top: 40%; right: 20%; animation-delay: -2s; }
.dot-3 { bottom: 30%; left: 25%; animation-delay: -3s; }
.dot-4 { top: 70%; right: 30%; animation-delay: -4s; }
.dot-5 { bottom: 15%; right: 15%; animation-delay: -5s; }

/* ===== ANIMATIONS ===== */
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .workflow-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .workflow-step:nth-child(even) .step-content,
    .workflow-step:nth-child(even) .step-visual {
        order: unset;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .story-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .integrations-hero {
        padding: 10rem 0 6rem;
    }
    
    .integration-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-steps {
        gap: 2rem;
    }
    
    .step-visual {
        min-height: 200px;
    }

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

    .ai-features-grid {
        grid-template-columns: 1fr;
    }

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

    .compliance-badges {
        gap: 1rem;
    }

    .cta-social-proof {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .integrations-hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }
    
    .integration-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-social-proof {
        flex-direction: column;
        gap: 1.5rem;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .compliance-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .story-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-visual {
        padding: 1.5rem;
        min-height: 150px;
    }

    .roi-card {
        padding: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .security-card {
        padding: 1.5rem;
    }

    .story-card {
        padding: 2rem;
    }

    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .lead-score {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .integration-stat-card,
    .sync-icon,
    .roi-card,
    .feature-card,
    .security-card,
    .story-card {
        animation: none !important;
        transition: none !important;
    }
    
    .progress-bar {
        animation: none !important;
    }
    
    .badgeFloat,
    .float,
    .spin {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .integration-stat-card,
    .step-content,
    .step-visual,
    .roi-card,
    .feature-card,
    .security-card,
    .story-card {
        background: #000;
        border: 2px solid #fff;
    }
    
    .stat-icon,
    .step-icon,
    .roi-icon,
    .feature-icon,
    .security-icon {
        background: #fff;
        color: #000;
    }
}