/* John Deere Crisp Style - Auto-themed */
:root {
    --bnmp-green: #317632;
    --bnmp-green-dark: #2f5d1b;
    --bnmp-green-light: #469835;
    --bnmp-yellow: #f5e40a;
    --bnmp-yellow-dark: #e2bd0a;
    --bnmp-yellow-light: #f5e947;
    --bnmp-bg: #FFFFFF;
    --bnmp-bg-alt: #F1F5F9;
    --bnmp-text-dark: #1a280e;
    --bnmp-text-body: #334035;
    --bnmp-text-muted: #656d8b;
    --bnmp-border: #c2d2e7;
    --bnmp-border-light: #eaeedd;
    --bnmp-white: #FFFFFF;
    --bnmp-shadow-sm: 0 2px 8px rgba(47,122,43,0.08);
    --bnmp-shadow-md: 0 6px 20px rgba(48,128,36,0.12);
    --bnmp-shadow-lg: 0 12px 40px rgba(49,118,44,0.16);
    --bnmp-shadow-yellow: 0 4px 16px rgba(245,223,10,0.3);
    --bnmp-radius-sm: 7px;
    --bnmp-radius-md: 7px;
    --bnmp-radius-lg: 16px;
    --bnmp-radius-xl: 27px;
    --bnmp-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    color: var(--bnmp-text-body);
    background: var(--bnmp-bg);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.bnmp-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 31px;
    padding-right: 27px;
}

/* Header Navigation */
.bnmp-header {
    background: var(--bnmp-white);
    border-bottom: 3px solid var(--bnmp-green);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: var(--bnmp-shadow-sm);
}

.bnmp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

.bnmp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bnmp-text-dark);
}

.bnmp-brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, var(--bnmp-green), var(--bnmp-green-dark));
    border-radius: var(--bnmp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bnmp-yellow);
    font-weight: 800;
    font-size: 22px;
    box-shadow: var(--bnmp-shadow-sm);
}

.bnmp-brand-name {
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.2px;
}

.bnmp-brand-name em {
    font-style: normal;
    color: var(--bnmp-green);
}

.bnmp-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bnmp-nav-item {
    color: var(--bnmp-text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 21px;
    border-radius: var(--bnmp-radius-sm);
    transition: var(--bnmp-transition);
    position: relative;
}

.bnmp-nav-item:hover {
    background: var(--bnmp-bg-alt);
    color: var(--bnmp-green);
}

.bnmp-nav-item.current {
    background: var(--bnmp-green);
    color: var(--bnmp-white);
}

.bnmp-header-action {
    background: var(--bnmp-yellow);
    color: var(--bnmp-text-dark);
    padding: 10px 25px;
    border-radius: var(--bnmp-radius-md);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: var(--bnmp-transition);
    box-shadow: var(--bnmp-shadow-yellow);
}

.bnmp-header-action:hover {
    background: var(--bnmp-yellow-dark);
    transform: translateY(-2px);
}

/* Mobile Menu */
.bnmp-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bnmp-burger-bar {
    width: 26px;
    height: 3px;
    background: var(--bnmp-green);
    border-radius: 1px;
    transition: var(--bnmp-transition);
}

.bnmp-burger.active .bnmp-burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.bnmp-burger.active .bnmp-burger-bar:nth-child(2) {
    opacity: 0;
}

.bnmp-burger.active .bnmp-burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.bnmp-mobile-menu {
    display: none;
    background: var(--bnmp-white);
    border-top: 1px solid var(--bnmp-border);
    padding: 20px;
}

.bnmp-mobile-menu.visible {
    display: block;
}

.bnmp-mobile-link {
    display: block;
    padding: 17px 0;
    color: var(--bnmp-text-body);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--bnmp-border-light);
}

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

