/* GHL Promotion After Pricing */
.ghl-promotion-pricing {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.ghl-promotion-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,12 25,23 15,30 5,23 5,12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
}

.ghl-pricing-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ghl-pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.ghl-pricing-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.ghl-pricing-text .ghl-highlight {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.ghl-pricing-text p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

.ghl-pricing-button {
    background: white;
    color: #059669;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.ghl-pricing-button:hover {
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #059669;
}

.ghl-pricing-button i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghl-promotion-pricing {
        padding: 2rem 0;
    }
    
    .ghl-pricing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ghl-pricing-icon {
        margin: 0 auto;
    }
    
    .ghl-pricing-text h3 {
        font-size: 1.5rem;
    }
    
    .ghl-pricing-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ghl-pricing-text h3 {
        font-size: 1.3rem;
    }
    
    .ghl-pricing-text p {
        font-size: 0.95rem;
    }
    
    .ghl-pricing-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .ghl-pricing-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}