/* Microsoft Luxurious Style - Auto-themed */
:root {
    --cjma-azure: #0a7dcf;
    --cjma-azure-dark: #0a6294;
    --cjma-gold: #447af5;
    --cjma-gold-light: #cbae71;
    --cjma-charcoal: #221a13;
    --cjma-gray-100: #FAFAFA;
    --cjma-gray-200: #F0F0F0;
    --cjma-gray-300: #dcd8dd;
    --cjma-gray-500: #786f6b;
    --cjma-gray-700: #3b4046;
    --cjma-white: #FFFFFF;
    --cjma-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --cjma-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --cjma-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --cjma-radius: 5px;
    --cjma-radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cjma-gray-100);
    color: var(--cjma-charcoal);
    font-size: 16px;
    line-height: 1.7;
}

.cjma-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Header */
.cjma-header {
    background: var(--cjma-white);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--cjma-shadow-sm);
}

.cjma-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.cjma-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.cjma-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cjma-azure), var(--cjma-azure-dark));
    border-radius: var(--cjma-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--cjma-white);
}

.cjma-brand-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-brand-name span {
    color: var(--cjma-azure);
}

.cjma-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cjma-nav-link {
    color: var(--cjma-gray-700);
    text-decoration: none;
    padding: 9px 21px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--cjma-radius);
    transition: all 0.2s;
}

.cjma-nav-link:hover,
.cjma-nav-link.active {
    background: var(--cjma-gray-200);
    color: var(--cjma-azure);
}

.cjma-nav-cta {
    background: var(--cjma-azure);
    color: var(--cjma-white);
    padding: 10px 27px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--cjma-radius);
    margin-left: 9px;
    transition: all 0.2s;
}

.cjma-nav-cta:hover {
    background: var(--cjma-azure-dark);
}

.cjma-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.cjma-burger-line {
    width: 27px;
    height: 2px;
    background: var(--cjma-charcoal);
    border-radius: 1px;
    transition: 0.3s;
}

.cjma-mobile-nav {
    display: none;
    background: var(--cjma-white);
    padding: 19px 24px;
    border-top: 1px solid var(--cjma-gray-200);
}

.cjma-mobile-nav.active {
    display: block;
}

.cjma-mobile-link {
    display: block;
    color: var(--cjma-charcoal);
    text-decoration: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--cjma-gray-200);
}

/* Alert Banner */
.cjma-alert {
    background: linear-gradient(90deg, var(--cjma-gold), var(--cjma-gold-light));
    padding: 15px 22px;
    margin-top: 75px;
}

.cjma-alert-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cjma-alert-text {
    color: var(--cjma-charcoal);
    font-weight: 600;
    font-size: 15px;
}

.cjma-alert-link {
    color: var(--cjma-charcoal);
    text-decoration: underline;
    font-weight: 700;
}

/* Hero */
.cjma-hero {
    padding: 100px 0 79px;
    background: linear-gradient(145deg, var(--cjma-white) 0%, var(--cjma-gray-100) 100%);
    margin-top: 75px;
}

.cjma-hero.with-alert {
    margin-top: 0;
}

.cjma-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.cjma-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,121,217,0.1);
    color: var(--cjma-azure);
    padding: 11px 16px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 19px;
}

.cjma-hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--cjma-charcoal);
    line-height: 1.15;
    margin-bottom: 18px;
}

.cjma-hero-title span {
    color: var(--cjma-azure);
}

.cjma-hero-text {
    font-size: 18px;
    color: var(--cjma-gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cjma-hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.cjma-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--cjma-radius);
    transition: all 0.2s;
    box-shadow: var(--cjma-shadow);
}

.cjma-btn-primary:hover {
    background: var(--cjma-azure-dark);
    transform: translateY(-2px);
    box-shadow: var(--cjma-shadow-lg);
}

.cjma-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: var(--cjma-white);
    color: var(--cjma-charcoal);
    padding: 16px 29px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--cjma-radius);
    border: 1px solid var(--cjma-gray-300);
    transition: all 0.2s;
}

