/**
 * Hitachi Sharp Theme
 * Auto-generated
 */

:root {
    --nmlk-primary: #0a2819;
    --nmlk-primary-light: #4b585b;
    --nmlk-primary-dark: #0a101d;
    --nmlk-bronze: #f5ba2a;
    --nmlk-bronze-light: #4982ed;
    --nmlk-bronze-dark: #1d50b3;
    --nmlk-silver: #b6c6cc;
    --nmlk-silver-light: #d0d5dc;
    --nmlk-charcoal: #F1F5F9;
    --nmlk-midnight: #FFFFFF;
    --nmlk-slate: #FFFFFF;
    --nmlk-text: #E8EDF2;
    --nmlk-text-dim: #9293a3;
    --nmlk-text-dark: #0a1d22;
    --nmlk-border: #ccd6e6;
    --nmlk-success: #25ce67;
    --nmlk-warning: #e75438;
    --nmlk-highlight: #f5d10a;
    --nmlk-curve-sm: 3px;
    --nmlk-curve-md: 6px;
    --nmlk-curve-lg: 10px;
    --nmlk-glow: 0 2px 4px rgba(0,0,0,0.12);
    --nmlk-glow-bronze: 0 6px 24px rgba(38,106,231,0.25);
    --nmlk-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --nmlk-font-heading: 'Inter', sans-serif;
    --nmlk-font-text: 'Inter', sans-serif;
}

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

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

body.nmlk-page {
    font-family: var(--nmlk-font-text);
    background: linear-gradient(180deg, var(--nmlk-charcoal) 0%, var(--nmlk-midnight) 100%);
    color: var(--nmlk-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--nmlk-bronze);
    text-decoration: none;
    transition: var(--nmlk-anim);
}

a:hover {
    color: var(--nmlk-bronze-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   NAVIGATION BAR
================================================ */
.nmlk-topbar {
    background: linear-gradient(180deg, var(--nmlk-primary-dark) 0%, var(--nmlk-charcoal) 100%);
    border-bottom: 1px solid var(--nmlk-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
}

.nmlk-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
}

.nmlk-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-right: auto;
}

.nmlk-brand__title {
    font-family: var(--nmlk-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--nmlk-text);
    letter-spacing: 0.6px;
}

.nmlk-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nmlk-menu__link {
    display: inline-block;
    padding: 8px 24px;
    color: var(--nmlk-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border-radius: var(--nmlk-curve-sm);
    transition: var(--nmlk-anim);
}

.nmlk-menu__link:hover,
.nmlk-menu__link.current {
    color: var(--nmlk-bronze);
    background: rgba(37,92,239,0.12);
}

.nmlk-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 29px;
    background: linear-gradient(135deg, var(--nmlk-bronze) 0%, var(--nmlk-bronze-dark) 100%);
    color: var(--nmlk-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 52px;
    transition: var(--nmlk-anim);
    box-shadow: var(--nmlk-glow-bronze);
}

.nmlk-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,101,234,0.5);
    color: var(--nmlk-charcoal);
}

.nmlk-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--nmlk-bronze);
    border-radius: var(--nmlk-curve-sm);
    cursor: pointer;
}

.nmlk-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--nmlk-bronze);
    transition: var(--nmlk-anim);
}

.nmlk-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nmlk-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nmlk-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nmlk-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--nmlk-primary-dark);
    transition: max-height 0.35s ease;
}

.nmlk-drawer.open {
    display: block;
    max-height: 420px;
    padding: 24px 29px;
}

.nmlk-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nmlk-drawer__nav a {
    display: block;
    padding: 13px 27px;
    color: var(--nmlk-text);
    font-size: 15px;
    border-radius: var(--nmlk-curve-sm);
}

