.elementor-25376 .elementor-element.elementor-element-1161d22{--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-dd37371 *//* ===== PROPULS'LEAD - CSS POUR ELEMENTOR ===== */
/* Police à ajouter dans Elementor > Réglages > Typographie personnalisée */
/* Ou ajouter dans le head : <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet"> */

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

.pl-section {
    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;
}

/* ===== HERO SECTION ===== */
.pl-hero {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
    padding: 100px 0;
    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-badge {
    display: inline-block;
    background: rgba(181, 206, 81, 0.2);
    border: 1px solid #b5ce51;
    color: #b5ce51;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.pl-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

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

.pl-hero .pl-description {
    font-size: 1.2rem;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.7;
    color: #ffffff;
}

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

.pl-btn {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    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 svg {
    width: 18px;
    height: 18px;
}

.pl-hero-reassurance {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    color: #ffffff;
}

.pl-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.pl-stat-item {
    text-align: center;
}

.pl-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #b5ce51;
    line-height: 1.2;
}

.pl-stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    color: #ffffff;
}

.pl-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* ===== LOGOS SECTION ===== */
.pl-logos {
    padding: 40px 0;
    background: #ffffff;
    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;
}

/* ===== SECTION COMMUNE ===== */
.pl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pl-section-tag {
    display: inline-block;
    background: #2b2e71;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pl-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2b2e71;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pl-section-header p {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.pl-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.pl-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pl-services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pl-service-highlight {
    margin-top: 30px;
}

.pl-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.pl-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2b2e71, #266534);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.pl-service-card:hover::before {
    transform: scaleX(1);
}

.pl-service-card.pl-featured {
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 60px;
}

.pl-service-card.pl-featured::before {
    display: none;
}

.pl-service-card.pl-featured .pl-service-icon {
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.pl-service-card.pl-featured .pl-service-icon svg {
    width: 36px;
    height: 36px;
}

.pl-service-card.pl-featured h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pl-service-card.pl-featured p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.pl-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pl-service-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

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

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

.pl-service-featured-content {
    flex: 1;
}

/* ===== METHOD SECTION ===== */
.pl-method {
    padding: 100px 0;
    background: #ffffff;
}

.pl-method-timeline {
    position: relative;
    margin-top: 70px;
}

.pl-timeline-line {
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 120px;
    width: 3px;
    background: linear-gradient(180deg, #2b2e71 0%, #266534 100%);
    border-radius: 3px;
}

.pl-method-step {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
}

.pl-step-marker {
    width: 140px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.pl-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 12px;
    box-shadow: 0 8px 25px rgba(43, 46, 113, 0.25);
    position: relative;
    z-index: 2;
}

.pl-step-duration {
    background: #ea5e3a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.pl-step-content {
    flex: 1;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.pl-step-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 30px;
    width: 24px;
    height: 24px;
    background: #f8f9fa;
    transform: rotate(45deg);
}

.pl-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pl-step-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pl-step-icon svg {
    width: 26px;
    height: 26px;
    color: #2b2e71;
}

.pl-step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b2e71;
}

.pl-step-description {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pl-step-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pl-detail-column {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
}

.pl-detail-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2b2e71;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b5ce51;
}

.pl-detail-column ul {
    list-style: none;
}

.pl-detail-column li {
    font-size: 0.95rem;
    color: #343a40;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pl-detail-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #b5ce51;
    border-radius: 50%;
}

.pl-method-result {
    margin-top: 60px;
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    border-radius: 20px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.pl-method-result::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(181, 206, 81, 0.15);
    border-radius: 50%;
}

.pl-result-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pl-result-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pl-result-icon svg {
    width: 40px;
    height: 40px;
    color: #b5ce51;
}

.pl-result-text {
    flex: 1;
}

.pl-result-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.pl-result-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.pl-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b2e71 0%, #266534 100%);
    color: #ffffff;
}

.pl-testimonials .pl-section-header h2 {
    color: #ffffff !important;
}

.pl-testimonials .pl-section-header p {
    color: rgba(255,255,255,0.8) !important;
}

.pl-testimonials .pl-section-tag {
    background: #b5ce51;
    color: #2b2e71;
}

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

.pl-testimonial-bottom {
    margin-top: 30px;
}

.pl-testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.pl-testimonial-card.pl-featured {
    grid-column: span 2;
    background: #ffffff;
    color: #343a40;
}

.pl-testimonial-card.pl-light {
    background: #ffffff;
    color: #343a40;
}

.pl-testimonial-card.pl-light .pl-author-info h4 {
    color: #2b2e71;
}

.pl-testimonial-card.pl-light .pl-author-info span {
    color: #6c757d;
}

.pl-testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.pl-testimonial-card.pl-featured .pl-testimonial-quote {
    font-size: 1.1rem;
    color: #343a40;
}

.pl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pl-author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ea5e3a, #b5ce51);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    object-fit: cover;
}

img.pl-author-avatar {
    background: none;
}

.pl-testimonial-card.pl-featured .pl-author-avatar {
    background: linear-gradient(135deg, #2b2e71, #266534);
}

.pl-author-info h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: #ffffff;
}

.pl-author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
}

.pl-testimonial-card.pl-featured .pl-author-info h4 {
    color: #2b2e71;
}

.pl-testimonial-card.pl-featured .pl-author-info span {
    color: #6c757d;
}

/* ===== FIT SECTION ===== */
.pl-fit {
    padding: 100px 0;
    background: #ffffff;
}