.cjma-btn-secondary:hover {
    border-color: var(--cjma-azure);
    color: var(--cjma-azure);
}

/* Countdown Timer */
.cjma-countdown {
    background: var(--cjma-white);
    padding: 35px;
    border-radius: var(--cjma-radius-lg);
    box-shadow: var(--cjma-shadow-lg);
    text-align: center;
}

.cjma-countdown-title {
    font-size: 18px;
    color: var(--cjma-gray-700);
    margin-bottom: 18px;
}

.cjma-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 19px;
    margin-bottom: 24px;
}

.cjma-countdown-unit {
    background: var(--cjma-gray-100);
    padding: 13px 22px;
    border-radius: var(--cjma-radius);
    min-width: 69px;
}

.cjma-countdown-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--cjma-azure);
    line-height: 1;
}

.cjma-countdown-label {
    font-size: 12px;
    color: var(--cjma-gray-500);
    text-transform: uppercase;
    margin-top: 5px;
}

.cjma-countdown-cta {
    display: block;
    background: var(--cjma-gold);
    color: var(--cjma-charcoal);
    padding: 17px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--cjma-radius);
    transition: 0.2s;
}

.cjma-countdown-cta:hover {
    background: var(--cjma-gold-light);
}

/* Main Content */
.cjma-main {
    padding: 77px 0;
}

.cjma-article {
    max-width: 760px;
    margin: 0 auto;
    background: var(--cjma-white);
    padding: 47px;
    border-radius: var(--cjma-radius-lg);
    box-shadow: var(--cjma-shadow);
}

.cjma-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cjma-charcoal);
    margin: 41px 0 14px;
}

.cjma-article h2:first-child {
    margin-top: 0;
}

.cjma-article h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--cjma-gray-700);
    margin: 28px 0 9px;
}

.cjma-article p {
    margin-bottom: 18px;
    color: var(--cjma-gray-700);
}

.cjma-article ul, .cjma-article ol {
    margin: 0 0 19px 27px;
}

.cjma-article li {
    margin-bottom: 9px;
    color: var(--cjma-gray-700);
}

.cjma-article a {
    color: var(--cjma-azure);
    text-decoration: none;
}

.cjma-article a:hover {
    text-decoration: underline;
}

/* Star Rating */
.cjma-star-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cjma-star {
    color: var(--cjma-gold);
    font-size: 18px;
}

.cjma-rating-text {
    color: var(--cjma-gray-500);
    font-size: 14px;
    margin-left: 3px;
}

/* Company Cards */
.cjma-companies {
    padding: 82px 0;
    background: var(--cjma-white);
}

.cjma-section-header {
    text-align: center;
    margin-bottom: 47px;
}

.cjma-section-tag {
    display: inline-block;
    background: rgba(10,127,209,0.1);
    color: var(--cjma-azure);
    padding: 7px 17px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.cjma-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cjma-charcoal);
}

.cjma-section-title span {
    color: var(--cjma-azure);
}

.cjma-companies-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.cjma-company-card {
    background: var(--cjma-gray-100);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 31px;
    padding: 29px;
    border-radius: var(--cjma-radius-lg);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.cjma-company-card:hover {
    border-color: var(--cjma-azure);
    box-shadow: var(--cjma-shadow);
}

.cjma-company-rank {
    width: 52px;
    height: 52px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    border-radius: var(--cjma-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.cjma-company-info h3 {
    font-size: 22px;
    color: var(--cjma-charcoal);
    margin-bottom: 5px;
}

.cjma-company-meta {
    display: flex;
    align-items: center;
    gap: 19px;
    flex-wrap: wrap;
}

.cjma-company-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--cjma-gray-500);
}

.cjma-company-feature svg {
    width: 16px;
    height: 16px;
    color: var(--cjma-azure);
}

.cjma-company-cta {
    background: var(--cjma-azure);
    color: var(--cjma-white);
    padding: 11px 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--cjma-radius);
    transition: 0.2s;
    white-space: nowrap;
}

.cjma-company-cta:hover {
    background: var(--cjma-azure-dark);
}

