/* ===================================
   CORPORATE WEBSITES CSS
   Additions for for.inc, quickbooksitalia.com,
   and quickbooks.ai. Reuses all mk-* classes
   from marketing.css.
   =================================== */

/* --- Contact Form --- */
.mk-contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.mk-contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mk-off-white);
    margin-bottom: 0.5rem;
}

.mk-contact-form input,
.mk-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(185, 184, 182, 0.25);
    border-radius: 0.75rem;
    background: rgba(36, 31, 29, 0.6);
    color: var(--mk-off-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.mk-contact-form input:focus,
.mk-contact-form textarea:focus {
    outline: none;
    border-color: var(--mk-gold);
}

.mk-contact-form input::placeholder,
.mk-contact-form textarea::placeholder {
    color: rgba(185, 184, 182, 0.5);
}

.mk-contact-form .mk-form-group {
    margin-bottom: 1.5rem;
}

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

@media (max-width: 640px) {
    .mk-contact-form .mk-form-row {
        grid-template-columns: 1fr;
    }
}

.mk-contact-form .mk-form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.mk-contact-form .mk-form-success .mk-check {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- quickbooks.ai Review Page --- */
.mk-review-page {
    min-height: 100vh;
    font-family: 'Inter', 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--mk-off-white);
    background-color: var(--mk-near-black);
    -webkit-font-smoothing: antialiased;
}

.mk-review-page h1,
.mk-review-page h2,
.mk-review-page h3 {
    font-family: 'Inter', 'Instrument Sans', sans-serif;
    color: var(--mk-off-white);
    line-height: 1.15;
}

.mk-review-page p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--mk-mid-grey);
}

.mk-review-page a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mk-review-mini-header {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(185, 184, 182, 0.12);
}

/* Comparison table */
.mk-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(185, 184, 182, 0.15);
}

.mk-comparison-table thead th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    background: rgba(36, 31, 29, 0.9);
    border-bottom: 1px solid rgba(185, 184, 182, 0.15);
}

.mk-comparison-table thead th:first-child {
    width: 22%;
}

.mk-comparison-table thead th.mk-col-koaila {
    color: var(--mk-gold);
    width: 39%;
}

.mk-comparison-table thead th.mk-col-intuit {
    color: rgba(185, 184, 182, 0.7);
    width: 39%;
}

.mk-comparison-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.925rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(185, 184, 182, 0.08);
    vertical-align: top;
    color: var(--mk-mid-grey);
}

.mk-comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--mk-off-white);
    background: rgba(36, 31, 29, 0.5);
}

.mk-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.mk-comparison-table .mk-win {
    color: var(--mk-off-white);
}

.mk-comparison-table .mk-loss {
    color: rgba(185, 184, 182, 0.5);
}

/* Verdict badge */
.mk-verdict {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mk-verdict-win {
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.15), rgba(225, 85, 0, 0.15));
    color: var(--mk-gold);
    border: 1px solid rgba(244, 197, 66, 0.3);
}

/* SEO page section divider */
.mk-seo-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 184, 182, 0.2), transparent);
    margin: 4rem 0;
}

/* FAQ inside corp/SEO pages */
.mk-corp-faq details {
    border-bottom: 1px solid rgba(185, 184, 182, 0.12);
}

.mk-corp-faq summary {
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--mk-off-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mk-corp-faq summary::-webkit-details-marker {
    display: none;
}

.mk-corp-faq summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--mk-gold);
    transition: transform 0.2s ease;
}

.mk-corp-faq details[open] summary::after {
    content: '−';
}

.mk-corp-faq details p {
    padding: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mk-mid-grey);
}
