.bbp-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bbp-hero-content {
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

.bbp-hero-align-left .bbp-hero-content {
    text-align: left;
    margin-right: auto;
}

.bbp-hero-align-right .bbp-hero-content {
    text-align: right;
    margin-left: auto;
}

.bbp-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bbp-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.bbp-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid currentColor;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bbp-hero-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.bbp-pricing-table {
    display: grid;
    gap: 30px;
    padding: 40px 20px;
}

.bbp-pricing-columns-1 { grid-template-columns: 1fr; }
.bbp-pricing-columns-2 { grid-template-columns: repeat(2, 1fr); }
.bbp-pricing-columns-3 { grid-template-columns: repeat(3, 1fr); }
.bbp-pricing-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .bbp-pricing-table {
        grid-template-columns: 1fr !important;
    }
}

.bbp-pricing-plan {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.bbp-pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bbp-pricing-featured {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.bbp-pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.bbp-pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bbp-pricing-price {
    margin-bottom: 30px;
}

.bbp-pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.bbp-pricing-period {
    font-size: 1rem;
    color: #666;
}

.bbp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.bbp-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bbp-pricing-features li:last-child {
    border-bottom: none;
}

.bbp-pricing-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bbp-pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.bbp-testimonials {
    padding: 40px 20px;
}

.bbp-testimonials-grid {
    display: grid;
    gap: 30px;
}

.bbp-testimonials-columns-1 { grid-template-columns: 1fr; }
.bbp-testimonials-columns-2 { grid-template-columns: repeat(2, 1fr); }
.bbp-testimonials-columns-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .bbp-testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

.bbp-testimonial {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.bbp-testimonial:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bbp-testimonial-rating {
    margin-bottom: 15px;
}

.bbp-star {
    color: #ddd;
    font-size: 1.2rem;
}

.bbp-star-filled {
    color: #ffc107;
}

.bbp-testimonial-content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.bbp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bbp-testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.bbp-testimonial-info {
    display: flex;
    flex-direction: column;
}

.bbp-testimonial-name {
    font-weight: 600;
    color: #333;
}

.bbp-testimonial-role {
    font-size: 0.9rem;
    color: #666;
}

.bbp-countdown-timer {
    text-align: center;
    padding: 40px 20px;
}

.bbp-countdown-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.bbp-countdown-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bbp-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.bbp-countdown-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.bbp-countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.8;
}