.pl-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pl-fit-column {
    padding: 45px;
    border-radius: 20px;
}

.pl-fit-yes {
    background: linear-gradient(135deg, rgba(38, 101, 52, 0.08) 0%, rgba(181, 206, 81, 0.12) 100%);
    border: 2px solid rgba(181, 206, 81, 0.3);
}

.pl-fit-no {
    background: linear-gradient(135deg, rgba(234, 94, 58, 0.06) 0%, rgba(234, 94, 58, 0.1) 100%);
    border: 2px solid rgba(234, 94, 58, 0.2);
}

.pl-fit-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.pl-fit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-fit-icon.pl-yes {
    background: #266534;
}

.pl-fit-icon.pl-no {
    background: #ea5e3a;
}

.pl-fit-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.pl-fit-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b2e71;
}

.pl-fit-column ul {
    list-style: none;
}

.pl-fit-column li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.02rem;
    color: #343a40;
    line-height: 1.5;
}

.pl-fit-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #266534;
    font-weight: 700;
    font-size: 1.1rem;
}

.pl-fit-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ea5e3a;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== MATURITY SECTION ===== */
.pl-maturity {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.pl-maturity-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.pl-maturity-card:hover {
    border-color: #b5ce51;
    transform: translateY(-5px);
}

.pl-maturity-card.pl-highlight {
    background: #2b2e71;
    color: #ffffff;
}

.pl-maturity-card.pl-highlight h3 {
    color: #ffffff;
}

.pl-maturity-card.pl-highlight p {
    color: rgba(255,255,255,0.85);
}

.pl-maturity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-maturity-card.pl-highlight .pl-maturity-icon {
    background: rgba(181, 206, 81, 0.2);
}

.pl-maturity-icon svg {
    width: 32px;
    height: 32px;
    color: #2b2e71;
}

.pl-maturity-card.pl-highlight .pl-maturity-icon svg {
    color: #b5ce51;
}

.pl-maturity-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 15px;
}

.pl-maturity-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pl-btn-link {
    color: #ea5e3a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.pl-btn-link:hover {
    gap: 12px;
}

.pl-maturity-card.pl-highlight .pl-btn-link {
    color: #b5ce51;
}

/* ===== ABOUT SECTION ===== */
.pl-about {
    padding: 100px 0;
    background: #ffffff;
}

.pl-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.pl-about-image {
    position: relative;
}

.pl-about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(43, 46, 113, 0.15);
}

.pl-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ea5e3a;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(234, 94, 58, 0.3);
}

.pl-about-badge .pl-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: #ffffff;
}

.pl-about-badge span {
    font-size: 0.9rem;
    color: #ffffff;
}

.pl-about-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #2b2e71;
    margin-bottom: 25px;
    line-height: 1.25;
}

.pl-about-content p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pl-about-content p strong {
    color: #343a40;
}

/* ===== FAQ SECTION ===== */
.pl-faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.pl-faq-categories {
    max-width: 900px;
    margin: 60px auto 0;
}

.pl-faq-category {
    margin-bottom: 50px;
}

.pl-faq-category:last-child {
    margin-bottom: 0;
}

.pl-faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #b5ce51;
    display: inline-block;
}

.pl-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.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 span {
    flex: 1;
}

.pl-faq-question svg {
    width: 20px;
    height: 20px;
    color: #6c757d;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pl-faq-item.active .pl-faq-question svg {
    transform: rotate(180deg);
    color: #ea5e3a;
}

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

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

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

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

.pl-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(181, 206, 81, 0.1);
    border-radius: 50%;
}

.pl-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(234, 94, 58, 0.1);
    border-radius: 50%;
}

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

.pl-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pl-services-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    .pl-service-card.pl-featured {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    .pl-timeline-line {
        display: none;
    }
    .pl-method-step {
        flex-direction: column;
        gap: 25px;
    }
    .pl-step-marker {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .pl-step-number {
        margin: 0;
    }
    .pl-step-content::before {
        display: none;
    }
    .pl-result-content {
        flex-direction: column;
        text-align: center;
    }
    .pl-method-result {
        padding: 40px 30px;
    }
    .pl-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .pl-hero {
        padding: 70px 0;
    }
    .pl-hero h1 {
        font-size: 2.2rem;
    }
    .pl-hero .pl-description {
        font-size: 1.05rem;
    }
    .pl-hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    .pl-stat-divider {
        width: 60px;
        height: 1px;
    }
    .pl-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .pl-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .pl-services-grid,
    .pl-services-grid-bottom {
        grid-template-columns: 1fr;
    }
    .pl-service-card.pl-featured {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 20px;
    }
    .pl-service-card.pl-featured h3 {
        font-size: 1.3rem;
    }
    .pl-service-card.pl-featured p {
        font-size: 1rem;
    }
    .pl-step-details {
        grid-template-columns: 1fr;
    }
    .pl-step-content {
        padding: 30px 25px;
    }
    .pl-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .pl-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .pl-testimonial-card.pl-featured {
        grid-column: span 1;
    }
    .pl-fit-grid {
        grid-template-columns: 1fr;
    }
    .pl-fit-column {
        padding: 35px 30px;
    }
    .pl-maturity-grid {
        grid-template-columns: 1fr;
    }
    .pl-section-header h2 {
        font-size: 2rem;
    }
    .pl-cta h2 {
        font-size: 2rem;
    }
}/* End custom CSS */