/* Hero Section Component */
.bnmp-hero {
    background: linear-gradient(165deg, var(--bnmp-green) 0%, var(--bnmp-green-dark) 60%, #215319 100%);
    color: var(--bnmp-white);
    padding: 81px 0 90px;
    position: relative;
    overflow: hidden;
}

.bnmp-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,229,10,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bnmp-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bnmp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bnmp-hero-label {
    display: inline-block;
    background: rgba(245,226,10,0.2);
    border: 1px solid rgba(245,216,10,0.4);
    color: var(--bnmp-yellow);
    padding: 5px 22px;
    border-radius: 53px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 27px;
}

.bnmp-hero-heading {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.bnmp-hero-text {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 34px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.bnmp-hero-buttons {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.bnmp-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 34px;
    border-radius: var(--bnmp-radius-md);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: var(--bnmp-transition);
    border: none;
    cursor: pointer;
}

.bnmp-btn-primary {
    background: var(--bnmp-yellow);
    color: var(--bnmp-text-dark);
    box-shadow: var(--bnmp-shadow-yellow);
}

.bnmp-btn-primary:hover {
    background: var(--bnmp-yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245,229,10,0.4);
}

.bnmp-btn-outline {
    background: transparent;
    color: var(--bnmp-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.bnmp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bnmp-white);
}

/* Stats Counter Component */
.bnmp-stats {
    background: var(--bnmp-white);
    padding: 53px 0;
    border-bottom: 1px solid var(--bnmp-border);
}

.bnmp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.bnmp-stat-card {
    text-align: center;
    padding: 21px 16px;
    border-radius: var(--bnmp-radius-lg);
    background: var(--bnmp-bg-alt);
    border: 2px solid var(--bnmp-border-light);
    transition: var(--bnmp-transition);
}

.bnmp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bnmp-shadow-md);
    border-color: var(--bnmp-green);
}

.bnmp-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--bnmp-green);
    line-height: 1;
    margin-bottom: 11px;
}

.bnmp-stat-label {
    font-size: 13px;
    color: var(--bnmp-text-muted);
    font-weight: 500;
}

/* Companies Table */
.bnmp-companies-section {
    padding: 72px 0;
    background: var(--bnmp-bg-alt);
}

.bnmp-section-header {
    text-align: center;
    margin-bottom: 45px;
}

.bnmp-section-badge {
    display: inline-block;
    background: var(--bnmp-green);
    color: var(--bnmp-white);
    padding: 6px 21px;
    border-radius: 48px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.bnmp-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--bnmp-text-dark);
    margin-bottom: 9px;
}

.bnmp-section-desc {
    font-size: 17px;
    color: var(--bnmp-text-muted);
}

.bnmp-company-row {
    display: flex;
    align-items: center;
    gap: 27px;
    padding: 22px;
    background: var(--bnmp-white);
    border-radius: var(--bnmp-radius-lg);
    margin-bottom: 17px;
    border: 3px solid var(--bnmp-border-light);
    transition: var(--bnmp-transition);
}

.bnmp-company-row:hover {
    border-color: var(--bnmp-green);
    box-shadow: var(--bnmp-shadow-md);
}

.bnmp-company-row.featured {
    background: linear-gradient(135deg, var(--bnmp-green) 0%, var(--bnmp-green-dark) 100%);
    color: var(--bnmp-white);
    border-color: var(--bnmp-green);
}

.bnmp-rank {
    width: 44px;
    height: 44px;
    background: var(--bnmp-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--bnmp-text-muted);
    flex-shrink: 0;
}

.bnmp-company-row.featured .bnmp-rank {
    background: var(--bnmp-yellow);
    color: var(--bnmp-text-dark);
}

.bnmp-company-logo {
    width: 100px;
    height: auto;
    background: var(--bnmp-white);
    padding: 11px;
    border-radius: var(--bnmp-radius-sm);
    flex-shrink: 0;
}

.bnmp-company-info {
    flex: 1;
}

