.elementor-42194 .elementor-element.elementor-element-b51607e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0686d96 *//* ===== PAGE SOCIAL MEDIA MANAGEMENT - PROPULS'LEAD ===== */
/* CSS pour intégration WordPress/Elementor */

/* ===== VARIABLES & RESET ===== */
.pl-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pl-page {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #343a40;
    line-height: 1.6;
}

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

/* ===== SVG ICONS ===== */
.pl-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pl-icon-lg {
    width: 48px;
    height: 48px;
}

.pl-icon-xl {
    width: 64px;
    height: 64px;
}

/* ===== HERO SECTION ===== */
.pl-hero {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pl-drift 20s linear infinite;
}

@keyframes pl-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.pl-hero-content {
    position: relative;
    z-index: 1;
}

.pl-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.pl-hero h1 span {
    color: #b5ce51;
}

.pl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(181, 206, 81, 0.15);
    border: 1px solid rgba(181, 206, 81, 0.4);
    color: #b5ce51;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pl-pulse-badge 2s ease-in-out infinite;
}

@keyframes pl-pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(181, 206, 81, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(181, 206, 81, 0); }
}

.pl-hero-description {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pl-hero-description strong {
    color: #b5ce51;
}

/* Social Platforms */
.pl-social-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.pl-platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pl-platform-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.pl-platform-badge svg {
    width: 22px;
    height: 22px;
}

/* Hero Features */
.pl-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pl-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.pl-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pl-btn-primary {
    background: #ea5e3a;
    color: #ffffff !important;
    border: 2px solid #ea5e3a;
}

.pl-btn-primary:hover {
    background: #d94d28;
    border-color: #d94d28;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 94, 58, 0.35);
    color: #ffffff !important;
}

.pl-btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #b5ce51;
}

.pl-btn-secondary:hover {
    background: #b5ce51;
    color: #2b2e71 !important;
    transform: translateY(-3px);
}

.pl-btn-outline {
    background: transparent;
    color: #2b2e71 !important;
    border: 2px solid #2b2e71;
}

.pl-btn-outline:hover {
    background: #2b2e71;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
.pl-section {
    padding: 80px 0;
}

.pl-section-white {
    background: #ffffff;
}

.pl-section-gray {
    background: #f8f9fa;
}

.pl-section-dark {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
}

.pl-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2b2e71;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.pl-section-dark h2 {
    color: #ffffff;
}

.pl-section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pl-section-tag {
    text-align: center;
    color: #ea5e3a;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* ===== PROBLEMS SECTION ===== */
.pl-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pl-problem-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 46, 113, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pl-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 46, 113, 0.12);
}

.pl-problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #ea5e3a;
}

.pl-problem-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 15px;
}

.pl-problem-card p {
    color: #6c757d;
    font-size: 0.98rem;
    line-height: 1.7;
}

.pl-highlight-box {
    background: linear-gradient(135deg, #efe6d4 0%, #f5f1e8 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

.pl-highlight-box h3 {
    color: #2b2e71;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pl-highlight-box p {
    font-size: 1.15rem;
    color: #343a40;
    margin: 0;
}

/* ===== AI DIFFERENCE SECTION ===== */
.pl-ai-section {
    background: linear-gradient(135deg, #2b2e71 0%, #1a1c4e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pl-ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pl-ai-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pl-ai-text h2 {
    color: #ffffff;
    text-align: left;
    margin-bottom: 25px;
}

.pl-ai-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pl-ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pl-ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pl-ai-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #b5ce51 0%, #8fb33a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pl-ai-feature-icon svg {
    width: 24px;
    height: 24px;
}

.pl-ai-feature h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.pl-ai-feature p {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== SERVICES GRID ===== */
.pl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pl-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(43, 46, 113, 0.08);
    border-left: 4px solid #b5ce51;
    transition: all 0.3s ease;
}

.pl-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 46, 113, 0.12);
}

.pl-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #2b2e71;
}

.pl-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 12px;
}

.pl-service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PLATFORMS SECTION ===== */
.pl-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pl-platform-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(43, 46, 113, 0.1);
    transition: all 0.3s ease;
}

.pl-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(43, 46, 113, 0.15);
}

.pl-platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pl-platform-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-platform-logo.linkedin {
    background: #0077B5;
    color: #ffffff;
}

.pl-platform-logo.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.pl-platform-logo.facebook {
    background: #1877F2;
    color: #ffffff;
}

.pl-platform-logo.tiktok {
    background: #000000;
    color: #ffffff;
}

.pl-platform-logo svg {
    width: 28px;
    height: 28px;
}

.pl-platform-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b2e71;
    margin: 0;
}

.pl-platform-features {
    list-style: none;
}

.pl-platform-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #343a40;
    font-size: 0.98rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.pl-platform-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #b5ce51;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== PROCESS SECTION ===== */