/* FAQ Section */
.cjma-faqs {
    padding: 83px 0;
    background: var(--cjma-gray-100);
}

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

.cjma-faq-item {
    background: var(--cjma-white);
    margin-bottom: 10px;
    border-radius: var(--cjma-radius);
    overflow: hidden;
    box-shadow: var(--cjma-shadow-sm);
}

.cjma-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--cjma-charcoal);
    transition: 0.2s;
}

.cjma-faq-q:hover {
    color: var(--cjma-azure);
}

.cjma-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--cjma-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cjma-azure);
    flex-shrink: 0;
    transition: 0.2s;
}

.cjma-faq-item.active .cjma-faq-icon {
    background: var(--cjma-azure);
    color: var(--cjma-white);
    transform: rotate(45deg);
}

.cjma-faq-a {
    display: none;
    padding: 0 27px 25px;
    color: var(--cjma-gray-700);
    font-size: 16px;
    line-height: 1.7;
}

.cjma-faq-item.active .cjma-faq-a {
    display: block;
}

/* Footer */
.cjma-footer {
    background: var(--cjma-charcoal);
    padding: 63px 0 0;
}

.cjma-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 45px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.cjma-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 19px;
}

.cjma-footer-mark {
    width: 41px;
    height: 40px;
    background: var(--cjma-azure);
    border-radius: var(--cjma-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--cjma-white);
    font-size: 16px;
}

.cjma-footer-name {
    font-size: 20px;
    color: var(--cjma-white);
    font-weight: 600;
}

.cjma-footer-tagline {
    color: var(--cjma-gray-500);
    font-size: 15px;
}

.cjma-footer-heading {
    color: var(--cjma-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 23px;
}

.cjma-footer-links {
    list-style: none;
}

.cjma-footer-links li {
    margin-bottom: 13px;
}

.cjma-footer-links a {
    color: var(--cjma-gray-500);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.cjma-footer-links a:hover {
    color: var(--cjma-white);
}

.cjma-footer-disclaimer {
    padding: 27px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cjma-footer-disclaimer p {
    color: var(--cjma-gray-500);
    font-size: 14px;
    line-height: 1.7;
}

.cjma-footer-bottom {
    padding: 26px 0;
    text-align: center;
    color: var(--cjma-gray-500);
    font-size: 14px;
}

/* Contact */
.cjma-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 51px;
    max-width: 1000px;
    margin: 0 auto;
}

.cjma-contact-card {
    display: flex;
    gap: 14px;
    padding: 27px;
    background: var(--cjma-white);
    border-radius: var(--cjma-radius);
    box-shadow: var(--cjma-shadow-sm);
    margin-bottom: 16px;
}

.cjma-contact-icon {
    width: 45px;
    height: 48px;
    background: rgba(10,114,215,0.1);
    border-radius: var(--cjma-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cjma-azure);
    flex-shrink: 0;
}

.cjma-contact-details h3 {
    font-size: 17px;
    color: var(--cjma-charcoal);
    margin-bottom: 5px;
}

.cjma-contact-details p {
    color: var(--cjma-gray-500);
    font-size: 15px;
}

.cjma-form-wrap {
    background: var(--cjma-white);
    padding: 34px;
    border-radius: var(--cjma-radius-lg);
    box-shadow: var(--cjma-shadow);
}

.cjma-form-title {
    font-size: 24px;
    color: var(--cjma-charcoal);
    margin-bottom: 24px;
}

.cjma-form-row {
    margin-bottom: 15px;
}

.cjma-form-label {
    display: block;
    font-size: 14px;
    color: var(--cjma-gray-700);
    font-weight: 500;
    margin-bottom: 7px;
}

.cjma-form-input,
.cjma-form-textarea {
    width: 100%;
    padding: 17px 17px;
    border: 1px solid var(--cjma-gray-200);
    border-radius: var(--cjma-radius);
    font-size: 19px;
    color: var(--cjma-charcoal);
    transition: border-color 0.2s;
}

.cjma-form-input:focus,
.cjma-form-textarea:focus {
    outline: none;
    border-color: var(--cjma-azure);
}

.cjma-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.cjma-form-submit {
    width: 100%;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    padding: 13px;
    border: none;
    border-radius: var(--cjma-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.cjma-form-submit:hover {
    background: var(--cjma-azure-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .cjma-hero-grid {
        grid-template-columns: 1fr;
    }

    .cjma-countdown {
        max-width: 400px;
        margin: 0 auto;
    }

    .cjma-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cjma-company-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cjma-company-rank {
        margin: 0 auto;
    }

    .cjma-company-meta {
        justify-content: center;
    }

    .cjma-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cjma-nav {
        display: none;
    }

    .cjma-burger {
        display: flex;
    }

    .cjma-hero {
        padding: 58px 0;
    }

    .cjma-hero-title {
        font-size: 32px;
    }

    .cjma-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cjma-footer-brand {
        justify-content: center;
    }

    .cjma-article {
        padding: 28px;
    }

    .cjma-countdown-timer {
        gap: 5px;
    }

    .cjma-countdown-unit {
        min-width: 60px;
        padding: 11px;
    }

    .cjma-countdown-num {
        font-size: 24px;
    }
}

/* ===== COMPANIES COMPARISON TABLE ===== */
.cjma-companies-table-section {
    padding: 61px 0;
    background: var(--cjma-gray-100);
}

.cjma-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1100px;
    border-radius: var(--cjma-radius-lg);
    box-shadow: var(--cjma-shadow-lg);
}

.cjma-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--cjma-white);
    font-size: 15px;
}

.cjma-companies-table thead {
    background: linear-gradient(135deg, var(--cjma-azure) 0%, var(--cjma-azure-dark) 100%);
}

.cjma-companies-table th {
    padding: 18px 13px;
    text-align: left;
    font-weight: 600;
    color: var(--cjma-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.cjma-companies-table th:first-child {
    border-radius: var(--cjma-radius-lg) 0 0 0;
}

.cjma-companies-table th:last-child {
    border-radius: 0 var(--cjma-radius-lg) 0 0;
}

.cjma-companies-table td {
    padding: 19px;
    border-bottom: 2px solid var(--cjma-gray-200);
    color: var(--cjma-gray-700);
    vertical-align: middle;
}

.cjma-companies-table tbody tr:hover {
    background: var(--cjma-gray-100);
}

.cjma-companies-table tbody tr:last-child td {
    border-bottom: none;
}

.cjma-companies-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--cjma-radius-lg);
}

.cjma-companies-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--cjma-radius-lg) 0;
}

