/* ========================================
   Quimonit Page-Specific Styles
   Extracted from inline HTML styles
   ======================================== */

/* ----------------------------------------
   FAQ Page
   ---------------------------------------- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    min-height: calc(100vh - 300px);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question::before {
    content: 'Q.';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 2rem;
}

.faq-answer::before {
    content: 'A.';
    color: var(--success);
    font-weight: 700;
    margin-right: 0.5rem;
}

.faq-answer ul {
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    padding-left: 1rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 5rem 1rem 3rem;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.25rem;
    }
}

/* ----------------------------------------
   Pricing Page
   ---------------------------------------- */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.period {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.check-icon {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
}

.nav-back {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--gray-600);
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.nav-back:hover {
    color: var(--primary);
}

.nav-back.visible {
    display: flex;
}

.website-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.website-header.visible {
    display: block;
}

.website-header .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.website-header .logo {
    display: flex;
    align-items: center;
}

.website-header .logo-img {
    height: 40px;
    width: auto;
}

.website-header .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.website-header .nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

.website-header .nav-link:hover {
    color: var(--primary);
}

.website-header .nav-link.active {
    color: var(--primary);
}

.website-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.website-header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
}

.website-header .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.website-header .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.website-header .btn-primary {
    background: var(--primary);
    color: white;
}

.website-header .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pricing-container.with-header {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .website-header .header-container {
        padding: 1rem;
    }

    .website-header .main-nav {
        gap: 1rem;
    }

    .website-header .nav-link {
        font-size: 0.875rem;
    }

    .website-header .nav-link.active::after {
        bottom: -1rem;
    }
}

@media (max-width: 480px) {
    .website-header .main-nav {
        gap: 0.5rem;
    }

    .website-header .nav-link:not(.mobile-menu-toggle) {
        display: none;
    }

    .website-header .mobile-menu-toggle {
        display: flex;
    }

    .website-header .main-nav.mobile-open .nav-link {
        display: flex;
    }

    .website-header .main-nav.mobile-open {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0.5rem;
    }

    .website-header .main-nav.mobile-open .nav-link {
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-100);
    }
}

.website-footer {
    background: url('/images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
    min-height: 300px;
    display: none;
    position: relative;
}

.website-footer.visible {
    display: block;
}

.website-footer .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 90, 138, 0.2);
    z-index: 1;
}

.website-footer .footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.website-footer .footer-column {
    display: flex;
    flex-direction: column;
}

.website-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.website-footer .footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.website-footer .footer-link:hover {
    opacity: 0.8;
}

.footer-column-right {
    align-items: flex-end;
}

.attribution-section {
    background-color: #282828;
    padding: 1.5rem 2rem;
    text-align: left;
    display: none;
}

.attribution-section.visible {
    display: block;
}

.attribution-section p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .website-footer .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .website-footer .footer-column {
        align-items: center;
        width: 100%;
    }

    .website-footer .footer-column:nth-child(2) {
        display: none;
    }

    .website-footer .footer-nav {
        align-items: center;
    }

    .website-footer .footer-brand {
        align-items: center;
    }

    .footer-column-right {
        align-items: center;
    }
}

.pricing-disclaimers {
    margin-top: 4rem;
    text-align: left;
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-disclaimers p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing-disclaimers p:last-child {
    margin-bottom: 0;
}

.basic-trial-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.basic-subprice {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.footer-relative {
    position: relative;
}

.footer-eryx-logo {
    display: block;
    margin-top: 1rem;
    margin-bottom: -3rem;
    height: 125px;
    width: auto;
    max-width: 150px;
}

/* ----------------------------------------
   Reset Password Page
   ---------------------------------------- */
.reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reset-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    max-width: 440px;
    width: 100%;
}

.reset-logo {
    text-align: center;
    margin-bottom: 32px;
}

.reset-logo img {
    height: 48px;
}

.reset-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-align: center;
}

.reset-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 32px;
    text-align: center;
}

.reset-container .form-group {
    margin-bottom: 20px;
}

.reset-container .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.reset-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.reset-container .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,124,188,0.1);
}

.reset-container .form-group input.error {
    border-color: var(--danger);
}

.reset-container .error-text {
    color: var(--danger);
    font-size: 0.8125rem;
    margin-top: 6px;
}

.reset-container .success-text {
    color: var(--success);
    font-size: 0.8125rem;
    margin-top: 6px;
}

.reset-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.reset-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.reset-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.reset-footer a:hover {
    text-decoration: underline;
}

.reset-container .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-message {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--success);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

/* ----------------------------------------
   Support Page
   ---------------------------------------- */
.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    min-height: calc(100vh - 300px);
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.support-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.support-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.support-container .form-group {
    margin-bottom: 1.5rem;
}

.support-container .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.support-container .form-group input,
.support-container .form-group select,
.support-container .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: white;
    color: var(--gray-800);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.support-container .form-group input:focus,
.support-container .form-group select:focus,
.support-container .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.support-container .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.captcha-container {
    margin-bottom: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: none;
}

.form-message.success {
    background: var(--success);
    color: white;
    display: block;
}

.form-message.error {
    background: var(--danger);
    color: white;
    display: block;
}

@media (max-width: 768px) {
    .support-container {
        padding: 5rem 1rem 3rem;
    }

    .support-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ----------------------------------------
   Verify Email Page
   ---------------------------------------- */
.verify-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.verify-logo {
    margin-bottom: 24px;
}

.verify-logo img {
    height: 48px;
}

.verify-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.verify-icon.success {
    background: var(--primary-light);
    color: var(--success);
}

.verify-icon.error {
    background: #fee2e2;
    color: var(--danger);
}

.verify-icon.pending {
    background: #fef3c7;
    color: var(--warning);
}

.verify-icon svg {
    width: 36px;
    height: 36px;
}

.verify-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.verify-message {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.verify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.verify-container .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