.pl-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pl-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 46, 113, 0.08);
    position: relative;
}

.pl-process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b5ce51, transparent);
}

.pl-process-step:last-child::after {
    display: none;
}

.pl-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.pl-process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 12px;
}

.pl-process-step p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CONTENT EXAMPLES ===== */
.pl-examples-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pl-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pl-example-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 46, 113, 0.08);
    transition: all 0.3s ease;
}

.pl-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 46, 113, 0.12);
}

.pl-example-header {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pl-example-header svg {
    width: 24px;
    height: 24px;
    color: #b5ce51;
}

.pl-example-header h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.pl-example-content {
    padding: 25px;
}

.pl-example-content p {
    color: #343a40;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pl-example-tag {
    display: inline-block;
    background: rgba(181, 206, 81, 0.15);
    color: #266534;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== STATS GRID ===== */
.pl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.pl-stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.pl-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #b5ce51;
    line-height: 1;
    margin-bottom: 10px;
}

.pl-stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.pl-pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pl-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(43, 46, 113, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pl-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(43, 46, 113, 0.15);
}

.pl-pricing-card.pl-featured {
    border-color: #ea5e3a;
    transform: scale(1.05);
}

.pl-pricing-card.pl-featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea5e3a;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pl-pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #2b2e71;
}

.pl-pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 15px;
}

.pl-pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ea5e3a;
    margin-bottom: 5px;
}

.pl-pricing-period {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.pl-pricing-subtitle {
    color: #2b2e71;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.pl-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pl-pricing-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #343a40;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.pl-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #266534;
    font-weight: 700;
}

.pl-pricing-btn {
    display: inline-block;
    background: #2b2e71;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pl-pricing-btn:hover {
    background: #ea5e3a;
    transform: translateY(-2px);
}

.pl-pricing-card.pl-featured .pl-pricing-btn {
    background: #ea5e3a;
}

.pl-pricing-card.pl-featured .pl-pricing-btn:hover {
    background: #d94d28;
}

.pl-pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* ===== LOGOS SECTION - CARROUSEL ===== */
.pl-logos {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.pl-logos-title {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pl-logos-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.pl-logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: pl-scroll 35s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.pl-logos-track:hover {
    animation-play-state: paused;
}

@keyframes pl-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pl-logo-item {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pl-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== FAQ SECTION ===== */
.pl-faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pl-faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pl-faq-item:hover {
    border-color: rgba(43, 46, 113, 0.15);
}

.pl-faq-item.active {
    box-shadow: 0 10px 30px rgba(43, 46, 113, 0.1);
    border-color: #b5ce51;
}

.pl-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    color: #2b2e71;
    gap: 20px;
}

.pl-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #6c757d;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pl-faq-item.active .pl-faq-question::after {
    content: '−';
    color: #ea5e3a;
}

.pl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pl-faq-item.active .pl-faq-answer {
    max-height: 500px;
}

.pl-faq-answer-content {
    padding: 0 26px 22px;
    color: #6c757d;
    font-size: 0.98rem;
    line-height: 1.75;
}

/* ===== GUARANTEE SECTION ===== */
.pl-guarantee-section {
    background: linear-gradient(135deg, #efe6d4 0%, #f5f1e8 100%);
    padding: 80px 0;
}

.pl-guarantee-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(43, 46, 113, 0.1);
    border: 3px solid #b5ce51;
}

.pl-guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #b5ce51;
}

.pl-guarantee-box h2 {
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.pl-guarantee-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

.pl-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pl-guarantee-item svg {
    width: 24px;
    height: 24px;
    color: #b5ce51;
    flex-shrink: 0;
    margin-top: 2px;
}

.pl-guarantee-item p {
    color: #343a40;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.pl-guarantee-item strong {
    color: #2b2e71;
}

/* ===== CONTACT SECTION ===== */
.pl-contact-section {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.pl-contact-section h2 {
    color: #ffffff;
}

.pl-contact-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.pl-contact-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pl-contact-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.pl-contact-feature span:first-child {
    color: #b5ce51;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pl-problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pl-ai-text h2 {
        text-align: center;
    }
    
    .pl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-process-step::after {
        display: none;
    }
    
    .pl-examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pl-pricing-card.pl-featured {
        transform: scale(1);
    }
    
    .pl-guarantee-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pl-hero {
        padding: 100px 0 80px;
    }
    
    .pl-hero h1 {
        font-size: 2rem;
    }
    
    .pl-social-platforms {
        flex-direction: column;
        gap: 10px;
    }
    
    .pl-hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .pl-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pl-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .pl-section {
        padding: 60px 0;
    }
    
    .pl-section h2 {
        font-size: 1.8rem;
    }
    
    .pl-problems-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-process-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-examples-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-contact-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .pl-guarantee-box {
        padding: 35px 25px;
    }
}/* End custom CSS */