.bnmp-company-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.bnmp-company-row.featured .bnmp-company-name {
    color: var(--bnmp-white);
}

.bnmp-company-meta {
    font-size: 13px;
    color: var(--bnmp-text-muted);
}

.bnmp-company-row.featured .bnmp-company-meta {
    color: rgba(255, 255, 255, 0.8);
}

.bnmp-company-btn {
    padding: 13px 30px;
    border-radius: var(--bnmp-radius-md);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--bnmp-transition);
}

.bnmp-company-row.featured .bnmp-company-btn {
    background: var(--bnmp-yellow);
    color: var(--bnmp-text-dark);
}

.bnmp-company-row:not(.featured) .bnmp-company-btn {
    background: transparent;
    color: var(--bnmp-green);
    border: 2px solid var(--bnmp-green);
}

.bnmp-company-row:not(.featured) .bnmp-company-btn:hover {
    background: var(--bnmp-green);
    color: var(--bnmp-white);
}

/* Main Content */
.bnmp-content-section {
    padding: 68px 0;
}

.bnmp-article {
    max-width: 780px;
    margin: 0 auto;
}

.bnmp-article h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bnmp-text-dark);
    margin: 55px 0 26px;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--bnmp-green);
}

.bnmp-article h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bnmp-text-dark);
    margin: 38px 0 17px;
}

.bnmp-article p {
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 1.8;
}

.bnmp-article ul, .bnmp-article ol {
    margin: 26px 0;
    padding-left: 25px;
}

.bnmp-article li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.bnmp-article li::marker {
    color: var(--bnmp-green);
}

/* Image Component */
.bnmp-image-block {
    margin: 51px 0;
    border-radius: var(--bnmp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bnmp-shadow-lg);
    border: 3px solid var(--bnmp-border);
}

.bnmp-image-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.bnmp-image-block:hover img {
    transform: scale(1.03);
}

.bnmp-image-caption {
    background: var(--bnmp-bg-alt);
    padding: 15px 23px;
    font-size: 13px;
    color: var(--bnmp-text-muted);
    text-align: center;
    border-top: 1px solid var(--bnmp-border);
}

/* Pros/Cons List Component */
.bnmp-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 48px 0;
}

.bnmp-pros, .bnmp-cons {
    background: var(--bnmp-white);
    border-radius: var(--bnmp-radius-lg);
    padding: 31px;
    border: 1px solid var(--bnmp-border-light);
}

.bnmp-pros {
    border-top: 4px solid var(--bnmp-green);
}

.bnmp-cons {
    border-top: 4px solid #bf2937;
}

.bnmp-proscons-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.bnmp-pros .bnmp-proscons-title {
    color: var(--bnmp-green);
}

.bnmp-cons .bnmp-proscons-title {
    color: #ca2d28;
}

.bnmp-proscons-list {
    list-style: none;
    padding: 0;
}

.bnmp-proscons-list li {
    padding: 10px 0;
    padding-left: 31px;
    position: relative;
    border-bottom: 1px solid var(--bnmp-border-light);
    font-size: 15px;
}

.bnmp-proscons-list li:last-child {
    border-bottom: none;
}

.bnmp-pros .bnmp-proscons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bnmp-green);
    font-weight: 700;
}

.bnmp-cons .bnmp-proscons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c0312e;
    font-weight: 700;
}

/* FAQ Accordion Component */
.bnmp-faq-section {
    background: var(--bnmp-bg-alt);
    padding: 73px 0;
}

.bnmp-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.bnmp-faq-item {
    background: var(--bnmp-white);
    border-radius: var(--bnmp-radius-lg);
    margin-bottom: 18px;
    border: 1px solid var(--bnmp-border-light);
    overflow: hidden;
    transition: var(--bnmp-transition);
}

.bnmp-faq-item:hover {
    border-color: var(--bnmp-green);
}

.bnmp-faq-item.open {
    border-color: var(--bnmp-green);
    box-shadow: var(--bnmp-shadow-md);
}