.nmlk-drawer__nav a:hover {
    background: rgba(43,103,242,0.12);
    color: var(--nmlk-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.nmlk-content {
    min-height: calc(100vh - 200px);
}

.nmlk-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 29px;
}

/* ================================================
   HERO BANNER
================================================ */
.nmlk-hero {
    text-align: center;
    padding: 0 0 18px;
    margin-bottom: 15px;
}

.nmlk-hero__tag {
    display: inline-block;
    padding: 13px 25px;
    background: rgba(42,97,233,0.18);
    color: var(--nmlk-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 50px;
    margin-bottom: 21px;
}

.nmlk-hero__heading {
    font-family: var(--nmlk-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--nmlk-text);
    margin-bottom: 19px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.nmlk-hero__desc {
    font-size: 19px;
    color: var(--nmlk-text-dim);
    max-width: 640px;
    margin: 0 auto 39px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.nmlk-section-intro {
    text-align: center;
    margin-bottom: 44px;
}

.nmlk-section-intro__label {
    display: inline-block;
    padding: 5px 20px;
    background: rgba(41,106,241,0.18);
    color: var(--nmlk-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 51px;
    margin-bottom: 14px;
}

.nmlk-section-intro__title {
    font-family: var(--nmlk-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--nmlk-text);
    margin-bottom: 12px;
}

.nmlk-section-intro__text {
    font-size: 16px;
    color: var(--nmlk-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.nmlk-providers {
    margin: 50px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.nmlk-providers__grid {
    background: var(--nmlk-slate);
    border-radius: var(--nmlk-curve-lg);
    overflow: hidden;
    box-shadow: var(--nmlk-glow);
}

.nmlk-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 27px;
    padding: 17px 30px;
    background: #0e1d28;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    align-items: center;
}

.nmlk-providers__head > div {
    text-align: center;
    color: #fff;
}

.nmlk-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 21px;
    padding: 24px 31px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #d9e1de;
    background: #ffffff;
    transition: background 0.2s ease;
}

.nmlk-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.nmlk-providers__row:last-child {
    border-bottom: none;
}

.nmlk-providers__row:hover {
    background: #e8edf5;
}

.nmlk-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #1850c0;
}

.nmlk-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nmlk-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 7px;
    background: #fff;
    padding: 14px 15px;
    border: 2px solid #eee;
}

.nmlk-company-cell__tagline {
    font-size: 12px;
    color: #2252c4;
    text-align: center;
    font-weight: 500;
}

.nmlk-perks {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.nmlk-perk {
    display: block;
    padding: 6px 14px;
    background: #eaf2e8;
    color: #23541b;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    border: 1px solid #c6e2c9;
}

.nmlk-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nmlk-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.nmlk-stars__star {
    font-size: 17px;
}

.nmlk-stars__star.lit {
    color: #f59b10;
}

.nmlk-stars__star.dim {
    color: #c8d8d1;
}

.nmlk-score__num {
    font-weight: 700;
    color: #2d474c;
    font-size: 17px;
}

.nmlk-score__bbb {
    font-size: 11px;
    color: #115421;
    font-weight: 700;
    background: #e8f5e9;
    padding: 1px 10px;
    border-radius: 3px;
}

.nmlk-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nmlk-invest__amount {
    font-weight: 700;
    color: #263b47;
    font-size: 17px;
}

.nmlk-invest__label {
    font-size: 11px;
    color: #828f90;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.nmlk-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.nmlk-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 21px;
    background: linear-gradient(135deg, #1658c4 0%, #4770e6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-radius: 11px;
    transition: var(--nmlk-anim);
}

.nmlk-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(32,92,228,0.3);
}

.nmlk-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    color: #5c4c57;
    border: 1px solid #c3c4d3;
    font-size: 11px;
    border-radius: 7px;
    transition: var(--nmlk-anim);
}

.nmlk-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #34312d;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.nmlk-toc {
    background: linear-gradient(135deg, rgba(31,102,236,0.12) 0%, rgba(30,103,227,0.05) 100%);
    border: 2px solid var(--nmlk-bronze);
    border-radius: var(--nmlk-curve-lg);
    padding: 29px 34px;
    margin: 39px 0;
}

.nmlk-toc__title {
    font-family: var(--nmlk-font-heading);
    font-size: 22px;
    color: var(--nmlk-text);
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nmlk-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.nmlk-toc__list li a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    color: var(--nmlk-text);
    font-size: 14px;
    border-radius: var(--nmlk-curve-sm);
    transition: var(--nmlk-anim);
}

.nmlk-toc__list li a:hover {
    background: rgba(29,97,235,0.18);
    color: var(--nmlk-bronze);
}

.nmlk-toc__list li a::before {
    content: '\2192';
    color: var(--nmlk-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.nmlk-article {
    margin: 44px 0;
}

.nmlk-article h1 {
    font-family: var(--nmlk-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--nmlk-text);
    margin-bottom: 26px;
    text-align: center;
}

.nmlk-block {
    margin: 43px 0;
    padding: 35px;
    background: var(--nmlk-slate);
    border-radius: var(--nmlk-curve-lg);
}

.nmlk-block#overview {
    background: transparent;
    padding: 0;
}

.nmlk-block h2 {
    font-family: var(--nmlk-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--nmlk-text);
    margin-bottom: 20px;
}

.nmlk-block__body {
    font-size: 19px;
    line-height: 1.85;
}

.nmlk-block__body p {
    margin-bottom: 18px;
}

.nmlk-block__body ul,
.nmlk-block__body ol {
    margin: 15px 0;
    padding-left: 30px;
}

.nmlk-block__body li {
    margin-bottom: 11px;
}

.nmlk-block__body strong {
    color: var(--nmlk-text);
}

.nmlk-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 21px auto;
}

/* Content images */
.nmlk-content-image {
    margin: 37px 0;
    border-radius: var(--nmlk-curve-lg);
    overflow: hidden;
    box-shadow: var(--nmlk-glow);
}

.nmlk-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.nmlk-faq {
    padding: 58px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--nmlk-curve-lg);
    margin: 51px 0;
}

.nmlk-faq .nmlk-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 17px;
}

.nmlk-faq-header {
    text-align: center;
    margin-bottom: 42px;
}

.nmlk-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #f5c41d 0%, #4e71e9 100%);
    color: white;
    padding: 5px 19px;
    border-radius: 21px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.nmlk-faq-title {
    font-size: 29px;
    font-weight: 700;
    color: #18162e;
    margin: 0;
}

.nmlk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nmlk-faq-item {
    background: white;
    border-radius: 11px;
    box-shadow: 0 3px 9px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.nmlk-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.nmlk-faq-item.active .nmlk-faq-answer {
    max-height: 500px;
    padding: 0 21px 22px;
}

.nmlk-faq-item.active .nmlk-faq-icon {
    transform: rotate(180deg);
}

.nmlk-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #221833;
    gap: 14px;
}

.nmlk-faq-question:hover {
    color: #f5c31a;
}

.nmlk-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #f5c420;
}

.nmlk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 21px;
}

.nmlk-faq-answer-inner {
    color: #41415b;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.nmlk-reviews {
    margin: 63px 0;
    overflow: hidden;
}

.nmlk-reviews__carousel {
    display: flex;
    gap: 31px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nmlk-reviews__carousel:hover {
    animation-play-state: paused;
}

.nmlk-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--nmlk-slate);
    padding: 26px;
    border-radius: var(--nmlk-curve-lg);
    border: 2px solid var(--nmlk-border);
}

.nmlk-review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.nmlk-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--nmlk-bronze) 0%, var(--nmlk-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--nmlk-charcoal);
    overflow: hidden;
}

.nmlk-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nmlk-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nmlk-review-card__name {
    font-weight: 600;
    color: var(--nmlk-text);
}

.nmlk-review-card__location {
    font-size: 13px;
    color: var(--nmlk-text-dim);
}

.nmlk-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--nmlk-success);
    color: var(--nmlk-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nmlk-review-card__stars {
    margin-bottom: 13px;
}

.nmlk-review-card__text {
    font-size: 15px;
    color: var(--nmlk-text);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.7;
}

.nmlk-review-card__date {
    font-size: 12px;
    color: var(--nmlk-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.nmlk-footer {
    background: linear-gradient(180deg, var(--nmlk-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--nmlk-border);
    padding: 58px 0 43px;
    margin-top: 64px;
}

.nmlk-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
}

.nmlk-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 59px;
    margin-bottom: 53px;
    padding-bottom: 41px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nmlk-footer__brand-name {
    font-family: var(--nmlk-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--nmlk-text);
    margin-bottom: 14px;
}

.nmlk-footer__desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--nmlk-text-dim);
    max-width: 360px;
}

.nmlk-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--nmlk-text);
    margin-bottom: 23px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.nmlk-footer__links {
    list-style: none;
}

.nmlk-footer__links li {
    margin-bottom: 10px;
}

.nmlk-footer__links a {
    color: var(--nmlk-text-dim);
    font-size: 15px;
    transition: var(--nmlk-anim);
}

.nmlk-footer__links a:hover {
    color: var(--nmlk-bronze);
}

.nmlk-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.nmlk-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.nmlk-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.nmlk-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 9px 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .nmlk-providers__head {
        display: none;
    }
    .nmlk-providers__row {
        grid-template-columns: 1fr;
        padding: 27px 20px;
        text-align: center;
    }
    .nmlk-company-cell__logo {
        max-width: 200px;
    }
    .nmlk-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .nmlk-menu {
        display: none;
    }
    .nmlk-hamburger {
        display: flex;
        margin-left: auto;
    }
    .nmlk-topbar__action {
        display: none;
    }
    .nmlk-hero__heading {
        font-size: 32px;
    }
    .nmlk-hero__desc {
        font-size: 16px;
    }
    .nmlk-toc__list {
        grid-template-columns: 1fr;
    }
    .nmlk-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .nmlk-article h1 {
        font-size: 35px;
    }
    .nmlk-block h2 {
        font-size: 24px;
    }
    .nmlk-sticky-bar {
        flex-direction: column;
        gap: 5px;
        padding: 10px 11px;
        text-align: center;
    }
    .nmlk-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .nmlk-faq { padding: 38px 0; }
    .nmlk-faq-title { font-size: 27px; }
    .nmlk-faq-question { font-size: 15px; padding: 13px 22px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.nmlk-hero__tag { margin-bottom: 3px !important; margin-top: 0 !important; }
.nmlk-hero__heading { margin-bottom: 5px !important; margin-top: 0 !important; }
h1 { font-size: clamp(23px, 3vw, 32px) !important; margin-bottom: 15px !important; }
.nmlk-hero__desc { margin-bottom: 12px !important; }
.nmlk-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 9px !important; border: none !important; }

