/* Purchase Page Professional Styling */

.purchase-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.purchase-container {
    padding: 40px 20px;
}

/* Pricing Card */
.pricing-card {
    max-width: 500px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.pricing-body {
    padding: 40px 30px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 40px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    color: #374151;
    margin-right: 5px;
}

.price {
    font-size: 64px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
    margin-left: 10px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

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

.feature-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 16px 12px !important;
    margin: 0 -12px;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.feature-highlight span {
    color: #111827;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 0 30px 40px;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
}

.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

.lock-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

/* Information Section */
.info-section {
    margin-bottom: 60px;
}

.info-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 48px;
    margin: 0 auto 15px auto;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 40px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.faq-answer {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Contact Box */
.contact-box {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 2px solid #10b981;
    text-align: center;
}

.contact-box p {
    margin: 0;
    font-size: 15px;
    color: #374151;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .purchase-container {
        padding: 30px 15px;
    }

    .pricing-card {
        margin: 0 auto 40px;
    }

    .pricing-header {
        padding: 30px 20px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    .pricing-body {
        padding: 30px 20px;
    }

    .price {
        font-size: 52px;
    }

    .currency {
        font-size: 28px;
    }

    .pricing-footer {
        padding: 0 20px 30px;
    }

    .info-title,
    .faq-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }

    .contact-box {
        padding: 16px 20px;
        margin: 0 auto 30px;
    }

    .contact-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 22px;
    }

    .price {
        font-size: 44px;
    }

    .buy-button {
        font-size: 16px;
        padding: 16px 28px;
    }
}