.bnmp-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 29px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--bnmp-transition);
}

.bnmp-faq-trigger:hover {
    background: var(--bnmp-bg-alt);
}

.bnmp-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--bnmp-text-dark);
    line-height: 1.4;
    padding-right: 17px;
}

.bnmp-faq-icon {
    width: 35px;
    height: 32px;
    background: var(--bnmp-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--bnmp-transition);
    color: var(--bnmp-green);
    font-size: 18px;
}

.bnmp-faq-item.open .bnmp-faq-icon {
    background: var(--bnmp-green);
    color: var(--bnmp-white);
    transform: rotate(180deg);
}

.bnmp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.bnmp-faq-item.open .bnmp-faq-answer {
    max-height: 600px;
}

.bnmp-faq-answer-inner {
    padding: 0 26px 29px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--bnmp-text-body);
}

/* Footer */
.bnmp-footer {
    background: linear-gradient(170deg, var(--bnmp-green-dark) 0%, #204218 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 71px 0 43px;
}

.bnmp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 47px;
    margin-bottom: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bnmp-footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    color: var(--bnmp-white);
    font-weight: 700;
    font-size: 20px;
}

.bnmp-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.bnmp-footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--bnmp-white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.bnmp-footer-list {
    list-style: none;
}

.bnmp-footer-list li {
    margin-bottom: 12px;
}

.bnmp-footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--bnmp-transition);
}

.bnmp-footer-list a:hover {
    color: var(--bnmp-yellow);
}

.bnmp-footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 22px;
    border-radius: var(--bnmp-radius-md);
    margin-bottom: 33px;
}

.bnmp-footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.bnmp-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .bnmp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnmp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnmp-proscons {
        grid-template-columns: 1fr;
    }

    .bnmp-hero-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .bnmp-burger {
        display: flex;
    }

    .bnmp-navigation, .bnmp-header-action {
        display: none;
    }

    .bnmp-hero {
        padding: 63px 0 68px;
    }

    .bnmp-hero-heading {
        font-size: 32px;
    }

    .bnmp-hero-text {
        font-size: 16px;
    }

    .bnmp-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bnmp-btn {
        width: 100%;
        justify-content: center;
    }

    .bnmp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .bnmp-stat-number {
        font-size: 32px;
    }

    .bnmp-company-row {
        flex-direction: column;
        text-align: center;
        padding: 17px;
    }

    .bnmp-company-btn {
        width: 100%;
    }

    .bnmp-section-title {
        font-size: 28px;
    }

    .bnmp-article h2 {
        font-size: 26px;
    }

    .bnmp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .bnmp-wrapper {
        padding-left: 21px;
        padding-right: 17px;
    }

    .bnmp-stats-grid {
        grid-template-columns: 1fr;
    }

    .bnmp-hero-heading {
        font-size: 28px;
    }
}

/* ========================================
   Companies Comparison Table - Crisp Field Style
   ======================================== */
.bnmp-comparison-section {
    padding: 77px 0;
    background: var(--bnmp-bg);
}

.bnmp-comparison-header {
    text-align: center;
    margin-bottom: 48px;
}

.bnmp-comparison-flag {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 6px 19px;
    background: var(--bnmp-green);
    color: var(--bnmp-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bnmp-comparison-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--bnmp-green);
    margin-bottom: 12px;
}

.bnmp-comparison-subtitle {
    font-size: 16px;
    color: var(--bnmp-gray-600);
    max-width: 620px;
    margin: 0 auto;
}

.bnmp-comparison-table {
    width: 100%;
    background: var(--bnmp-white);
    border-radius: 9px;
    overflow: hidden;
    border: 3px solid var(--bnmp-green);
}

.bnmp-comparison-table thead {
    background: var(--bnmp-green);
}

.bnmp-comparison-table th {
    padding: 19px 24px;
    text-align: left;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bnmp-white);
}