body.nmlk-page { padding-bottom: 72px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.nmlk-page {
    background: #FFFFFF;
    color: #0e2625;
}
.nmlk-content { color: #0a272a; }
.nmlk-hero__heading { color: #0d191a; }
.nmlk-hero__desc { color: #3f4d66; }
.nmlk-section-intro__title { color: #0a2026; }
.nmlk-section-intro__text { color: #4d5572; }
.nmlk-block { background: #F1F5F9; }
.nmlk-block#overview { background: transparent; }
.nmlk-block h2 { color: #0f1920; }
.nmlk-block__body { color: #0a1b22; }
.nmlk-block__body strong { color: #122027; }
.nmlk-article h1 { color: #0a2218; }
.nmlk-toc { background: rgba(38,93,239,0.05); }
.nmlk-toc__title { color: #11281e; }
.nmlk-toc__list li a { color: #0a1923; }
.nmlk-review-card { background: #fff; border-color: #cccee7; }
.nmlk-review-card__name { color: #0a2119; }
.nmlk-review-card__text { color: #0a2225; }
.nmlk-review-card__location { color: #415b71; }
.nmlk-review-card__date { color: #4a5c61; }
.nmlk-wrapper { color: #0a1b1f; }
.nmlk-faq-title { color: #0c2126; }
.nmlk-faq-question { color: #10222b; }
.nmlk-faq-answer-inner { color: #435b62; }
.nmlk-footer {
    background: linear-gradient(180deg, #0f2920 0%, #090d19 100%);
}

/* ===== COMPREHENSIVE MOBILE FIX — Mar 5 2026 ===== */

/* Fix class name mismatch: HTML uses nmlk-topbar__inner, CSS defined nmlk-topbar__wrap */
.nmlk-topbar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Fix burger button (HTML uses nmlk-burger, CSS defined nmlk-hamburger) */
.nmlk-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: 1px solid #d29422;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
}
.nmlk-burger span {
    width: 22px;
    height: 2px;
    background: #c79913;
    transition: all 0.3s ease;
    display: block;
}
.nmlk-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nmlk-burger.is-open span:nth-child(2) { opacity: 0; }
.nmlk-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav modal */
.nmlk-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #12281d;
    z-index: 10000;
    flex-direction: column;
    padding: 72px 23px 27px;
    gap: 9px;
    transition: right 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
}
.nmlk-mobile-nav.is-open {
    display: flex;
    right: 0;
}
.nmlk-mobile-nav a {
    display: block;
    padding: 14px 17px;
    color: #E8EDF2;
    font-size: 18px;
    font-weight: 500;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s;
}
.nmlk-mobile-nav a:hover {
    background: rgba(245,196,43,0.15);
    color: #f5b82a;
}
/* Mobile nav close button */
.jbc-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jbc-mobile-close:hover { background: rgba(255,255,255,0.2); }

/* Mobile nav overlay */
.nmlk-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}
.nmlk-mobile-overlay.is-open { display: block; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .nmlk-menu { display: none !important; }
    .nmlk-topbar__action { display: none !important; }
    .nmlk-burger { display: flex !important; }

    .nmlk-wrapper { padding: 10px 9px !important; }
    .nmlk-block { padding: 23px 15px !important; margin: 18px 0 !important; }
    .nmlk-hero { padding: 0 7px !important; }
    .nmlk-hero__title { font-size: 24px !important; line-height: 1.3 !important; }

    /* Alert strip hide price ticker */
    .nmlk-alert-strip { font-size: 12px; padding: 10px 11px; }

    /* Company cards - vertical card layout */
    .nmlk-grid { display: flex; flex-direction: column; gap: 19px; }
    .nmlk-card {
        background: #fff;
        border-radius: 17px;
        padding: 18px 19px;
        box-shadow: 0 2px 9px rgba(0,0,0,0.08);
        border: 1px solid #d9e3e7;
        text-align: center;
    }
    .nmlk-card.top-pick {
        border: 2px solid #c99a20;
        box-shadow: 0 4px 20px rgba(195,159,21,0.2);
    }
    .nmlk-card__company {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .nmlk-card__logo {
        width: 40% !important;
        max-width: 160px;
        height: auto !important;
        border-radius: 12px;
        object-fit: contain;
    }
    .nmlk-card__name { font-size: 18px; font-weight: 700; color: #0a242a; }
    .nmlk-card__tagline { font-size: 13px; color: #cda115; font-weight: 600; }
    .nmlk-card__pros { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin: 15px 0; }
    .nmlk-pro-tag {
        background: #eaf2e8;
        color: #1e5924;
        padding: 5px 8px;
        border-radius: 23px;
        font-size: 11px;
        font-weight: 600;
    }
    .nmlk-card__rating { display: flex; align-items: center; justify-content: center; gap: 5px; margin: 10px 0; }
    .nmlk-card__invest { margin: 7px 0; }
    .nmlk-invest-amount { font-size: 21px; font-weight: 700; color: #0a232b; }
    .nmlk-invest-label { font-size: 11px; color: #7b8e86; }
    .nmlk-card__actions { display: flex; gap: 8px; justify-content: center; margin-top: 15px; }

    /* Buttons */
    .nmlk-btn-get {
        display: inline-block;
        padding: 12px 21px;
        background: linear-gradient(135deg, #cfa11b, #f5b924);
        color: #fff !important;
        font-weight: 700;
        font-size: 14px;
        border-radius: 7px;
        text-decoration: none;
    }
    .nmlk-btn-read {
        display: inline-block;
        padding: 15px 21px;
        border: 1px solid #d0d0e6;
        color: #46565f !important;
        font-size: 13px;
        border-radius: 8px;
        text-decoration: none;
    }

    /* Rank badge */
    .nmlk-card__rank {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: #d19b18;
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        border-radius: 50%;
        margin-bottom: 11px;
    }

    /* Section headers */
    .nmlk-section-head { text-align: center; margin-bottom: 21px; padding: 0 6px; }
    .nmlk-section-head__label {
        display: inline-block;
        padding: 7px 14px;
        background: rgba(194,152,29,0.15);
        color: #c7a11e;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.6px;
        border-radius: 19px;
        margin-bottom: 11px;
    }
    .nmlk-section-head__title { font-size: 22px; font-weight: 700; color: #111828; margin-bottom: 6px; }
    .nmlk-section-head__desc { font-size: 14px; color: #3e5160; }

    /* Content blocks full width */
    .nmlk-block__content { font-size: 15px; line-height: 1.7; color: #393838; }
    .nmlk-block__content p { margin-bottom: 11px; }
    .nmlk-block__content ul, .nmlk-block__content ol { padding-left: 22px; }
    .nmlk-block__title { font-size: 19px !important; color: #0b231e !important; margin-bottom: 17px !important; }

    /* Images in content */
    .nmlk-img-block { margin: 17px 0; border-radius: 10px; overflow: hidden; }
    .nmlk-img-block img { width: 100%; height: auto; border-radius: 15px; }

    /* Phone CTA */
    .nmlk-phone-cta {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #F1F5F9;
        padding: 11px 18px;
        border-radius: 11px;
        margin: 15px 0;
    }
    .nmlk-phone-cta__icon { font-size: 24px; }
    .nmlk-phone-cta__text { font-size: 13px; color: #475e62; }
    .nmlk-phone-cta__number { font-size: 16px; font-weight: 700; color: #0a181f; }

    /* Trust row */
    .nmlk-trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 13px;
    }
    .nmlk-trust-item {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        color: #4a516b;
    }
    .nmlk-trust-icon { font-size: 18px; }

    /* Hero buttons */
    .nmlk-hero__buttons {
        display: flex;
        flex-direction: column;
        gap: 11px;
        align-items: center;
        margin: 14px 0;
    }
    .nmlk-btn.htc-btn--main {
        display: inline-block;
        padding: 17px 28px;
        background: linear-gradient(135deg, #c29626, #f5c21d);
        color: #fff !important;
        font-weight: 700;
        font-size: 15px;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(193,154,24,0.3);
    }
    .nmlk-btn.htc-btn--outline {
        display: inline-block;
        padding: 13px 22px;
        border: 3px solid #cfa21b;
        color: #c58f1d !important;
        font-weight: 600;
        font-size: 14px;
        border-radius: 7px;
        text-decoration: none;
    }

    /* Checklist */
    .nmlk-checklist {
        background: #F1F5F9;
        border-radius: 14px;
        padding: 19px 19px;
        margin: 21px 0;
    }
    .nmlk-checklist__title {
        font-size: 18px;
        font-weight: 700;
        color: #0a1f18;
        margin-bottom: 17px;
    }
    .nmlk-checklist__item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 5px 0;
    }
    .nmlk-checklist__icon { color: #37cf6c; font-weight: 700; }
    .nmlk-checklist__text { font-size: 14px; color: #382c2f; }

    /* FAQ */
    .nmlk-faq { margin: 19px 0; padding: 27px 0; border-radius: 13px; }
    .nmlk-faq-item {
        background: #fff;
        border-radius: 8px;
        margin: 0 13px 8px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.06);
        overflow: hidden;
    }
    .nmlk-faq-q {
        padding: 15px 21px;
        font-weight: 600;
        font-size: 15px;
        color: #0a2723;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nmlk-faq-q::after {
        content: '\25BC';
        font-size: 12px;
        color: #d18f23;
        transition: transform 0.3s;
        flex-shrink: 0;
    }
    .nmlk-faq-item.is-open .nmlk-faq-q::after { transform: rotate(180deg); }
    .nmlk-faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0 21px;
    }
    .nmlk-faq-item.is-open .nmlk-faq-a {
        max-height: 600px;
        padding: 0 15px 20px;
    }
    .nmlk-faq-a__inner { font-size: 14px; color: #445160; line-height: 1.7; }

    /* Footer */
    .nmlk-footer__grid { grid-template-columns: 1fr !important; gap: 27px !important; }
    .nmlk-footer { padding: 31px 0 18px !important; }
    .nmlk-footer__inner { padding: 0 19px !important; }

    /* Sticky footer compact */
    #stickyFoot {
        padding: 8px 9px !important;
        gap: 7px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    #stickyFoot img { height: 28px !important; }
    #stickyFoot span { font-size: 11px !important; display: none !important; }
    #stickyFoot a[href*="gokiiit"] {
        padding: 9px 12px !important;
        font-size: 15px !important;
        white-space: nowrap;
    }
    .sticky-close-btn {
        position: absolute;
        top: -10px;
        right: -2px;
        width: 24px;
        height: 24px;
        background: #e84a38;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 17px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    /* Page header */
    .nmlk-page-header { text-align: center; padding: 19px 8px; }
    .nmlk-page-title { font-size: 19px; font-weight: 700; color: #0a252a; }
    .nmlk-page-intro { font-size: 14px; color: #475a62; margin-top: 7px; }

    /* Kit banner */
    .kit-banner-block { margin: 19px 0; text-align: center; }
    .kit-banner-block img { max-width: 100%; border-radius: 11px; }
}

/* ===== DESKTOP company cards ===== */
@media (min-width: 769px) {
    .nmlk-grid {
        display: flex;
        flex-direction: column;
        gap: 19px;
    }
    .nmlk-card {
        display: grid;
        grid-template-columns: auto 1fr auto auto auto;
        align-items: center;
        gap: 20px;
        background: #fff;
        border-radius: 9px;
        padding: 22px 23px;
        box-shadow: 0 3px 9px rgba(0,0,0,0.06);
        border: 1px solid #d8dfed;
    }
    .nmlk-card.top-pick {
        border: 2px solid #cd951f;
        background: #fffef5;
    }
    .nmlk-card__rank {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: #cc9d17;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        border-radius: 50%;
    }
    .nmlk-card__company {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .nmlk-card__logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
    }
    .nmlk-card__name { font-size: 20px; font-weight: 700; color: #0a2720; }
    .nmlk-card__tagline { font-size: 12px; color: #c59020; font-weight: 600; }
    .nmlk-card__pros { display: flex; flex-wrap: wrap; gap: 5px; }
    .nmlk-pro-tag {
        background: #eaf2e8;
        color: #165c16;
        padding: 5px 9px;
        border-radius: 23px;
        font-size: 12px;
        font-weight: 600;
    }
    .nmlk-card__rating { text-align: center; }
    .nmlk-score { font-weight: 700; color: #31424b; }
    .nmlk-bbb { font-size: 11px; color: #1a6321; background: #e8f5e9; padding: 3px 8px; border-radius: 3px; }
    .nmlk-card__invest { text-align: center; }
    .nmlk-invest-amount { font-size: 17px; font-weight: 700; color: #0a1a19; }
    .nmlk-invest-label { font-size: 11px; color: #868a89; display: block; }
    .nmlk-card__actions { display: flex; flex-direction: column; gap: 7px; }
    .nmlk-btn-get {
        display: inline-block;
        padding: 11px 18px;
        background: linear-gradient(135deg, #c09925, #f5c41d);
        color: #fff !important;
        font-weight: 700;
        font-size: 13px;
        border-radius: 8px;
        text-decoration: none;
        text-align: center;
    }
    .nmlk-btn-read {
        display: inline-block;
        padding: 5px 18px;
        border: 1px solid #c1ccde;
        color: #474e6b !important;
        font-size: 12px;
        border-radius: 9px;
        text-decoration: none;
        text-align: center;
    }

    /* Desktop burger hidden */
    .nmlk-burger { display: none !important; }
    .nmlk-mobile-nav { display: none !important; }

    /* Hero buttons desktop */
    .nmlk-hero__buttons { display: flex; gap: 12px; justify-content: center; margin: 23px 0; }
    .nmlk-btn.htc-btn--main {
        padding: 14px 29px;
        background: linear-gradient(135deg, #c39726, #f5bf1e);
        color: #fff !important;
        font-weight: 700;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(197,145,34,0.3);
    }
    .nmlk-btn.htc-btn--outline {
        padding: 13px 26px;
        border: 3px solid #c29f1b;
        color: #cb9020 !important;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
    }

    /* Trust row desktop */
    .nmlk-trust-row { display: flex; justify-content: center; gap: 21px; margin-top: 22px; }
    .nmlk-trust-item { display: flex; align-items: center; gap: 7px; font-size: 17px; color: #4d4e6e; }

    /* Section head */
    .nmlk-section-head { text-align: center; margin-bottom: 29px; }
    .nmlk-section-head__label {
        display: inline-block;
        padding: 6px 21px;
        background: rgba(204,155,26,0.15);
        color: #c59813;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 22px;
        margin-bottom: 11px;
    }
    .nmlk-section-head__title { font-size: 30px; font-weight: 700; color: #0f221d; margin-bottom: 9px; }
    .nmlk-section-head__desc { font-size: 16px; color: #425b69; }

    /* Phone CTA */
    .nmlk-phone-cta {
        display: flex;
        align-items: center;
        gap: 19px;
        background: #F1F5F9;
        padding: 16px 21px;
        border-radius: 14px;
        margin: 15px 0;
    }
    .nmlk-phone-cta__icon { font-size: 28px; }
    .nmlk-phone-cta__text { font-size: 15px; color: #454e60; }
    .nmlk-phone-cta__number { font-size: 18px; font-weight: 700; color: #12211e; }

    /* Checklist */
    .nmlk-checklist {
        background: #F1F5F9;
        border-radius: 15px;
        padding: 28px 29px;
        margin: 30px 0;
    }
    .nmlk-checklist__title { font-size: 20px; font-weight: 700; color: #0b281b; margin-bottom: 19px; }
    .nmlk-checklist__item { display: flex; align-items: flex-start; gap: 13px; padding: 6px 0; }
    .nmlk-checklist__icon { color: #25d36e; font-weight: 700; }
    .nmlk-checklist__text { font-size: 15px; color: #2a3332; }

    /* Sticky footer close */
    .sticky-close-btn {
        position: absolute;
        top: -12px;
        right: 8px;
        width: 26px;
        height: 26px;
        background: #e7453e;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    /* FAQ desktop */
    .nmlk-faq-q {
        padding: 21px 24px;
        font-weight: 600;
        font-size: 16px;
        color: #0a1d2b;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nmlk-faq-q::after {
        content: '\25BC';
        font-size: 12px;
        color: #cd9917;
        transition: transform 0.3s;
    }
    .nmlk-faq-item.is-open .nmlk-faq-q::after { transform: rotate(180deg); }
    .nmlk-faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0 23px;
    }
    .nmlk-faq-item.is-open .nmlk-faq-a {
        max-height: 600px;
        padding: 0 25px 18px;
    }
    .nmlk-faq-a__inner { font-size: 15px; color: #405b67; line-height: 1.7; }

    /* Page header */
    .nmlk-page-header { text-align: center; padding: 24px 0; }
    .nmlk-page-title { font-size: 29px; font-weight: 700; color: #0d2a25; }
    .nmlk-page-intro { font-size: 16px; color: #3f4f6e; margin-top: 7px; }

    /* Image blocks */
    .nmlk-img-block { margin: 27px 0; border-radius: 13px; overflow: hidden; }
    .nmlk-img-block img { width: 100%; height: auto; display: block; border-radius: 10px; }
}

/* ===== Star ratings ===== */
.nmlk-star.on { color: #f1990a; }
.nmlk-star { color: #d7d6d6; font-size: 16px; }

/* ===== REVIEW PAGE STYLES ===== */
.review-hero { text-align: center; padding: 24px 13px; background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 18px; margin-bottom: 23px; }
.review-hero__logo { width: 140px; height: 80px; object-fit: contain; border-radius: 10px; margin-bottom: 19px; }
.review-hero__rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 9px 0; }
.review-hero__score { font-size: 30px; font-weight: 800; color: #c89314; }
.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 27px 0; }
@media (max-width: 768px) { .review-pros-cons { grid-template-columns: 1fr; } }
.review-pros, .review-cons { padding: 18px; border-radius: 15px; }
.review-pros { background: #eaf8ea; border: 1px solid #c6e7ca; }
.review-cons { background: #fef2f2; border: 1px solid #f5d2c8; }
.review-pros h3 { color: #1c5822; margin-bottom: 14px; }
.review-cons h3 { color: #8f1622; margin-bottom: 11px; }
.review-pros li, .review-cons li { padding: 7px 0; font-size: 15px; }
.review-cta { text-align: center; margin: 22px 0; }
.review-cta a {
    display: inline-block;
    padding: 19px 36px;
    background: linear-gradient(135deg, #c99a17, #f5c222);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(202,150,25,0.3);
}
.review-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin: 23px 0; }
.review-info-card { text-align: center; background: #f8f9fa; padding: 16px; border-radius: 7px; }
.review-info-card__label { font-size: 13px; color: #788292; text-transform: uppercase; }
.review-info-card__value { font-size: 18px; font-weight: 700; color: #0c1e18; }
.nmlk-hero__buttons { display: flex \!important; flex-direction: column \!important; gap: 13px \!important; align-items: center \!important; margin: 17px 0 \!important; } .nmlk-hero__buttons a { display: inline-block \!important; }

/* FAQ compact fix */
.nmlk-faq-item { margin-bottom: 6px !important; }
.nmlk-faq-q { padding: 17px 20px !important; min-height: auto !important; font-size: 16px !important; }
.nmlk-faq-a { padding: 0 22px !important; }
.nmlk-faq-a__inner { padding: 0 0 13px !important; }
.nmlk-faq { gap: 11px !important; }


/* ===== COMPREHENSIVE FIX v2 ===== */

/* 1. Content max-width 1500px */
.nmlk-wrapper {
    max-width: 1500px !important;
}
.nmlk-topbar__wrap, .nmlk-topbar__inner {
    max-width: 1500px !important;
}
.nmlk-footer__inner {
    max-width: 1500px !important;
}

/* 2. Desktop company table: logo width 170-230px */
@media (min-width: 769px) {
    .nmlk-card__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        height: auto !important;
        object-fit: contain;
    }
    .nmlk-grid {
        max-width: 1500px !important;
        margin: 0 auto;
    }
    .nmlk-card {
        grid-template-columns: 40px 350px 1fr auto auto auto !important;
    }
    .nmlk-rankings {
        max-width: 1500px !important;
    }
}

/* 3. Button text centering */
.nmlk-btn-get, .nmlk-btn-read {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.exq-btn-cta, .exq-btn-review {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.exq-cta-cell {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

/* 4. Images in content - desktop 30% with float, mobile 100% */
@media (min-width: 769px) {
    .nmlk-img-block {
        width: 30% !important;
        max-width: 400px !important;
        margin: 0 25px 14px 0 !important;
        float: left !important;
        clear: left !important;
    }
    .nmlk-img-block:nth-of-type(even) {
        float: right !important;
        margin: 0 0 19px 24px !important;
        clear: right !important;
    }
    .nmlk-img-block img {
        width: 100% !important;
        border-radius: 9px;
    }
    .nmlk-block {
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .nmlk-img-block {
        width: 100% !important;
        float: none !important;
        margin: 15px 0 !important;
        text-align: center;
    }
    .nmlk-img-block img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 5. Review page company logo with white bg */
.review-hero {
    text-align: center;
    position: relative;
}
.review-hero__logo {
    background: rgba(255,255,255,0.85) !important;
    padding: 15px 25px !important;
    border-radius: 14px !important;
    max-width: 260px !important;
    height: auto !important;
}

/* 6. FAQ - compact height, no inflated questions */
.nmlk-faq-item, .htc-faq-item, .jbc-faq-item {
    margin: 0 !important;
}
.nmlk-faq-q, .htc-faq-question, .jbc-faq-trigger {
    padding: 14px 17px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
}
[class*="-faq"], #faq, [id="faq"] {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
}
/* Remove margin that inflates FAQ question height */
.nmlk-faq-q, .jbc-faq-trigger {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 7. Hero section - compact */
.nmlk-hero {
    padding: 33px 21px 18px !important;
    min-height: auto !important;
}
.nmlk-hero__title {
    margin-bottom: 11px !important;
}
.nmlk-hero__subtitle {
    margin-bottom: 12px !important;
}
.nmlk-trust-row {
    margin-top: 9px !important;
    margin-bottom: 0 !important;
}
.nmlk-phone-cta {
    margin: 14px auto !important;
    padding: 9px 23px !important;
}

/* 8. Breadcrumbs within content bounds */
.breadcrumbs, [class*="breadcrumb"] {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 6px 23px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* 9. Banner centering */
.htc-banner-block, .kit-banner-block, [class*="banner-block"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.htc-banner-block img, .kit-banner-block img, [class*="banner"] img {
    margin: 0 auto !important;
    display: block !important;
    max-width: 700px !important;
}

/* 10. Mobile card centering and spacing */
@media (max-width: 768px) {
    .nmlk-card {
        text-align: center !important;
    }
    .nmlk-card__company {
        flex-direction: column !important;
        align-items: center !important;
    }
    .nmlk-card__logo {
        width: 50% !important;
        max-width: 200px !important;
    }
    .nmlk-card__actions {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .nmlk-btn-get, .nmlk-btn-read {
        width: 80% !important;
        max-width: 280px !important;
    }
    .nmlk-wrapper {
        padding: 11px 9px !important;
    }
    /* Mobile: minimal side padding */
    .nmlk-block {
        padding: 14px 15px !important;
        margin: 12px 0 !important;
    }
}

/* 11. Font contrast fixes */
.nmlk-hero {
    background: linear-gradient(135deg, #201b29 0%, #12243e 100%) !important;
    border-radius: 9px !important;
}
.nmlk-hero, .nmlk-hero * {
    color: #fff;
}
.nmlk-hero__title {
    color: #fff !important;
}
.nmlk-hero__subtitle {
    color: rgba(255,255,255,0.9) !important;
}
.nmlk-block, .nmlk-block__content {
    color: #1f2334;
}
.nmlk-block__title {
    color: #0a1819 !important;
}
.nmlk-footer, .nmlk-footer * {
    color: #cfcccc;
}
.nmlk-footer__heading {
    color: #fff !important;
}
.nmlk-footer a {
    color: #a6b2a1 !important;
}
.nmlk-footer a:hover {
    color: #fff !important;
}

/* 12. Alert strip compact */
.nmlk-alert-strip {
    padding: 10px 15px !important;
    font-size: 16px !important;
}

/* 13. Checklist compact */
.nmlk-checklist {
    margin: 17px auto !important;
    max-width: 700px;
}

/* 14. Author box tighter */
.nmlk-section-head {
    margin-bottom: 19px !important;
}

/* 15. Review page - ensure sticky footer and exit popup show */
/* Already in main template, but ensure styles work on all pages */
#stickyFoot {
    z-index: 9998 !important;
}
#exitOverlay {
    z-index: 99999 !important;
}

/* 16. Table of contents styling fix */
.toc-box {
    max-width: 900px !important;
    margin: 13px auto 26px !important;
}

/* 17. Stars in review */
.nmlk-star.on {
    color: #f5d30a;
    font-size: 20px;
}
.nmlk-star {
    font-size: 20px;
}

/* 18. Review hero rating */
.review-hero__score {
    font-size: 32px;
    font-weight: 700;
    color: #f5d40a;
}
.review-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 15px 0;
}

/* ===== END COMPREHENSIVE FIX v2 ===== */


/* ===== FIX v3 - Compact hero & layout ===== */

/* Hide alert strip to save space */
.nmlk-alert-strip {
    padding: 6px 13px !important;
    font-size: 14px !important;
}

/* Hero: much more compact */
.nmlk-hero {
    padding: 19px 23px 17px !important;
    min-height: auto !important;
}
.nmlk-hero__tag {
    margin-bottom: 5px !important;
    padding: 5px 12px !important;
    font-size: 8px !important;
}
.nmlk-hero__title {
    font-size: clamp(20px, 2.5vw, 28px) !important;
    margin-bottom: 7px !important;
    line-height: 1.2 !important;
}
.nmlk-hero__subtitle {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}
/* Hero buttons HORIZONTAL on desktop */
@media (min-width: 769px) {
    body.nmlk-page .nmlk-hero .nmlk-hero__buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 7px 0 !important;
    }
}
.nmlk-trust-row {
    margin: 10px 0 0 !important;
    gap: 15px !important;
    font-size: 15px !important;
}
.nmlk-trust-item {
    font-size: 12px !important;
}

/* Phone CTA: more compact */
.nmlk-phone-cta {
    margin: 6px auto !important;
    padding: 11px 16px !important;
    font-size: 10px !important;
}
.nmlk-phone-cta__number {
    font-size: 15px !important;
}

/* Rankings section head: compact */
.nmlk-rankings .nmlk-section-head {
    margin-bottom: 9px !important;
    padding: 0 !important;
}
.nmlk-section-head__title {
    font-size: clamp(20px, 2.5vw, 26px) !important;
    margin: 3px 0 !important;
}
.nmlk-section-head__desc {
    font-size: 13px !important;
    margin: 0 !important;
}
.nmlk-section-head__label {
    padding: 4px 7px !important;
    font-size: 12px !important;
    margin-bottom: 3px !important;
}

/* Desktop: topbar compact */
@media (min-width: 769px) {
    .nmlk-topbar__inner, .nmlk-topbar__wrap {
        padding: 11px 22px !important;
    }
}

/* Mobile hero: even more compact */
@media (max-width: 768px) {
    .nmlk-hero {
        padding: 16px 9px 14px !important;
    }
    .nmlk-hero__title {
        font-size: 20px !important;
    }
    .nmlk-hero__subtitle {
        font-size: 13px !important;
        margin-bottom: 9px !important;
    }
    .nmlk-phone-cta {
        display: none !important;
    }
    .nmlk-section-head {
        margin-bottom: 6px !important;
    }
}

/* ===== END FIX v3 ===== */


/* ===== FIX v4 - Hero buttons & mobile compact ===== */
@media (max-width: 768px) {
    /* Trust indicators: 2-column grid, compact */
    .nmlk-trust-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4px 5px !important;
        margin: 7px 0 0 !important;
        font-size: 10px !important;
    }
    .nmlk-trust-item {
        font-size: 11px !important;
        gap: 5px !important;
    }
    /* Alert strip compact on mobile */
    .nmlk-alert-strip {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
    /* Hero buttons compact */
    body.nmlk-page .nmlk-hero .nmlk-hero__buttons a {
        padding: 7px 22px !important;
        font-size: 12px !important;
    }
}

/* ===== END FIX v4 ===== */


/* ===== FIX v5 - FAQ open/active states ===== */
.nmlk-faq-item.open .nmlk-faq-a,
.nmlk-faq-item.active .nmlk-faq-a,
.nmlk-faq-item.is-open .nmlk-faq-a {
    max-height: 600px !important;
    padding: 0 21px 14px !important;
    overflow: visible !important;
}
.nmlk-faq-item.open .nmlk-faq-q::after,
.nmlk-faq-item.active .nmlk-faq-q::after,
.nmlk-faq-item.is-open .nmlk-faq-q::after {
    transform: rotate(180deg) !important;
}

/* ===== END FIX v5 ===== */


/* ===== FIX v6 - FAQ compact height ===== */
.nmlk-faq-item, .jbc-faq-item {
    margin: 5px 0 !important;
    padding: 0 !important;
    border-radius: 10px !important;
    min-height: auto !important;
    height: auto !important;
}
.nmlk-faq-q, .jbc-faq-trigger {
    padding: 9px 20px !important;
    margin: 0 !important;
    min-height: auto !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}
.nmlk-faq-a {
    padding: 0 21px !important;
}
.nmlk-faq-a__inner {
    padding: 0 0 13px !important;
    font-size: 12px !important;
}
#faq-section {
    max-width: 900px !important;
    margin: 24px auto !important;
}
#faq-section .nmlk-section-head {
    margin-bottom: 9px !important;
}

/* FAQ section background - no rounded image overlap */
.nmlk-faq {
    padding: 26px 0 !important;
}

/* ===== END FIX v6 ===== */


/* ===== FIX v7 - Override design-overhaul.css FAQ inflate ===== */
/* design-overhaul.css sets [class*="-faq"] { margin: 3rem auto !important } */
/* This matches EVERY element with -faq in class name. Override specifically. */

.nmlk-faq-item.jbc-faq-item,
.nmlk-faq-item[class*="-faq-item"] {
    margin: 3px 0 !important;
    padding: 0 !important;
    max-width: none !important;
}
.nmlk-faq-q.jbc-faq-trigger,
.nmlk-faq-q[class*="-faq"] {
    margin: 0 !important;
    padding: 15px 19px !important;
    max-width: none !important;
}
.nmlk-faq-a[class*="-faq"] {
    margin: 0 !important;
    padding: 0 16px !important;
    max-width: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
}
.nmlk-faq-a__inner[class*="-faq"] {
    margin: 0 !important;
    padding: 0 0 15px !important;
    max-width: none !important;
}

/* When FAQ is open */
.nmlk-faq-item.is-open .nmlk-faq-a[class*="-faq"],
.nmlk-faq-item.open .nmlk-faq-a[class*="-faq"],
.nmlk-faq-item.active .nmlk-faq-a[class*="-faq"] {
    max-height: 600px !important;
    padding: 3px 20px 15px !important;
}

/* The FAQ section container itself should keep 900px max-width */
section.nmlk-faq[class*="-faq"],
#faq-section {
    max-width: 900px !important;
    margin: 22px auto !important;
    padding: 0 19px !important;
}

/* ===== END FIX v7 ===== */


/* ===== FIX v8 - Comprehensive overhaul ===== */

/* Review hero - white text on dark gradient bg */
.review-hero {
    background: linear-gradient(135deg, #221d27 0%, #132a3c 50%, #102a62 100%) !important;
    padding: 40px 17px 32px !important;
    border-radius: 15px !important;
    margin-bottom: 27px !important;
}
.review-hero h1 {
    color: #fff !important;
}
.review-hero p {
    color: rgba(255,255,255,0.85) !important;
}
.review-hero__logo {
    width: 280px !important;
    max-width: 320px !important;
    height: auto !important;
    background: rgba(255,255,255,0.92) !important;
    padding: 23px 36px !important;
    border-radius: 13px !important;
    margin: 0 auto 22px !important;
    display: block !important;
}
.review-hero__rating {
    color: #fff !important;
}
.review-hero__score {
    color: #f2bb2b !important;
    font-size: 32px !important;
    font-weight: 800 !important;
}

/* Review CTA button - bigger and more prominent */
.review-cta a {
    display: inline-block !important;
    padding: 19px 41px !important;
    background: linear-gradient(135deg, #c99617, #f1c223) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(205,150,30,0.35) !important;
    transition: all 0.3s ease !important;
}
.review-cta a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(196,160,22,0.45) !important;
}

/* Desktop company logos 170-230px with !important */
@media (min-width: 769px) {
    .nmlk-card__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* Content images - desktop 30% float, mobile 100% */
@media (min-width: 769px) {
    .nmlk-img-block {
        width: 30% !important;
        max-width: 400px !important;
        float: left !important;
        clear: both !important;
        margin: 0 27px 17px 0 !important;
    }
    .nmlk-img-block:nth-of-type(2n) {
        float: right !important;
        margin: 0 0 14px 27px !important;
    }
    .nmlk-img-block img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    .nmlk-block__content img:not([class]) {
        max-width: 30% !important;
        float: right !important;
        margin: 0 0 9px 22px !important;
        border-radius: 9px !important;
    }
    .nmlk-block {
        overflow: hidden !important;
    }
}
@media (max-width: 768px) {
    .nmlk-img-block {
        width: 100% !important;
        float: none !important;
        margin: 17px 0 !important;
        text-align: center !important;
    }
    .nmlk-img-block img {
        width: 100% !important;
    }
    .nmlk-block__content img:not([class]) {
        max-width: 100% !important;
        float: none !important;
        margin: 10px auto !important;
        display: block !important;
    }
}

/* FAQ accordion - compact, no inflated height */
.nmlk-faq-item, .nmlk-faq-item.jbc-faq-item {
    margin-bottom: 11px !important;
    border: 1px solid #e9ecee !important;
    border-radius: 7px !important;
    overflow: hidden !important;
    background: #fff !important;
    padding: 0 !important;
    max-width: none !important;
}
.nmlk-faq-q, .nmlk-faq-q.jbc-faq-trigger {
    padding: 16px 19px !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    background: #fafbfc !important;
    color: #1d1624 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 0 !important;
    height: auto !important;
    max-width: none !important;
}
/* Single indicator - arrow only */
.nmlk-faq-q::after {
    content: '\25BC' !important;
    font-size: 12px !important;
    color: #9793a0 !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
    margin-left: 10px !important;
    float: none !important;
}
.nmlk-faq-item.is-open .nmlk-faq-q::after {
    transform: rotate(180deg) !important;
}
.nmlk-faq-a {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    padding: 0 23px !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.nmlk-faq-item.is-open .nmlk-faq-a,
.nmlk-faq-item.active .nmlk-faq-a,
.nmlk-faq-item.open .nmlk-faq-a {
    max-height: 500px !important;
    padding: 9px 22px 15px !important;
}
.nmlk-faq-a__inner {
    font-size: 14px !important;
    color: #43535e !important;
    line-height: 1.7 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

/* FAQ section container */
section.nmlk-faq, #faq-section {
    max-width: 900px !important;
    margin: 22px auto !important;
    padding: 0 19px !important;
}

/* Button text centering */
.nmlk-btn-get, .nmlk-btn-read {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.nmlk-card__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Mobile company cards - centered, logo 40-50% width */
@media (max-width: 768px) {
    .nmlk-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 22px 15px !important;
    }
    .nmlk-card__company {
        flex-direction: column !important;
        align-items: center !important;
    }
    .nmlk-card__logo {
        width: 45% !important;
        max-width: 200px !important;
        height: auto !important;
        min-width: 0 !important;
    }
    .nmlk-card__pros {
        justify-content: center !important;
    }
    .nmlk-card__actions {
        width: 100% !important;
        align-items: center !important;
    }
    .nmlk-btn-get, .nmlk-btn-read {
        width: 80% !important;
        max-width: 280px !important;
    }
    .nmlk-wrapper {
        padding-left: 6px !important;
        padding-right: 11px !important;
    }
    .nmlk-block {
        padding: 16px 9px !important;
    }
    .review-hero__logo {
        width: 200px !important;
        max-width: 70% !important;
    }
}

/* Breadcrumbs must not overflow content */
.breadcrumbs, [class*="breadcrumb"], nav[aria-label*="breadcrumb"] {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 11px 21px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Banner centering */
.htc-banner-block, .kit-banner-block, [class*="banner-block"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Hero compact */
.nmlk-hero {
    padding: 22px 23px 16px !important;
    min-height: auto !important;
}
.nmlk-alert-strip {
    padding: 5px 18px !important;
    font-size: 12px !important;
}

/* Stars in review hero */
.review-hero .nmlk-star.on {
    color: #f5da0a !important;
    font-size: 22px !important;
}
.review-hero .nmlk-star {
    font-size: 22px !important;
    color: rgba(255,255,255,0.3) !important;
}

/* ===== END FIX v8 ===== */

/* ===== FIX v9 - Clear float before FAQ, image near FAQ ===== */
section.nmlk-faq, #faq-section {
    clear: both !important;
}
/* The standalone image before FAQ should not float */
.nmlk-img-block + section.nmlk-faq,
.nmlk-img-block + #faq-section {
    clear: both !important;
}
/* Image block with inline style right before FAQ - override float */
div.nmlk-img-block[style*='text-align:center'] {
    float: none !important;
    width: auto !important;
    max-width: 700px !important;
    margin: 27px auto !important;
    clear: both !important;
}
/* Ensure FAQ microdata schema is present - already in head */
/* ===== END FIX v9 ===== */

/* ===== COMPREHENSIVE FIX v1 ===== */
@media (min-width: 769px) {
    .nmlk-card__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .nmlk-wrapper {
        max-width: 1500px !important;
    }
    .nmlk-img-block {
        width: 30% !important;
        max-width: 30% !important;
        margin: 0 1.5rem 1rem 0 !important;
        float: left !important;
        border-radius: 13px !important;
    }
    .nmlk-img-block:nth-of-type(even) {
        float: right !important;
        margin: 0 0 1rem 1.5rem !important;
    }
    .nmlk-img-block img {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 10px !important;
    }
    .nmlk-block {
        overflow: hidden !important;
    }
    .nmlk-rankings {
        max-width: 1500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 768px) {
    .nmlk-card__logo {
        width: 45% !important;
        max-width: 50% !important;
        min-width: 40% !important;
        height: auto !important;
    }
    .nmlk-card {
        text-align: center !important;
    }
    .nmlk-card__company {
        align-items: center !important;
        justify-content: center !important;
    }
    .nmlk-card__actions {
        align-items: center !important;
        justify-content: center !important;
    }
    .nmlk-img-block {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 1rem 0 !important;
    }
    .nmlk-wrapper {
        padding-left: 9px !important;
        padding-right: 14px !important;
    }
}
.nmlk-btn-get, .nmlk-btn-read {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.nmlk-card__actions {
    text-align: center !important;
}
.nmlk-faq-item {
    margin-bottom: 7px !important;
}
.nmlk-faq-q {
    padding: 17px 19px !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
}
.nmlk-faq-a {
    padding: 0 21px !important;
    margin: 0 !important;
}
.nmlk-faq-a__inner {
    padding-bottom: 12px !important;
}
.breadcrumbs, nav[aria-label="Breadcrumb"], .nmlk-breadcrumbs {
    max-width: 1500px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding: 0 34px !important;
}
.htc-banner-block, [class*="banner-block"], .kit-banner-block {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.kit-banner-block img {
    max-width: 700px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
}
.nmlk-trust-row {
    display: none !important;
}
.nmlk-hero {
    padding: 2rem 1.5rem 1rem !important;
    margin-bottom: 11px !important;
}
.toc-box {
    max-width: 900px !important;
    margin: 1rem auto 2rem !important;
    clear: both !important;
}