.cjma-table-company {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cjma-table-rank {
    width: 31px;
    height: 28px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.cjma-table-rank.top {
    background: var(--cjma-gold);
    color: var(--cjma-charcoal);
}

.cjma-table-name {
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-table-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cjma-table-stars {
    color: var(--cjma-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.cjma-table-score {
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-table-fee {
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-table-minimum {
    font-weight: 500;
}

.cjma-table-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 13px;
    background: rgba(10,120,207,0.1);
    color: var(--cjma-azure);
    border-radius: 20px;
    font-size: 9px;
    font-weight: 500;
}

.cjma-table-cta {
    display: inline-block;
    padding: 12px 19px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    text-decoration: none;
    border-radius: var(--cjma-radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    white-space: nowrap;
}

.cjma-table-cta:hover {
    background: var(--cjma-azure-dark);
    transform: translateY(-1px);
}

/* Mobile Cards View */
.cjma-companies-cards {
    display: none;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto;
}

.cjma-company-card-mobile {
    background: var(--cjma-white);
    border-radius: var(--cjma-radius-lg);
    padding: 24px;
    box-shadow: var(--cjma-shadow);
}

.cjma-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cjma-gray-200);
}

.cjma-card-company {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cjma-card-rank {
    width: 33px;
    height: 32px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.cjma-card-rank.top {
    background: var(--cjma-gold);
    color: var(--cjma-charcoal);
}

.cjma-card-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--cjma-charcoal);
}

.cjma-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cjma-card-stars {
    color: var(--cjma-gold);
    font-size: 14px;
}

.cjma-card-score {
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 19px;
}

.cjma-card-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cjma-card-label {
    font-size: 10px;
    color: var(--cjma-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cjma-card-value {
    font-weight: 600;
    color: var(--cjma-charcoal);
}

.cjma-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 13px;
}

.cjma-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 13px;
    background: rgba(10,127,214,0.1);
    color: var(--cjma-azure);
    border-radius: 21px;
    font-size: 10px;
    font-weight: 500;
}

.cjma-card-cta {
    display: block;
    width: 100%;
    padding: 17px 20px;
    background: var(--cjma-azure);
    color: var(--cjma-white);
    text-decoration: none;
    border-radius: var(--cjma-radius);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s;
}

.cjma-card-cta:hover {
    background: var(--cjma-azure-dark);
}

@media (max-width: 900px) {
    .cjma-table-container {
        display: none;
    }

    .cjma-companies-cards {
        display: flex;
    }
}

@media (max-width: 500px) {
    .cjma-card-details {
        grid-template-columns: 1fr;
    }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .cjma-companies-section .cjma-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .cjma-companies-section table.cjma-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .cjma-companies-section .cjma-companies-table thead {
        display: none !important;
    }

    .cjma-companies-section .cjma-companies-table tbody,
    .cjma-companies-section .cjma-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .cjma-companies-section .cjma-companies-table tbody tr.cjma-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 24px rgba(88,27,41,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(87,33,48,0.08);
    }

    .cjma-companies-section .cjma-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 11px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .cjma-companies-section .cjma-companies-table td:last-child {
        border-bottom: none !important;
    }

    .cjma-companies-section .cjma-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5f1626 !important;
        flex-shrink: 0 !important;
        margin-right: 16px !important;
        font-size: 0.85rem !important;
    }

    .cjma-companies-section .cjma-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 14px !important;
        border-bottom: 3px solid #e8e2d8 !important;
    }

    .cjma-companies-section .cjma-td-company::before {
        display: none !important;
    }

    .cjma-companies-section .cjma-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .cjma-companies-section .cjma-td-rank::before {
        display: none !important;
    }

    .cjma-companies-section .cjma-td-action {
        flex-direction: column !important;
        padding-top: 16px !important;
        border-top: 1px solid #f1e6d3 !important;
        border-bottom: none !important;
    }

    .cjma-companies-section .cjma-td-action::before {
        display: none !important;
    }

    .cjma-companies-section .cjma-td-action .cjma-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 23px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.cjma-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
    .cjma-company-logo {
        display: block !important;
        margin: 0 auto 12px auto !important;
    }

    .cjma-companies-section .cjma-td-company .cjma-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.cjma-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.cjma-menu-line {
    width: 27px;
    height: 3px;
    background: var(--cjma-text, #243a43);
    border-radius: 1px;
    transition: 0.3s;
}

.cjma-menu-toggle.active .cjma-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.cjma-menu-toggle.active .cjma-menu-line:nth-child(2) {
    opacity: 0;
}

.cjma-menu-toggle.active .cjma-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .cjma-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.cjma-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cjma-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .cjma-nav {
        display: none !important;
    }

    .cjma-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.cjma-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 18px 23px;
    border-top: 2px solid #eee;
}

.cjma-mobile-nav.active {
    display: flex;
}

.cjma-mobile-link {
    padding: 13px 0;
    color: var(--cjma-text, #2d3f3e);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.cjma-mobile-link:last-child {
    border-bottom: none;
}

.cjma-mobile-link:hover {
    color: var(--cjma-accent, #ea0a1a);
}


/* SVG Logo & Mobile Fixes */
.cjma-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.cjma-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .cjma-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .cjma-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .cjma-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cjma-company-info {
        text-align: center !important;
    }

    .cjma-company-name {
        text-align: center !important;
    }

    .cjma-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.cjma-wrapper, .cjma-content, .cjma-hero-inner, .cjma-companies-container, 
.cjma-article, .cjma-container, .cjma-footer-inner, .cjma-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.cjma-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.cjma-td-action {
    text-align: center !important;
}
.cjma-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}
