/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--bg-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.problem-card i {
    font-size: 50px;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.problem-card p {
    color: var(--text-light);
}

/* Business Types Section */
.business-types {
    padding: 80px 0;
    background: var(--bg-dark);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.business-card {
    background: var(--card-bg);
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.business-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.business-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.business-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--card-bg);
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.premium {
    border: 3px solid #8e44ad;
}

.popular-badge, .premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.popular-badge {
    background: var(--primary-color);
}

.premium-badge {
    background: #8e44ad;
}

.pack-header {
    padding: 40px 30px 30px;
    text-align: center;
}

.pack-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pack-objective {
    color: var(--text-light);
    margin-bottom: 30px;
}

.pack-price {
    margin-bottom: 10px;
    position: relative;
}

.original-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}



.currency {
    font-size: 20px;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.pack-minimum {
    font-size: 14px;
    color: var(--text-light);
}

.credit-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    margin: 10px auto 0;
    justify-content: center;
    width: fit-content;
}

.credit-offer i {
    margin-right: 2px;
}

.pack-features {
    padding: 0 30px 30px;
}

.pack-features h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.pack-features ul {
    list-style: none;
}

.pack-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-features i {
    color: #27ae60;
    font-size: 14px;
}

.pack-btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
}

/* Premium Features Styles */
.premium-features {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #9333ea 100%);
}

.premium-features h5 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-title {
    cursor: help;
    transition: var(--transition);
}

.premium-title:hover {
    color: var(--secondary-color);
}

.premium-info-icon {
    cursor: pointer;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
    margin-left: 8px;
}

.premium-info-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.premium-tooltip {
    position: absolute;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    font-size: 14px;
    color: var(--text-color);
    max-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 8px;
}

.premium-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.premium-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.premium-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 21px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--card-bg);
}

.premium-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

.premium-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.premium-item div {
    flex: 1;
}

.premium-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.premium-item span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Dark theme adjustments for premium features */
[data-theme="dark"] .premium-features {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    border-color: rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .premium-item {
    border-bottom-color: rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .premium-features h5 {
    color: var(--primary-color);
}

/* Custom Plan Section */
.custom-plan-info {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.custom-plan-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px dashed var(--primary-color);
    text-align: center;
    max-width: 500px;
    transition: var(--transition);
}

.custom-plan-card:hover {
    transform: translateY(-5px);
    border-style: solid;
}

.custom-plan-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.custom-plan-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.custom-plan-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.custom-plan-card .btn {
    margin-top: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f0f4f8;
}

/* Dark theme adjustments for FAQ */
[data-theme="dark"] .faq {
    background: #0f172a !important;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(59, 130, 246, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
    overflow-y: auto;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-urgency {
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.promo-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border: 2px solid var(--accent-color);
}

.promo-banner h3 {
    margin-bottom: 10px;
    color: var(--accent-color);
}

.promo-banner p {
    margin: 0 0 15px 0;
    opacity: 0.9;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 10px;
    min-width: 70px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    animation: numberPulse 2s ease-in-out infinite;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
}

/* Dark theme adjustments for countdown */
[data-theme="dark"] .countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .countdown-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 30px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-light);
}

.footer__social {
    margin-top: 1.5rem;
}

.footer__social h4 {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer__social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer__social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer__social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Dark theme adjustments for footer social */
[data-theme="dark"] .footer__social h4 {
    color: var(--white);
}

[data-theme="dark"] .footer__social-links a {
    background: var(--white);
    color: var(--primary-color);
}

[data-theme="dark"] .footer__social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
    z-index: 10;
    animation: badgePulse 1.5s ease-in-out infinite;
}

.discount-badge i {
    margin-right: 4px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(238, 90, 82, 0.4);
    }
}

/* Spots Banner Styles */
.spots-banner {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    animation: spotsAttention 2s ease-in-out infinite;
}

.spots-remaining {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spots-remaining:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

#remaining-spots {
    font-weight: 800;
    font-size: 22px;
    color: #fff3cd;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: spotNumberGlow 1.5s ease-in-out infinite alternate;
}

@keyframes spotsAttention {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes spotNumberGlow {
    0% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        color: #fff3cd;
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 243, 205, 0.8), 0 1px 2px rgba(0, 0, 0, 0.3);
        color: #ffffff;
    }
}

/* Hide spots banner when promotion is expired */
.hidden {
    display: none !important;
}
