/* Plan Detail Pages Shared Styling */

.plan-hero {
    padding: 7rem 2rem 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero buttons for plan pages */
.plan-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.plan-hero .cta-button,
.plan-hero .btn-secondary {
    min-width: 200px;
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.plan-hero .cta-button {
    flex: 0 1 auto;
}

.plan-hero .btn-secondary {
    flex: 0 1 auto;
}

.plan-hero h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease-out forwards;
}

.plan-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out forwards;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out forwards;
}

.price-tag span {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.price-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease-out forwards;
}

.plan-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.plan-section {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-section:hover {
    transform: translateY(-5px);
}

.plan-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 0.75rem;
}

.plan-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-item-content h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-item-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.testimonial {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin-top: 2rem;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 0.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    color: var(--secondary-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    padding-left: 1rem;
}

.faq-container {
    margin-top: 2rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border-radius: 1rem;
    margin: 0 auto 4rem;
    max-width: 1000px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .cta-button,
.cta-section .btn-secondary {
    min-width: 200px;
    padding: 1.2rem 2.5rem;
}

.plan-comparison {
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
}

.comparison-table th, .comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(15, 23, 42, 0.8);
    font-weight: 600;
    color: var(--text-light);
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.3);
}

.comparison-table tr:hover {
    background-color: rgba(43, 63, 100, 0.3);
}

.comparison-check {
    color: var(--success-color);
}

.comparison-times {
    color: var(--error-color);
}

.highlight-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.lifetime-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    gap: 3rem;
}

.value-item {
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.steps-container {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.requirement-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.requirement-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.requirement-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Premium badge variant */
.highlight-badge.premium {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Responsive styles */
@media (max-width: 992px) {
    .plan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lifetime-value {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .value-item {
        max-width: 100%;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .plan-hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .plan-hero h1 {
        font-size: 2rem;
    }
    
    .price-tag {
        font-size: 2.8rem;
    }
    
    .plan-section {
        padding: 1.8rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 0.8rem;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    /* Mobile button adjustments */
    .plan-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .plan-hero .cta-button,
    .plan-hero .btn-secondary {
        width: 100%;
        min-width: unset;
        padding: 1.1rem 2rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section .cta-button,
    .cta-section .btn-secondary {
        width: 100%;
        min-width: unset;
        padding: 1.1rem 2rem;
    }
}

/* Customer Feedback Sidebar */
.customer-feedback-sidebar {
    margin-top: 2.5rem;
}

.customer-feedback-sidebar .mini-reviews-container {
    max-width: 100%;
    margin-top: 2rem;
}

/* Product Reviews Section */
.lifetime-product-reviews {
    padding: 3rem 0;
    background-color: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lifetime-product-reviews .product-reviews-container {
    padding-top: 0;
}

.lifetime-product-reviews .product-reviews-container .reviews-header h2 {
    margin-top: 0;
}

/* Testimonial Enhancements */
.testimonial {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    z-index: 1;
    position: relative;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--text-light);
}

/* Integration with Existing Styles */
@media (max-width: 992px) {
    .lifetime-product-reviews .product-reviews-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .customer-feedback-sidebar {
        margin-top: 2rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .lifetime-product-reviews .product-reviews-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial::before {
        font-size: 3rem;
        top: -15px;
        left: 15px;
    }
}

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