/* Pricing Page Specific Styles */

.pricing-hero {
    padding: 8rem 0 4rem;
    background: var(--background-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.pricing-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
}

.tab-btn.active {
    color: var(--background-color);
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0 6rem;
    background: var(--surface-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--background-color);
    padding: 0.5rem 2rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.savings {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hidden {
    display: none;
}

.card-features {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:has(❌) {
    opacity: 0.5;
}

.card-footer {
    text-align: center;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Custom Solutions Section */
.custom-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.custom-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.custom-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.custom-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-card {
    width: 300px;
    height: 300px;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.grid-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    animation: gridPulse 3s ease-in-out infinite;
}

.grid-item.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.3s; }
.grid-item:nth-child(3) { animation-delay: 0.6s; }
.grid-item:nth-child(4) { animation-delay: 0.9s; }
.grid-item:nth-child(5) { animation-delay: 1.2s; }
.grid-item:nth-child(6) { animation-delay: 1.5s; }
.grid-item:nth-child(7) { animation-delay: 1.8s; }
.grid-item:nth-child(8) { animation-delay: 2.1s; }
.grid-item:nth-child(9) { animation-delay: 2.4s; }

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--surface-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.author-info h5 {
    color: var(--text-primary);
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--surface-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .custom-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .pricing-hero {
        padding: 5rem 0 3rem;
    }
    
    .pricing-hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .pricing-hero p {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 280px;
    }

    .tab-btn {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0 1rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .popular-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-description {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .custom-section {
        padding: 4rem 0;
    }
    
    .custom-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .custom-visual {
        order: -1;
    }
    
    .custom-card {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .custom-text h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .custom-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .custom-features {
        margin: 2rem 0;
    }
    
    .custom-features li {
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 4rem 0 2rem;
    }
    
    .pricing-hero h1 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    .pricing-hero p {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .billing-toggle {
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .toggle-label {
        font-size: 0.9rem;
    }
    
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .plan-description {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .period {
        font-size: 0.8rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .btn-full {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .custom-section {
        padding: 3rem 0;
    }
    
    .custom-text h2 {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }
    
    .custom-text p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .custom-features {
        margin: 1.5rem 0;
    }
    
    .custom-features li {
        font-size: 0.85rem;
    }
    
    .custom-card {
        width: 200px;
        height: 200px;
    }
    
    .card-grid {
        gap: 0.3rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .faq-item {
        margin: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        margin: 0 0.5rem;
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .author-info h5 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Special animations for pricing cards */
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for testimonial cards */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover::before {
    left: 100%;
} 

/* Starter Kit Section */
.starter-kit-section {
    padding: 6rem 0;
    background: var(--surface-color);
    position: relative;
}

.starter-kit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    z-index: -1;
}

.starter-kit-container {
    max-width: 900px;
    margin: 0 auto;
}

.starter-kit-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.starter-kit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.starter-kit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(0, 255, 255, 0.2);
}

.starter-kit-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.starter-kit-header .plan-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.starter-kit-header .plan-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.starter-kit-header .plan-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.starter-kit-card .card-pricing {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
}

.promotional-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.starter-kit-card .price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.starter-kit-card .price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-range {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.old-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.starter-kit-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-category {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-category:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category .features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-category .features-list li:last-child {
    border-bottom: none;
}

.benefits {
    grid-column: 1 / -1;
    background: rgba(0, 255, 255, 0.03);
    border-color: rgba(0, 255, 255, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefits-list li {
    padding: 0.8rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.benefits-list li:hover {
    background: rgba(0, 255, 255, 0.15);
    transform: scale(1.02);
}

.starter-kit-card .card-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsive Design for Starter Kit */
@media (max-width: 768px) {
    .starter-kit-section {
        padding: 4rem 0;
    }
    
    .starter-kit-card {
        padding: 2rem;
    }
    
    .starter-kit-header .plan-name {
        font-size: 1.8rem;
    }
    
    .starter-kit-card .price {
        font-size: 2.5rem;
    }
    
    .promotional-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .old-price {
        font-size: 1rem;
        margin-left: 0.3rem;
    }
    
    .starter-kit-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-category {
        padding: 1.2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .starter-kit-card {
        padding: 1.5rem;
    }
    
    .starter-kit-header .plan-name {
        font-size: 1.5rem;
    }
    
    .starter-kit-card .price {
        font-size: 2rem;
    }
    
    .promotional-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }
    
    .old-price {
        font-size: 0.9rem;
        margin-left: 0.2rem;
    }
    
    .price-range {
        font-size: 1.5rem;
    }
    
    .feature-category h4 {
        font-size: 1.1rem;
    }
    
    .feature-category .features-list li {
        font-size: 0.9rem;
    }
} 