/* --- License Page Specific Styles --- */
.license-page .container {
    max-width: 1100px;
}

.license-hero {
    text-align: center;
    padding: 40px 0;
}
.license-hero h1 {
    border-bottom: none;
    font-size: 2.8rem;
}
.license-hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Pricing Table --- */
.pricing-table-section {
    margin: 60px 0;
}
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.plan {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.plan.featured {
    transform: scale(1.05);
    border-width: 3px;
    border-color: var(--brand-orange);
}
.plan h3 {
    font-size: 1.5rem;
    margin-top: 0;
}
.plan .price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--brand-dark);
}
.plan .price .per-year {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}
.plan ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.plan li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.plan li:last-child {
    border-bottom: none;
}
.plan li.limited {
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
}
.faq-accordion .faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-question.active::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 10px 20px 10px;
}

/* --- Activation Form --- */
.activation-section {
    padding-top: 40px;
}
.activation-form {
    background: var(--background-light);
    padding: 30px 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 129, 89, 0.2);
    outline: none;
}
.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.captcha-image {
    border: 1px solid #ccc;
    border-radius: 5px;
    flex-shrink: 0;
}
.captcha-group input {
    flex-grow: 1;
    min-width: 150px;
}
.form-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.form-footer .btn {
    width: 100%;
    max-width: 300px;
}
.trust-badges {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 15px;
    align-items: center;
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.visible .modal-content {
    transform: scale(1);
}
.modal-content h2 {
    margin-top: 0;
    color: var(--brand-dark);
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
    .plan.featured {
        order: -1;
    }
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-footer {
        flex-direction: column;
        align-items: center;
    }
    .form-footer .btn {
        width: 100%;
        max-width: none;
    }
}
/* --- Feedback Box Styles --- */
.feedback-box {
    padding: 30px 40px;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    border-width: 2px;
    border-style: solid;
}
.feedback-box h2 {
    margin-top: 0;
    font-size: 2rem;
    border-bottom: none;
}
.feedback-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.feedback-box .btn {
    font-size: 1.1rem;
}

/* Specific colors for success and error */
.feedback-box.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
.feedback-box.success h2 {
    color: #155724;
}
.feedback-box.alert {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
.feedback-box.alert h2 {
    color: #721c24;
}