.bnmp-comparison-table td {
    padding: 23px 20px;
    border-bottom: 2px solid var(--bnmp-bg-alt);
    font-size: 14px;
    color: var(--bnmp-gray-700);
}

.bnmp-comparison-table tbody tr:hover {
    background: var(--bnmp-bg-alt);
}

.bnmp-company-cell {
    display: flex;
    align-items: center;
    gap: 13px;
}

.bnmp-company-badge {
    width: 52px;
    height: 50px;
    background: var(--bnmp-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnmp-company-badge img {
    max-width: 32px;
    max-height: 32px;
}

.bnmp-company-desc h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bnmp-green-dark);
}

.bnmp-company-desc span {
    font-size: 12px;
    color: var(--bnmp-gray-500);
}

.bnmp-rating-field {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 11px;
    background: var(--bnmp-yellow);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--bnmp-green-dark);
}

.bnmp-feature-field {
    display: inline-block;
    padding: 5px 13px;
    background: var(--bnmp-green);
    color: var(--bnmp-white);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.bnmp-btn-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: var(--bnmp-yellow);
    color: var(--bnmp-green-dark);
    text-decoration: none;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.bnmp-btn-field:hover {
    background: var(--bnmp-green);
    color: var(--bnmp-white);
}

.bnmp-comparison-cards { display: none; }

.bnmp-company-card {
    background: var(--bnmp-white);
    border-radius: 11px;
    border: 3px solid var(--bnmp-green);
    padding: 23px;
    margin-bottom: 18px;
}

.bnmp-card-banner {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--bnmp-bg-alt);
}

.bnmp-card-badge {
    width: 60px;
    height: 60px;
    background: var(--bnmp-yellow);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnmp-card-title h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--bnmp-green-dark);
}

.bnmp-card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 20px;
}

.bnmp-card-metric {
    padding: 17px;
    background: var(--bnmp-bg-alt);
    border-radius: 6px;
}

.bnmp-card-metric-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bnmp-gray-500);
    margin-bottom: 3px;
}

.bnmp-card-metric-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--bnmp-green-dark);
}

.bnmp-card-cta-field {
    display: block;
    text-align: center;
    padding: 11px;
    background: var(--bnmp-yellow);
    color: var(--bnmp-green-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
}

.bnmp-card-cta-field:hover {
    background: var(--bnmp-green);
    color: var(--bnmp-white);
}

@media (max-width: 900px) {
    .bnmp-comparison-table { display: none; }
    .bnmp-comparison-cards { display: block; }
    .bnmp-comparison-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .bnmp-comparison-section { padding: 53px 0; }
    .bnmp-card-metrics { grid-template-columns: 1fr; }
}


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

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

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

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

    .bnmp-companies-section .bnmp-companies-table tbody tr.bnmp-company-row {
        background: #fff !important;
        margin-bottom: 22px !important;
        border-radius: 13px !important;
        box-shadow: 0 4px 27px rgba(89,26,42,0.1) !important;
        padding: 18px !important;
        border: 2px solid rgba(90,32,50,0.08);
    }

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

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

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

    .bnmp-companies-section .bnmp-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 13px !important;
        border-bottom: 2px solid #eee2d2 !important;
    }

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

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

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

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

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

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

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

.bnmp-menu-line {
    width: 21px;
    height: 3px;
    background: var(--bnmp-text, #2c3c3e);
    border-radius: 3px;
    transition: 0.3s;
}

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

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

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

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


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

.bnmp-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) {
    .bnmp-nav {
        display: none !important;
    }

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


/* Mobile Navigation Hidden by Default */
.bnmp-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px 26px;
    border-top: 1px solid #eee;
}

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

.bnmp-mobile-link {
    padding: 12px 0;
    color: var(--bnmp-text, #233f43);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

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

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


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

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

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .bnmp-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) {
    .bnmp-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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