@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --nf-primary: #5b35f2;
    --nf-primary-dark: #4524d5;
    --nf-primary-soft: #f0edff;

    --nf-bg: #f8f9fd;
    --nf-surface: #ffffff;
    --nf-surface-soft: #f5f7fc;

    --nf-text: #111827;
    --nf-text-muted: #667085;
    --nf-border: #e5e9f2;

    --nf-success: #16a56b;
    --nf-shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.05);
    --nf-shadow-md: 0 18px 50px rgba(35, 26, 92, 0.10);
    --nf-radius-sm: 12px;
    --nf-radius-md: 18px;
    --nf-radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--nf-bg);
    color: var(--nf-text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.nf-home {
    overflow: hidden;
}

.nf-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--nf-text);
    font-family: "Manrope", sans-serif;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
}

h2 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

p {
    color: var(--nf-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.nf-btn-primary,
.nf-btn-secondary,
.nf-search-btn,
.nf-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nf-btn-primary,
.nf-search-btn,
.nf-result-btn {
    background: linear-gradient(135deg, #6845ff 0%, #4b28e8 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(91, 53, 242, 0.20);
}

.nf-btn-primary:hover,
.nf-search-btn:hover,
.nf-result-btn:hover {
    background: linear-gradient(135deg, #5b35f2 0%, #3e20ca 100%);
    box-shadow: 0 12px 25px rgba(91, 53, 242, 0.28);
    transform: translateY(-2px);
}

.nf-btn-secondary {
    background: #ffffff;
    border-color: #dce2ee;
    color: var(--nf-text);
}

.nf-btn-secondary:hover {
    border-color: var(--nf-primary);
    color: var(--nf-primary);
    transform: translateY(-2px);
}

/* Shared section structure */
.nf-features,
.nf-results-preview,
.nf-pricing,
.nf-faq {
    padding: 100px 0;
}

.nf-section-heading {
    max-width: 690px;
    margin: 0 auto 48px;
    text-align: center;
}

.nf-section-heading span {
    display: inline-flex;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--nf-primary-soft);
    color: var(--nf-primary);
    font-size: 12px;
    font-weight: 700;
}

.nf-section-heading h2 {
    margin-bottom: 14px;
}

.nf-section-heading p {
    max-width: 620px;
    margin: 0 auto;
}

/* Better card base */
.nf-feature-card,
.nf-result-card,
.nf-plan,
.nf-faq-item {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-md);
    box-shadow: var(--nf-shadow-sm);
}

/* Mobile */
@media (max-width: 768px) {
    .nf-container {
        width: min(100% - 28px, 1180px);
    }

    .nf-features,
    .nf-results-preview,
    .nf-pricing,
    .nf-faq {
        padding: 70px 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }
}

/* =========================================================
   NAVBAR
========================================================= */

.nf-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--nf-border);
}

.nf-navbar .nf-container,
.nf-nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nf-logo,
.nf-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nf-text);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.nf-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.nf-nav-links a {
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

.nf-nav-links a:hover {
    color: var(--nf-primary);
}

.nf-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nf-nav-badge,
.nf-new-niches {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f0edff;
    color: var(--nf-primary);
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   HERO
========================================================= */

.nf-hero {
    position: relative;
    padding: 112px 0 100px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(109, 74, 255, 0.10), transparent 36%),
        linear-gradient(180deg, #fbfcff 0%, #f4f7ff 100%);
}

.nf-hero .nf-container {
    max-width: 900px;
}

/* =========================================================
   SEARCH SECTION
========================================================= */

.nf-search-section,
.nf-search {
    padding: 76px 0;
    background: #ffffff;
}

.nf-search-section .nf-container,
.nf-search .nf-container {
    max-width: 980px;
}

.nf-search-box {
    padding: 42px;
    border: 1px solid var(--nf-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.07);
}

.nf-search-box h2,
.nf-search h2 {
    margin: 0 0 10px;
    color: var(--nf-text);
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}

.nf-search-box > p,
.nf-search > .nf-container > p {
    margin: 0 0 26px;
    color: var(--nf-muted);
    text-align: center;
}

.nf-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nf-search-form input,
.nf-search input[type="text"],
.nf-search input[type="search"] {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #d7ddea;
    border-radius: 12px;
    outline: none;
    color: var(--nf-text);
    font-family: inherit;
    font-size: 14px;
    background: #ffffff;
    transition: 0.2s ease;
}

.nf-search-form input:focus,
.nf-search input[type="text"]:focus,
.nf-search input[type="search"]:focus {
    border-color: var(--nf-primary);
    box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.10);
}

.nf-search-form button,
.nf-search button {
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: var(--nf-primary);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
}

.nf-search-form button:hover,
.nf-search button:hover {
    background: var(--nf-primary-dark);
    transform: translateY(-1px);
}

.nf-popular-searches,
.nf-popular {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
    color: var(--nf-muted);
    font-size: 13px;
}

.nf-popular-searches a,
.nf-popular a {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f3f5fa;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.nf-popular-searches a:hover,
.nf-popular a:hover {
    background: #eeeaff;
    color: var(--nf-primary);
}

/* =========================================================
   LIVE STATS
========================================================= */

.nf-live-stats,
.nf-stats {
    padding: 24px 0 76px;
    background: #ffffff;
}

.nf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.nf-stat-card {
    padding: 24px;
    border: 1px solid var(--nf-border);
    border-radius: 18px;
    background: #fbfcff;
    text-align: center;
}

.nf-stat-card h3,
.nf-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--nf-text);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.nf-stat-card p,
.nf-stat-card span {
    margin: 0;
    color: var(--nf-muted);
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
    .nf-search-section,
    .nf-search {
        padding: 52px 0;
    }

    .nf-search-box {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .nf-search-box h2,
    .nf-search h2 {
        font-size: 25px;
    }

    .nf-search-form {
        flex-direction: column;
    }

    .nf-search-form button,
    .nf-search button {
        width: 100%;
    }

    .nf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nf-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SEARCH CARD — CURRENT HTML SUPPORT
========================================================= */

.nf-search {
    padding: 78px 0 34px;
    background: #ffffff;
}

.nf-search > .nf-container {
    max-width: 980px;
    padding: 42px;
    border: 1px solid #e7eaf2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(16, 24, 40, 0.08);
}

.nf-search > .nf-container > h2 {
    text-align: center;
}

.nf-search > .nf-container > p {
    text-align: center;
}

.nf-search > .nf-container > form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

/* =========================================================
   RESULTS PREVIEW — CURRENT HTML SUPPORT
========================================================= */

.nf-results-preview {
    padding: 88px 0;
    background: #f7f9fc;
}

.nf-results-preview .nf-container {
    max-width: 1180px;
}

.nf-results-preview > .nf-container > h2 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 34px;
    text-align: center;
}

.nf-results-preview > .nf-container > p {
    margin: 0 0 34px;
    color: #667085;
    text-align: center;
}

.nf-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nf-result-card {
    position: relative;
    padding: 28px;
    border: 1px solid #e3e8f2;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
    transition: 0.25s ease;
}

.nf-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.10);
}

.nf-result-card h3 {
    margin: 0 0 24px;
    padding-right: 72px;
    color: #101828;
    font-size: 21px;
    line-height: 1.3;
}

.nf-result-card h3::after {
    content: "Score";
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #5b35f2;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.nf-result-card p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 13px 0;
    border-top: 1px solid #edf0f5;
    color: #667085;
    font-size: 14px;
}

.nf-result-card p:first-of-type {
    border-top: 0;
}

.nf-result-card p strong {
    color: #101828;
}

.nf-result-card a {
    display: block;
    margin-top: 22px;
    padding: 13px 16px;
    border-radius: 10px;
    background: #5b35f2;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.nf-result-card a:hover {
    background: #4424cf;
}

.nf-upgrade-box {
    margin-top: 32px;
    padding: 38px 25px;
    border-radius: 22px;
    background: linear-gradient(135deg, #4f2ee8, #7b3ff2);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 20px 40px rgba(91, 53, 242, 0.24);
}

/* =========================================================
   RESULTS MOBILE
========================================================= */

@media (max-width: 900px) {
    .nf-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nf-search > .nf-container {
        margin: 0 16px;
        padding: 28px 18px;
        border-radius: 18px;
    }

    .nf-search > .nf-container > form {
        flex-direction: column;
    }

    .nf-search > .nf-container > form button {
        width: 100%;
    }

    .nf-results-preview {
        padding: 60px 0;
    }

    .nf-results-preview > .nf-container > h2 {
        font-size: 27px;
    }

    .nf-upgrade-box {
        padding: 28px 18px;
        font-size: 22px;
    }
}


/* =========================================================
   RESULTS PREVIEW — FINAL CARD DESIGN
========================================================= */

.nf-results-preview {
    padding: 100px 0;
    background: #f7f9fc;
}

.nf-results-preview .nf-section-heading {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.nf-results-preview .nf-section-heading > span {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef2ff;
    color: #5b35f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nf-results-preview .nf-section-heading h2 {
    margin: 14px 0 12px;
    color: #101828;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.nf-results-preview .nf-section-heading p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

.nf-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.nf-preview-card {
    padding: 28px;
    border: 1px solid #e5eaf3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nf-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(16, 24, 40, 0.11);
}

.nf-preview-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.nf-preview-top h3 {
    margin: 0;
    color: #101828;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.nf-score-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    background: #5b35f2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.nf-preview-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.nf-preview-meta > div {
    min-height: 84px;
    padding: 14px 10px;
    border-radius: 13px;
    background: #f7f9fc;
    text-align: center;
}

.nf-preview-meta label {
    display: block;
    margin-bottom: 9px;
    color: #7b879c;
    font-size: 11px;
    line-height: 1.2;
}

.nf-preview-meta strong {
    display: block;
    color: #101828;
    font-size: 16px;
    font-weight: 800;
}

.nf-view-report {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 11px;
    background: #5b35f2;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nf-view-report:hover {
    background: #4424cf;
    transform: translateY(-1px);
}

.nf-results-lock {
    margin-top: 30px;
    padding: 42px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #4d2ee8 0%, #7a3ff2 100%);
    box-shadow: 0 24px 50px rgba(91, 53, 242, 0.24);
    color: #ffffff;
    text-align: center;
}

.nf-results-lock h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.nf-results-lock p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.nf-results-lock .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 11px;
    background: #ffffff;
    color: #4d2ee8 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none;
}

.nf-results-lock .nf-btn-primary:hover {
    background: #f4f2ff;
}

@media (max-width: 900px) {
    .nf-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nf-results-preview {
        padding: 68px 0;
    }

    .nf-results-preview .nf-section-heading h2 {
        font-size: 30px;
    }

    .nf-preview-card {
        padding: 22px;
    }

    .nf-preview-meta {
        gap: 8px;
    }

    .nf-preview-meta > div {
        padding: 13px 6px;
    }

    .nf-preview-meta strong {
        font-size: 14px;
    }

    .nf-results-lock {
        padding: 30px 18px;
    }

    .nf-results-lock h3 {
        font-size: 23px;
    }
}

/* =========================================================
   FEATURES SECTION — PREMIUM SAAS DESIGN
========================================================= */

.nf-features {
    padding: 100px 0;
    background: #ffffff;
}

.nf-features .nf-section-heading {
    max-width: 700px;
    margin: 0 auto 46px;
    text-align: center;
}

.nf-features .nf-section-heading > span {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eef2ff;
    color: #5b35f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nf-features .nf-section-heading h2 {
    margin: 14px 0 12px;
    color: #101828;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.nf-features .nf-section-heading p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

.nf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.nf-feature-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e6eaf2;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nf-feature-card::after {
    position: absolute;
    top: -75px;
    right: -75px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(91, 53, 242, 0.06);
    content: "";
}

.nf-feature-card:hover {
    transform: translateY(-6px);
    border-color: #d6ccff;
    box-shadow: 0 22px 46px rgba(16, 24, 40, 0.10);
}

.nf-feature-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 15px;
    background: #f0edff;
    font-size: 25px;
}

.nf-feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #101828;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.nf-feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .nf-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nf-features {
        padding: 68px 0;
    }

    .nf-features .nf-section-heading h2 {
        font-size: 30px;
    }

    .nf-features-grid {
        grid-template-columns: 1fr;
    }

    .nf-feature-card {
        min-height: auto;
        padding: 25px;
    }
}

/* =========================================================
   PRICING SECTION — PREMIUM SAAS DESIGN
========================================================= */

.nf-pricing {
    padding: 100px 0;
    background: #f7f9fc;
}

.nf-pricing .nf-section-heading,
.nf-pricing > .nf-container > h2 {
    text-align: center;
}

.nf-pricing > .nf-container > h2 {
    margin: 0 0 42px;
    color: #101828;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.nf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.nf-plan {
    position: relative;
    padding: 34px;
    border: 1px solid #e3e9f3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
}

.nf-plan.nf-popular {
    border: 2px solid #5b35f2;
    box-shadow: 0 22px 46px rgba(91, 53, 242, 0.15);
}

.nf-popular-badge {
    position: absolute;
    top: -14px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    background: #5b35f2;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.nf-plan h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.nf-plan h3 + p {
    margin: 0 0 24px;
    color: #667085;
    font-size: 14px;
}

.nf-plan h1,
.nf-plan .nf-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 28px;
    color: #101828;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.nf-plan h1 small,
.nf-plan .nf-plan-price small {
    color: #667085;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.nf-plan ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.nf-plan ul li {
    position: relative;
    padding: 11px 0 11px 25px;
    border-bottom: 1px solid #edf0f5;
    color: #475467;
    font-size: 14px;
    line-height: 1.4;
}

.nf-plan ul li::before {
    position: absolute;
    top: 10px;
    left: 0;
    color: #5b35f2;
    content: "✓";
    font-weight: 900;
}

.nf-plan .nf-btn-primary,
.nf-plan a[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid #d8e0ec;
    border-radius: 11px;
    background: #ffffff;
    color: #101828 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.nf-plan.nf-popular .nf-btn-primary,
.nf-plan.nf-popular a[class*="btn"] {
    border-color: #5b35f2;
    background: #5b35f2;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(91, 53, 242, 0.20);
}

.nf-plan.nf-popular .nf-btn-primary:hover,
.nf-plan.nf-popular a[class*="btn"]:hover {
    background: #4424cf;
    border-color: #4424cf;
}

@media (max-width: 700px) {
    .nf-pricing {
        padding: 68px 0;
    }

    .nf-pricing > .nf-container > h2 {
        font-size: 30px;
    }

    .nf-pricing-grid {
        grid-template-columns: 1fr;
    }

    .nf-plan {
        padding: 28px 24px;
    }
}

/* =========================================================
   FAQ SECTION — PREMIUM SAAS DESIGN
========================================================= */

.nf-faq {
    padding: 100px 0;
    background: #ffffff;
}

.nf-faq .nf-container {
    max-width: 920px;
}

.nf-faq > .nf-container > h2 {
    margin: 0 0 14px;
    color: #101828;
    text-align: center;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.nf-faq > .nf-container > h2::after {
    display: block;
    max-width: 560px;
    margin: 14px auto 38px;
    color: #667085;
    content: "Everything you need to know before finding your next SEO opportunity.";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

.nf-faq-item {
    position: relative;
    margin-bottom: 14px;
    padding: 0 26px;
    border: 1px solid #e1e7f0;
    border-radius: 16px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nf-faq-item:hover {
    border-color: #cfc4ff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.nf-faq-item h3 {
    position: relative;
    margin: 0;
    padding: 24px 38px 24px 0;
    color: #101828;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
    cursor: pointer;
}

.nf-faq-item h3::after {
    position: absolute;
    top: 50%;
    right: 0;
    color: #5b35f2;
    content: "+";
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.nf-faq-item p {
    margin: -5px 0 0;
    padding: 0 38px 24px 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 600px) {
    .nf-faq {
        padding: 68px 0;
    }

    .nf-faq > .nf-container > h2 {
        font-size: 30px;
    }

    .nf-faq-item {
        padding: 0 20px;
    }

    .nf-faq-item h3 {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 15px;
    }

    .nf-faq-item p {
        padding-bottom: 20px;
    }
}

/* =========================================================
   FOOTER — PREMIUM SAAS DESIGN
========================================================= */

.nf-footer {
    padding: 58px 0 28px;
    background: #101828;
    color: #ffffff;
}

.nf-footer .nf-footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 35px;
}

.nf-footer-logo h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.nf-footer-logo h2::before {
    margin-right: 7px;
    content: "🚀";
    font-size: 18px;
}

.nf-footer-logo p {
    margin: 0;
    color: #98a2b3;
    font-size: 14px;
    line-height: 1.6;
}

.nf-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.nf-footer-links a {
    color: #cbd5e1 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nf-footer-links a:hover {
    color: #ffffff !important;
}

.nf-footer-copy {
    color: #98a2b3;
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
}

.nf-footer::after {
    display: block;
    max-width: 1180px;
    height: 1px;
    margin: 28px auto 0;
    background: rgba(255, 255, 255, 0.10);
    content: "";
}

@media (max-width: 800px) {
    .nf-footer {
        padding-top: 46px;
    }

    .nf-footer .nf-footer-content {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .nf-footer-links {
        justify-content: center;
    }

    .nf-footer-copy {
        text-align: center;
        white-space: normal;
    }
}

/* =========================================================
   FOOTER V2 — COMPLETE PREMIUM SAAS FOOTER
========================================================= */

.nf-footer {
    padding: 78px 0 0;
    background: #101828;
    color: #ffffff;
}

.nf-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 42px;
    padding-bottom: 58px;
}

.nf-footer-brand {
    max-width: 330px;
}

.nf-footer-brand-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffffff !important;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.nf-footer-brand-name span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #5b35f2;
    color: #ffffff;
    font-size: 14px;
}

.nf-footer-brand p {
    margin: 0 0 20px;
    color: #98a2b3;
    font-size: 14px;
    line-height: 1.75;
}

.nf-footer-email {
    display: inline-flex;
    color: #cfc4ff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nf-footer-email:hover {
    color: #ffffff !important;
}

.nf-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nf-footer-column h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.nf-footer-column a {
    color: #98a2b3 !important;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nf-footer-column a:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}

.nf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.nf-footer-bottom p {
    margin: 0;
    color: #667085;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .nf-footer-grid {
        grid-template-columns: 1.7fr repeat(3, 1fr);
    }

    .nf-footer-column:last-child {
        grid-column: 2 / 3;
    }
}

@media (max-width: 700px) {
    .nf-footer {
        padding-top: 55px;
    }

    .nf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 24px;
        padding-bottom: 40px;
    }

    .nf-footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .nf-footer-column:last-child {
        grid-column: auto;
    }

    .nf-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =========================================================
   FINAL HOMEPAGE POLISH — NICHEFINDER DESIGN SYSTEM
========================================================= */

:root {
    --nf-primary: #5b35f2;
    --nf-primary-dark: #4424cf;
    --nf-heading: #101828;
    --nf-text: #475467;
    --nf-muted: #667085;
    --nf-border: #e3e9f3;
    --nf-soft-bg: #f7f9fc;
    --nf-white: #ffffff;
}

/* Main page consistency */
.nf-home {
    overflow: hidden;
    background: var(--nf-white);
    color: var(--nf-text);
}

.nf-home *,
.nf-home *::before,
.nf-home *::after {
    box-sizing: border-box;
}

.nf-container {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

/* Typography cleanup */
.nf-home h1,
.nf-home h2,
.nf-home h3,
.nf-home h4 {
    color: var(--nf-heading);
    font-family: Arial, sans-serif;
}

.nf-home p,
.nf-home li,
.nf-home label,
.nf-home input {
    font-family: Arial, sans-serif;
}

.nf-home p {
    color: var(--nf-text);
}

.nf-section-heading {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.nf-section-heading > span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--nf-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.nf-section-heading p {
    margin: 0;
    color: var(--nf-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Every primary button should look the same */
.nf-btn-primary,
.nf-search-btn,
.nf-view-report,
.nf-results-lock .nf-btn-primary,
.nf-plan.nf-popular .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--nf-primary) !important;
    border-radius: 11px;
    background: var(--nf-primary) !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(91, 53, 242, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nf-btn-primary:hover,
.nf-search-btn:hover,
.nf-view-report:hover,
.nf-results-lock .nf-btn-primary:hover,
.nf-plan.nf-popular .nf-btn-primary:hover {
    border-color: var(--nf-primary-dark) !important;
    background: var(--nf-primary-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(91, 53, 242, 0.28);
    transform: translateY(-2px);
}

/* Secondary buttons */
.nf-btn-secondary,
.nf-hero .nf-btn-outline,
.nf-plan:not(.nf-popular) .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid #d7dfeb !important;
    border-radius: 11px;
    background: #ffffff !important;
    color: var(--nf-heading) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nf-btn-secondary:hover,
.nf-hero .nf-btn-outline:hover,
.nf-plan:not(.nf-popular) .nf-btn-primary:hover {
    border-color: var(--nf-primary) !important;
    color: var(--nf-primary) !important;
    transform: translateY(-2px);
}

/* Better section spacing */
.nf-search,
.nf-live-stats,
.nf-results-preview,
.nf-features,
.nf-pricing,
.nf-faq {
    position: relative;
}

/* Search and stats should feel connected */
.nf-search {
    padding-bottom: 38px;
}

.nf-live-stats {
    padding-top: 20px;
    padding-bottom: 92px;
}

/* Clean feature cards */
.nf-feature-card,
.nf-preview-card,
.nf-plan,
.nf-faq-item {
    border-color: var(--nf-border);
}

.nf-feature-card,
.nf-preview-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nf-feature-card:hover,
.nf-preview-card:hover {
    border-color: #d3c9ff;
    box-shadow: 0 18px 38px rgba(16, 24, 40, 0.09);
    transform: translateY(-5px);
}

/* Result card text cleanup */
.nf-preview-card h3 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.nf-preview-meta label {
    color: #7a8aa3;
    font-size: 11px;
    font-weight: 600;
}

.nf-preview-meta strong {
    color: var(--nf-heading);
    font-size: 16px;
}

/* Pricing cleaner */
.nf-plan {
    min-height: 100%;
}

.nf-plan h1 {
    font-size: 44px;
}

.nf-plan ul li {
    color: var(--nf-text);
}

/* FAQ should not feel oversized */
.nf-faq-item h3 {
    color: var(--nf-heading);
}

.nf-faq-item p {
    color: var(--nf-muted);
}

/* Footer final cleanup */
.nf-footer a {
    font-family: Arial, sans-serif;
}

/* Mobile polish */
@media (max-width: 700px) {
    .nf-container {
        width: min(100% - 32px, 1180px);
    }

    .nf-section-heading {
        margin-bottom: 30px;
    }

    .nf-section-heading h2 {
        font-size: 30px;
    }

    .nf-section-heading p {
        font-size: 15px;
    }

    .nf-home h1 {
        font-size: 38px;
    }

    .nf-btn-primary,
    .nf-btn-secondary,
    .nf-search-btn,
    .nf-view-report {
        width: 100%;
    }
}

/* =========================================================
   NAVBAR FINAL SPACING + STATUS BADGE FIX
========================================================= */

.nf-navbar,
.nf-nav,
.nf-header {
    min-height: 92px;
}

.nf-navbar .nf-container,
.nf-nav .nf-container,
.nf-header .nf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

/* Center menu spacing */
.nf-nav-links,
.nf-navbar-links,
.nf-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nf-nav-links a,
.nf-navbar-links a,
.nf-menu a {
    color: #475467 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.nf-nav-links a:hover,
.nf-navbar-links a:hover,
.nf-menu a:hover {
    color: #5b35f2 !important;
}

/* Right side: badge sits above login/register */
.nf-nav-actions,
.nf-navbar-actions,
.nf-header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* The row containing Login and Register */
.nf-nav-buttons,
.nf-auth-buttons,
.nf-navbar-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* "14 New Niches Today" */
.nf-live-badge,
.nf-new-niches,
.nf-nav-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid #ece8ff;
    border-radius: 999px;
    background: #faf9ff;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 850px) {
    .nf-navbar .nf-container,
    .nf-nav .nf-container,
    .nf-header .nf-container {
        gap: 18px;
    }

    .nf-nav-links,
    .nf-navbar-links,
    .nf-menu {
        gap: 14px;
    }
}

/* Navbar spacing fix */
.nf-navbar {
    padding: 18px 0;
    background: #ffffff;
    border-bottom: 1px solid #e7ebf3;
}

.nf-navbar .nf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nf-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nf-nav a {
    text-decoration: none;
    white-space: nowrap;
}

.nf-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nf-nav-right .nf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
}

/* Navbar menu color improvement */
.nf-nav a {
    color: #172033;
}

.nf-nav a:hover {
    color: #5b32f2;
}

.nf-nav a:focus {
    color: #5b32f2;
}

/* =========================================================
   SEARCH SECTION — SPACING + PREMIUM LAYOUT
========================================================= */

.nf-search-section {
    padding: 72px 0 64px;
    background: #ffffff;
}

.nf-search-section .nf-container {
    max-width: 1080px;
}

.nf-search-section h2 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.nf-search-section > .nf-container > p,
.nf-search-section .nf-search-subtitle {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Search input and button stay visually connected */
.nf-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 18px;
}

.nf-search-form input,
.nf-search-input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #d9e0ec;
    border-radius: 12px;
    outline: none;
    color: #172033;
    font-size: 15px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nf-search-form input:focus,
.nf-search-input:focus {
    border-color: #5b32f2;
    box-shadow: 0 0 0 4px rgba(91, 50, 242, 0.10);
}

.nf-search-form button,
.nf-search-btn {
    min-width: 116px;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: #5b32f2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(91, 50, 242, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nf-search-form button:hover,
.nf-search-btn:hover {
    background: #4823d8;
    transform: translateY(-2px);
}

/* Popular keyword chips */
.nf-popular-searches,
.nf-popular-niches {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 42px;
    color: #64748b;
    font-size: 13px;
}

.nf-popular-searches a,
.nf-popular-niches a,
.nf-popular-searches span:not(:first-child),
.nf-popular-niches span:not(:first-child) {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f6fb;
    color: #34415d;
    font-weight: 600;
    text-decoration: none;
}

/* Stats cards: remove large empty vertical space */
.nf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
}

.nf-stat-card {
    min-height: 128px;
    padding: 26px 20px;
    border: 1px solid #e2e8f2;
    border-radius: 18px;
    background: #fbfcff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(20, 35, 65, 0.04);
}

.nf-stat-card strong,
.nf-stat-card h3,
.nf-stat-number {
    display: block;
    margin: 0 0 8px;
    color: #172033;
    font-size: 30px;
    font-weight: 750;
    letter-spacing: -0.8px;
}

.nf-stat-card span,
.nf-stat-card p,
.nf-stat-label {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 760px) {
    .nf-search-section {
        padding: 52px 0;
    }

    .nf-search-section h2 {
        font-size: 29px;
    }

    .nf-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .nf-search-form button,
    .nf-search-btn {
        width: 100%;
    }

    .nf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nf-stat-card {
        min-height: 112px;
        padding: 20px 12px;
    }

    .nf-stat-card strong,
    .nf-stat-card h3,
    .nf-stat-number {
        font-size: 25px;
    }
}

/* Consistent section heading style */

.nf-search-section h2,
.nf-section-heading h2,
.nf-features h2,
.nf-pricing h2,
.nf-faq h2 {
    color: #172033;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.9px;
    line-height: 1.18;
}

/* Search section heading should not look extra-bold */
.nf-search-section h2 {
    font-weight: 600 !important;
    color: #172033 !important;
}


/* Search heading — match hero heading weight */
.nf-search-section h2 {
    color: #172033 !important;
    font-weight: 500 !important;
    letter-spacing: -1px !important;
    line-height: 1.18 !important;
}

/* Popular label */
.nf-popular-searches,
.nf-popular-niches {
    color: #172033 !important;
}

/* Popular niche chips */
.nf-popular-searches a,
.nf-popular-niches a,
.nf-popular-searches span:not(:first-child),
.nf-popular-niches span:not(:first-child) {
    background: #ffffff !important;
    color: #172033 !important;
    border: 1px solid #e4e8f1 !important;
    box-shadow: 0 5px 14px rgba(23, 32, 51, 0.08) !important;
    transition: all 0.2s ease;
}

/* Small hover effect */
.nf-popular-searches a:hover,
.nf-popular-niches a:hover,
.nf-popular-searches span:not(:first-child):hover,
.nf-popular-niches span:not(:first-child):hover {
    color: #5b32f2 !important;
    border-color: #cfc4ff !important;
    box-shadow: 0 8px 18px rgba(91, 50, 242, 0.14) !important;
    transform: translateY(-1px);
}


/* Stronger popular tag cards */
.nf-popular-searches a,
.nf-popular-niches a,
.nf-popular-searches span:not(:first-child),
.nf-popular-niches span:not(:first-child) {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 15px !important;
    background: #f8f9fc !important;
    color: #172033 !important;
    border: 1px solid #dfe5ef !important;
    border-radius: 999px !important;
    box-shadow:
        0 2px 4px rgba(23, 32, 51, 0.08),
        0 8px 16px rgba(23, 32, 51, 0.06) !important;
}

/* =========================================================
   SECTION FLOW — REMOVE EXTRA EMPTY GAPS
========================================================= */

/* Keep popular tags close to the search form */
.nf-popular-searches,
.nf-popular-niches {
    margin-top: 16px !important;
    margin-bottom: 34px !important;
}

/* Bring stats cards closer to tags */
.nf-stats-grid {
    margin-top: 0 !important;
    margin-bottom: 64px !important;
}

/* Results section starts closer and stays balanced */
.nf-results-preview {
    padding-top: 70px !important;
    padding-bottom: 72px !important;
}

/* Heading spacing inside results */
.nf-results-preview .nf-section-heading {
    margin-bottom: 34px !important;
}

/* Keep result cards and upgrade box connected */
.nf-preview-grid {
    margin-bottom: 30px !important;
}

.nf-results-lock {
    margin-top: 0 !important;
}

/* Reduce spacing before features section */
.nf-features {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

/* Consistent spacing for every main homepage section */
.nf-search-section,
.nf-results-preview,
.nf-features,
.nf-pricing,
.nf-faq {
    scroll-margin-top: 90px;
}

@media (max-width: 760px) {
    .nf-popular-searches,
    .nf-popular-niches {
        margin-bottom: 26px !important;
    }

    .nf-stats-grid {
        margin-bottom: 46px !important;
    }

    .nf-results-preview,
    .nf-features {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }
}

/* =========================================================
   STATS CARDS — MORE DEPTH + LESS EMPTY SPACE BELOW
========================================================= */

.nf-stat-card {
    background: #ffffff !important;
    border: 1px solid #dfe5ef !important;
    border-radius: 18px !important;
    box-shadow:
        0 3px 8px rgba(23, 32, 51, 0.06),
        0 14px 30px rgba(23, 32, 51, 0.08) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf-stat-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 12px rgba(23, 32, 51, 0.08),
        0 20px 38px rgba(23, 32, 51, 0.12) !important;
}

/* Remove the large blank area after stats */
.nf-stats-grid {
    margin-bottom: 28px !important;
}

/* Pull Example Results section closer to stats */
.nf-results-preview {
    padding-top: 42px !important;
}

/* Stats card labels — black text */
.nf-stat-card p,
.nf-stat-card span,
.nf-stat-card small,
.nf-stat-card label {
    color: #172033 !important;
    font-weight: 500 !important;
}

/* =========================================
   RESULTS PREVIEW SECTION POLISH
========================================= */

.nf-results-preview {
    padding: 70px 0 78px;
    background: #f7f9ff;
}

.nf-section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.nf-section-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef0ff;
    color: #5b32f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.nf-section-heading h2 {
    margin: 0 0 12px;
    color: #172033;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -1px;
}

.nf-section-heading p {
    margin: 0;
    color: #61708c;
    font-size: 15px;
    line-height: 1.6;
}

.nf-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nf-preview-card {
    background: #ffffff;
    border: 1px solid #e3e8f4;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(24, 38, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nf-preview-card:hover {
    transform: translateY(-7px);
    border-color: #cfc7ff;
    box-shadow: 0 22px 45px rgba(91, 50, 242, 0.16);
}

.nf-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.nf-preview-top h3 {
    margin: 0;
    color: #172033;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.nf-score-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: #5b32f2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(91, 50, 242, 0.25);
}

.nf-preview-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.nf-preview-meta > div {
    min-height: 84px;
    padding: 16px 10px;
    text-align: center;
    background: #f6f8fc;
    border: 1px solid #edf0f6;
    border-radius: 14px;
}

.nf-preview-meta label {
    display: block;
    margin-bottom: 9px;
    color: #73819a;
    font-size: 11px;
    font-weight: 500;
}

.nf-preview-meta strong {
    display: block;
    color: #172033;
    font-size: 16px;
    font-weight: 700;
}

.nf-view-report {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 11px;
    background: #5b32f2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 18px rgba(91, 50, 242, 0.20);
    transition: all 0.2s ease;
}

.nf-view-report:hover {
    color: #ffffff;
    background: #4823d8;
    transform: translateY(-2px);
    box-shadow: 0 13px 24px rgba(91, 50, 242, 0.28);
}

@media (max-width: 900px) {
    .nf-results-preview {
        padding: 55px 0 60px;
    }

    .nf-preview-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nf-section-heading h2 {
        font-size: 31px;
    }
}

@media (max-width: 600px) {
    .nf-preview-card {
        padding: 22px;
    }

    .nf-preview-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf-preview-meta {
        gap: 8px;
    }

    .nf-preview-meta > div {
        padding: 14px 7px;
    }

    .nf-preview-meta strong {
        font-size: 14px;
    }
}

/* RESULTS CARDS - FINAL SMALL POLISH */

/* Text under the main heading */
.nf-section-heading p {
    color: #172033 !important;
    font-weight: 500;
}

/* Score badge: soft-square instead of pill */
.nf-score-badge {
    border-radius: 10px !important;
    min-height: 40px;
    padding: 0 14px;
    box-shadow: 0 8px 18px rgba(91, 50, 242, 0.22);
}

/* Metric boxes */
.nf-preview-meta > div {
    border-radius: 12px;
}

/* Search Volume, Competition and CPC headings */
.nf-preview-meta label {
    color: #5b32f2 !important;
    font-weight: 700 !important;
    font-size: 11px;
}

/* =========================================
   PREMIUM UNLOCK CTA SECTION
========================================= */

.nf-results-lock {
    position: relative;
    overflow: hidden;
    max-width: 1120px;
    margin: 46px auto 20px;
    padding: 46px 40px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #4323d8 0%, #6538f4 55%, #7c4dff 100%);
    box-shadow: 0 20px 45px rgba(91, 50, 242, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Soft premium glow circles */
.nf-results-lock::before,
.nf-results-lock::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.nf-results-lock::before {
    width: 240px;
    height: 240px;
    top: -130px;
    left: -80px;
}

.nf-results-lock::after {
    width: 300px;
    height: 300px;
    right: -110px;
    bottom: -190px;
}

/* Keep text above background effects */
.nf-results-lock h3,
.nf-results-lock p,
.nf-results-lock a {
    position: relative;
    z-index: 2;
}

.nf-results-lock h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.6px;
}

.nf-results-lock p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
}

/* White premium button */
.nf-results-lock .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 12px;
    background: #ffffff !important;
    color: #5b32f2 !important;
    border: 1px solid #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(24, 12, 84, 0.24);
    transition: all 0.25s ease;
}

.nf-results-lock .nf-btn-primary:hover {
    background: #f4f1ff !important;
    color: #4323d8 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(24, 12, 84, 0.34);
}

.nf-results-lock .nf-btn-primary:hover {
    background: #f5f2ff;
    color: #351bc5;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(24, 12, 84, 0.30);
}

/* Mobile */
@media (max-width: 680px) {
    .nf-results-lock {
        margin: 32px 16px 16px;
        padding: 36px 22px;
        border-radius: 20px;
    }

    .nf-results-lock h3 {
        font-size: 24px;
    }

    .nf-results-lock p {
        font-size: 14px;
    }
}

/* =========================================
   WHY CHOOSE US - SPACING FIX
========================================= */

/* Reduce space above this section */
.nf-features-section,
.nf-features {
    padding-top: 58px !important;
}

/* Reduce extra gap between badge and heading */
.nf-features-section .nf-section-heading,
.nf-features .nf-section-heading {
    margin-bottom: 34px !important;
}

/* Keep heading area compact */
.nf-features-section .nf-section-heading h2,
.nf-features .nf-section-heading h2 {
    margin-top: 16px !important;
    margin-bottom: 14px !important;
}

/* Reduce space between description and feature cards */
.nf-features-section .nf-section-heading p,
.nf-features .nf-section-heading p {
    margin-bottom: 0 !important;
}

/* Bring the 6 cards closer to the heading */
.nf-features-grid,
.nf-features-cards,
.nf-feature-grid {
    margin-top: 0 !important;
}

/* Strong depth for feature cards */
.nf-feature-card,
.nf-features-grid > div,
.nf-feature-grid > div {
    border: 1px solid #dfe4f2 !important;
    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.10),
        0 3px 8px rgba(91, 50, 242, 0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Premium hover effect */
.nf-feature-card:hover,
.nf-features-grid > div:hover,
.nf-feature-grid > div:hover {
    transform: translateY(-6px);
    box-shadow:
        0 22px 42px rgba(15, 23, 42, 0.16),
        0 8px 16px rgba(91, 50, 242, 0.13) !important;
}

/* =========================================
   PRICING SECTION - PREMIUM DESIGN
========================================= */

/* Reduce empty space between feature cards and pricing */
.nf-pricing-section,
.nf-pricing {
    padding-top: 64px !important;
    padding-bottom: 80px !important;
}

/* Pricing heading spacing */
.nf-pricing-section .nf-section-heading,
.nf-pricing .nf-section-heading {
    margin-bottom: 38px !important;
}

.nf-pricing-section .nf-section-heading h2,
.nf-pricing .nf-section-heading h2 {
    margin: 16px 0 14px !important;
    font-weight: 500 !important;
    color: #172033 !important;
}

.nf-pricing-section .nf-section-heading p,
.nf-pricing .nf-section-heading p {
    color: #172033 !important;
    font-weight: 400;
}

/* Pricing cards layout */
.nf-pricing-grid,
.nf-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

/* Main pricing card */
.nf-pricing-card {
    position: relative;
    overflow: visible;
    padding: 34px;
    border: 1px solid #dfe4f2 !important;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.10),
        0 4px 10px rgba(91, 50, 242, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nf-pricing-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.15),
        0 8px 18px rgba(91, 50, 242, 0.12);
}

/* Plan name */
.nf-pricing-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 25px;
    font-weight: 600;
}

/* Plan short description */
.nf-pricing-card > p {
    margin: 0 0 26px;
    color: #52627e;
    font-size: 14px;
    line-height: 1.6;
}

/* Price */
.nf-price {
    margin-bottom: 24px;
    color: #172033;
    font-size: 21px;
    font-weight: 500;
}

.nf-price strong,
.nf-price b {
    color: #172033;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Feature list */
.nf-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.nf-pricing-card ul li {
    position: relative;
    padding: 7px 0 7px 27px;
    color: #34415d;
    font-size: 14px;
    line-height: 1.45;
}

.nf-pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eeeaff;
    color: #5b32f2;
    font-size: 11px;
    font-weight: 800;
}

/* Buttons inside pricing cards */
.nf-pricing-card .nf-btn,
.nf-pricing-card a.nf-btn-primary,
.nf-pricing-card a.nf-btn-secondary {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* Pro / most popular card */
.nf-pricing-card.featured,
.nf-pricing-card.nf-popular {
    border: 2px solid #5b32f2 !important;
    box-shadow:
        0 20px 42px rgba(91, 50, 242, 0.18),
        0 5px 12px rgba(15, 23, 42, 0.08);
}

/* Most popular label */
.nf-popular-badge,
.nf-pricing-card .popular-badge,
.nf-pricing-card .nf-badge-popular {
    position: absolute;
    top: -15px;
    right: 26px;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 999px;
    background: #5b32f2;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(91, 50, 242, 0.24);
}

/* Mobile */
@media (max-width: 760px) {
    .nf-pricing-section,
    .nf-pricing {
        padding: 50px 16px 64px !important;
    }

    .nf-pricing-grid,
    .nf-pricing-cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nf-pricing-card {
        padding: 28px 22px;
    }

    .nf-price strong,
    .nf-price b {
        font-size: 36px;
    }
}

/* =========================================
   PRICING CARDS - PURPLE OUTLINE + BUTTONS
========================================= */

/* Purple outline for both pricing cards */
.nf-pricing-card {
    border: 2px solid #5b32f2 !important;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.10),
        0 5px 14px rgba(91, 50, 242, 0.14) !important;
}

/* Make both pricing buttons purple */
.nf-pricing-card .nf-btn,
.nf-pricing-card a.nf-btn-primary,
.nf-pricing-card a.nf-btn-secondary {
    background: #5b32f2 !important;
    color: #ffffff !important;
    border: 1px solid #5b32f2 !important;
    box-shadow: 0 10px 20px rgba(91, 50, 242, 0.22);
}

/* Button hover */
.nf-pricing-card .nf-btn:hover,
.nf-pricing-card a.nf-btn-primary:hover,
.nf-pricing-card a.nf-btn-secondary:hover {
    background: #4323d8 !important;
    color: #ffffff !important;
    border-color: #4323d8 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(91, 50, 242, 0.30);
}

/* Keep Pro card slightly stronger */
.nf-pricing-card.featured,
.nf-pricing-card.nf-popular {
    border-color: #5b32f2 !important;
    box-shadow:
        0 22px 44px rgba(91, 50, 242, 0.20),
        0 7px 16px rgba(15, 23, 42, 0.10) !important;
}

/* =========================================
   PRICING CARDS — FINAL PURPLE OUTLINE STYLE
========================================= */

/* Both pricing cards */
.pricing-card,
.nf-pricing-card,
.nf-plan-card {
    position: relative !important;
    background: #ffffff !important;
    border: 2px solid #5b32f2 !important;
    border-radius: 18px !important;
    overflow: visible !important;
    box-shadow:
        0 18px 35px rgba(91, 50, 242, 0.16),
        0 6px 16px rgba(15, 23, 42, 0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

/* Small lift when user hovers a plan */
.pricing-card:hover,
.nf-pricing-card:hover,
.nf-plan-card:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 24px 42px rgba(91, 50, 242, 0.22),
        0 8px 18px rgba(15, 23, 42, 0.10) !important;
}

/* Both plan CTA buttons */
.pricing-card a,
.pricing-card button,
.nf-pricing-card a,
.nf-pricing-card button,
.nf-plan-card a,
.nf-plan-card button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    background: #5b32f2 !important;
    color: #ffffff !important;
    border: 1px solid #5b32f2 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(91, 50, 242, 0.28) !important;
    transition: all 0.25s ease !important;
}

/* CTA hover */
.pricing-card a:hover,
.pricing-card button:hover,
.nf-pricing-card a:hover,
.nf-pricing-card button:hover,
.nf-plan-card a:hover,
.nf-plan-card button:hover {
    background: #4323d8 !important;
    border-color: #4323d8 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 26px rgba(91, 50, 242, 0.35) !important;
}

/* Most Popular badge */
.pricing-card .popular-badge,
.pricing-card .most-popular,
.nf-pricing-card .popular-badge,
.nf-pricing-card .most-popular,
.nf-plan-card .popular-badge,
.nf-plan-card .most-popular {
    background: #5b32f2 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    border-radius: 999px !important;
    padding: 8px 17px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(91, 50, 242, 0.30) !important;
}

/* =========================================
   NICHE FINDER PRICING — FINAL CARD DESIGN
========================================= */

/* Pricing cards */
.nf-pricing .nf-plan {
    position: relative;
    background: #ffffff;
    border: 2px solid #5b32f2;
    border-radius: 18px;
    padding: 34px;
    overflow: visible;
    box-shadow:
        0 18px 38px rgba(91, 50, 242, 0.16),
        0 6px 14px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.nf-pricing .nf-plan:hover {
    transform: translateY(-5px);
    box-shadow:
        0 24px 46px rgba(91, 50, 242, 0.24),
        0 8px 18px rgba(15, 23, 42, 0.10);
}

/* Keep Pro card slightly stronger */
.nf-pricing .nf-plan-pro {
    border-color: #5b32f2;
    box-shadow:
        0 22px 44px rgba(91, 50, 242, 0.22),
        0 7px 16px rgba(15, 23, 42, 0.10);
}

/* Purple buttons for both plans */
.nf-pricing .nf-plan .nf-btn-secondary,
.nf-pricing .nf-plan .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    background: #5b32f2 !important;
    color: #ffffff !important;
    border: 1px solid #5b32f2 !important;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(91, 50, 242, 0.28);
    transition: all 0.25s ease;
}

/* Button hover */
.nf-pricing .nf-plan .nf-btn-secondary:hover,
.nf-pricing .nf-plan .nf-btn-primary:hover {
    background: #4323d8 !important;
    color: #ffffff !important;
    border-color: #4323d8 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(91, 50, 242, 0.35);
}

/* Most Popular badge */
.nf-pricing .nf-popular-badge {
    position: absolute;
    top: -18px;
    right: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5b32f2;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 999px;
    padding: 8px 17px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(91, 50, 242, 0.32);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .nf-pricing .nf-plan {
        padding: 28px 22px;
    }

    .nf-pricing .nf-popular-badge {
        right: 20px;
    }
}

/* Pricing bottom note */
.nf-pricing-note {
    text-align: center;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    margin: 18px auto 0;
    width: 100%;
}

/* =========================================================
   FAQ SECTION – PREMIUM POLISH
   ========================================================= */

.nf-faq {
    padding: 72px 0 82px;
    background: #ffffff;
}

.nf-faq .nf-section-heading {
    margin-bottom: 34px;
}

.nf-faq .nf-section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #f0edff;
    color: #5b32f2;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nf-faq .nf-section-heading h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.15;
}

.nf-faq .nf-section-heading p {
    margin: 0;
    color: #111827;
    font-size: 16px;
}

/* FAQ container */
.nf-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

/* Each question box */
.nf-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe4ef;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.07);
    transition: all 0.25s ease;
}

.nf-faq-item:hover {
    border-color: #5b32f2;
    box-shadow: 0 12px 26px rgba(91, 50, 242, 0.14);
    transform: translateY(-2px);
}

/* Question */
.nf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 20px;
    border: 0;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

/* Arrow icon */
.nf-faq-question::after {
    content: "+";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0edff;
    color: #5b32f2;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.25s ease;
}

/* Open FAQ */
.nf-faq-item.active {
    border-color: #5b32f2;
    box-shadow: 0 14px 30px rgba(91, 50, 242, 0.16);
}

.nf-faq-item.active .nf-faq-question {
    color: #5b32f2;
}

.nf-faq-item.active .nf-faq-question::after {
    content: "−";
    background: #5b32f2;
    color: #ffffff;
}

/* Answer */
.nf-faq-answer {
    display: none;
    padding: 0 20px 19px;
    color: #34415d;
    font-size: 15px;
    line-height: 1.7;
}

.nf-faq-item.active .nf-faq-answer {
    display: block;
}

/* Mobile */
@media (max-width: 680px) {
    .nf-faq {
        padding: 56px 0 64px;
    }

    .nf-faq-question {
        padding: 15px 16px;
        font-size: 15px;
    }

    .nf-faq-answer {
        padding: 0 16px 17px;
        font-size: 14px;
    }
}

/* FAQ text color fix */
.nf-faq-question,
.nf-faq-answer,
.nf-faq-question span,
.nf-faq-answer p {
    color: #111827 !important;
}

/* Keep the plus/minus icon purple */
.nf-faq-question::after {
    color: #5b32f2 !important;
}

.nf-faq-item.active .nf-faq-question::after {
    color: #ffffff !important;
}

/* Force all FAQ question and answer text to black */
.nf-faq,
.nf-faq *,
.nf-faq-item,
.nf-faq-item *,
.nf-faq-question,
.nf-faq-answer,
.nf-faq-content,
.nf-faq-content p,
.nf-faq-item summary,
.nf-faq-item details,
.nf-faq-item p {
    color: #000000 !important;
}

/* Keep only the arrow icon purple if it is a separate element */
.nf-faq-icon {
    color: #5b32f2 !important;
}

/* =========================================
   FOOTER POLISH
========================================= */

.nf-footer {
    background: #101a2d;
    padding: 72px 0 24px;
    color: #ffffff;
}

.nf-footer .nf-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Main footer columns */
.nf-footer-content,
.nf-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 52px;
    align-items: start;
}

/* Brand */
.nf-footer-brand h3,
.nf-footer-brand h2,
.nf-footer-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 18px;
}

.nf-footer-brand p {
    color: #9aabc7;
    font-size: 14px;
    line-height: 1.75;
    max-width: 310px;
    margin: 0 0 22px;
}

.nf-footer-brand a,
.nf-footer-email {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
}

.nf-footer-brand a:hover,
.nf-footer-email:hover {
    color: #8d72ff !important;
}

/* Footer headings */
.nf-footer h4,
.nf-footer-column h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0 18px;
}

/* Links */
.nf-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nf-footer li {
    margin-bottom: 14px;
}

.nf-footer li a,
.nf-footer-column a {
    color: #b4c3dc !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nf-footer li a:hover,
.nf-footer-column a:hover {
    color: #ffffff !important;
    padding-left: 4px;
}

/* Bottom line */
.nf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 56px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nf-footer-bottom p,
.nf-footer-bottom span {
    color: #8090aa !important;
    font-size: 13px;
    margin: 0;
}

/* Mobile footer */
@media (max-width: 900px) {
    .nf-footer {
        padding-top: 52px;
    }

    .nf-footer-content,
    .nf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 28px;
    }

    .nf-footer-brand {
        grid-column: 1 / -1;
    }

    .nf-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
    }
}

@media (max-width: 520px) {
    .nf-footer-content,
    .nf-footer-grid {
        grid-template-columns: 1fr;
    }

    .nf-footer .nf-container {
        padding: 0 20px;
    }
}

/* Live search results */
#nf-results {
    width: min(1180px, calc(100% - 40px));
    margin: 36px auto;
}

.nf-search-message {
    padding: 18px 20px;
    border: 1px solid #ded7ff;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 28px rgba(68, 42, 180, 0.08);
}

.nf-search-error {
    border-color: #f3b5b5;
    color: #a31313;
}

.nf-live-results-heading {
    text-align: center;
    margin-bottom: 24px;
}

.nf-live-results-heading h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 28px;
}

.nf-live-results-heading p {
    margin: 0;
    color: #4b5563;
}

.nf-live-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.nf-live-result-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ded7ff;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(68, 42, 180, 0.12);
}

.nf-live-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nf-result-category {
    color: #5b2eff;
    font-size: 13px;
    font-weight: 700;
}

.nf-result-score {
    padding: 8px 12px;
    border-radius: 10px;
    background: #5b2eff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.nf-live-result-card h3 {
    margin: 20px 0 7px;
    color: #111827;
    font-size: 20px;
    line-height: 1.35;
}

.nf-result-subcategory {
    min-height: 20px;
    margin: 0 0 18px;
    color: #5b2eff;
    font-size: 14px;
    font-weight: 600;
}

.nf-result-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.nf-result-metrics div {
    padding: 13px 8px;
    border-radius: 12px;
    background: #f7f7ff;
    text-align: center;
}

.nf-result-metrics span {
    display: block;
    margin-bottom: 7px;
    color: #5b2eff;
    font-size: 11px;
    font-weight: 700;
}

.nf-result-metrics strong {
    color: #111827;
    font-size: 14px;
}

@media (max-width: 900px) {
    .nf-live-results-grid {
        grid-template-columns: 1fr;
    }
}


.nf-live-search-results {
    max-width: 760px;
    margin: 18px auto 0;
}

.nf-search-test-message {
    padding: 16px 20px;
    border: 2px solid #5b2eff;
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(91, 46, 255, 0.14);
}

.nf-search-test-error {
    border-color: #e5484d;
    color: #b42318;
}


.nf-live-search-results {
    max-width: 1120px;
    margin: 24px auto 0;
}

.nf-search-message {
    padding: 16px 20px;
    border: 2px solid #5b2eff;
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(91, 46, 255, 0.14);
}

.nf-search-message-loading {
    color: #5b2eff;
    font-weight: 700;
}

.nf-search-message-error {
    border-color: #e5484d;
    color: #b42318;
}

.nf-search-message-empty {
    border-color: #d7ddea;
    color: #111111;
}

.nf-search-results-heading {
    margin: 0 0 18px;
    color: #111111;
    font-size: 16px;
    text-align: left;
}

.nf-live-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.nf-live-result-card {
    padding: 22px;
    border: 1.5px solid #5b2eff;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(91, 46, 255, 0.14);
}

.nf-live-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.nf-live-result-category {
    color: #5b2eff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nf-live-result-score {
    padding: 8px 11px;
    border-radius: 8px;
    background: #5b2eff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.nf-live-result-card h3 {
    margin: 0 0 18px;
    color: #111111;
    font-size: 20px;
    line-height: 1.35;
}

.nf-live-result-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.nf-live-result-meta div {
    padding: 12px 8px;
    border-radius: 10px;
    background: #f7f8fc;
    text-align: center;
}

.nf-live-result-meta span {
    display: block;
    margin-bottom: 5px;
    color: #5b2eff;
    font-size: 11px;
    font-weight: 800;
}

.nf-live-result-meta strong {
    color: #111111;
    font-size: 14px;
}

.nf-live-result-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 9px;
    background: #5b2eff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.nf-live-result-button:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .nf-live-results-grid {
        grid-template-columns: 1fr;
    }
}


/* Search results and filters */
.nf-search-results-section {
    padding: 18px 0 45px;
}

.nf-results-toolbar {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
    border: 1px solid #ded7ff;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(93, 52, 255, 0.09);
}

.nf-results-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ece8ff;
    color: #172033;
    font-size: 15px;
    font-weight: 700;
}

.nf-results-summary::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eeeaff;
    color: #5b31f4;
    content: "⌕";
    font-size: 18px;
    font-weight: 800;
}

.nf-results-summary strong {
    color: #5b31f4;
    font-size: 20px;
}

.nf-result-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    width: 100%;
}

.nf-result-filters::before {
    grid-column: 1 / -1;
    color: #6b7280;
    content: "Refine these results";
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-result-filters[hidden],
.nf-result-filters select[hidden],
#nf-clear-filters[hidden] {
    display: none !important;
}

.nf-result-filters select {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 38px 0 14px;
    color: #1e293b;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    background: #ffffff;
    border: 1px solid #ddd7ff;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nf-result-filters select:hover {
    border-color: #b9a9ff;
    transform: translateY(-1px);
}

.nf-result-filters select:focus {
    border-color: #5b31f4;
    box-shadow: 0 0 0 3px rgba(91, 49, 244, 0.12);
}

#nf-clear-filters {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    color: #5b31f4;
    font-family: inherit;
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    border: 1px solid #d9d1ff;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#nf-clear-filters:hover {
    color: #ffffff;
    background: #5b31f4;
    border-color: #5b31f4;
    transform: translateY(-1px);
}

.nf-search-results-heading {
    margin: 0 0 18px;
    color: #26334d;
    font-size: 16px;
}

.nf-search-results-heading strong {
    color: #5b31f4;
}

.nf-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.nf-search-message {
    padding: 16px 20px;
    margin: 0 0 20px;
    text-align: center;
    color: #26334d;
    background: #ffffff;
    border: 1px solid #e6e0ff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(93, 52, 255, 0.07);
}

.nf-search-message-loading {
    color: #5b31f4;
}

.nf-search-message-error {
    color: #c6285a;
    border-color: #ffc7dc;
    background: #fff7fa;
}

.nf-search-message-empty {
    color: #6b7280;
}

.nf-search-message-empty strong,
.nf-search-message-empty span {
    display: block;
}

.nf-search-message-empty strong {
    margin-bottom: 6px;
    color: #172033;
    font-size: 17px;
}

.nf-search-message-empty span {
    line-height: 1.6;
}

.nf-empty-filter-reset {
    min-height: 42px;
    margin-top: 14px;
    padding: 0 17px;
    border: 0;
    border-radius: 10px;
    background: #5b31f4;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.nf-empty-filter-reset:hover {
    background: #4722d6;
}

@media (max-width: 1024px) {
    .nf-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nf-results-toolbar {
        padding: 17px;
        border-radius: 16px;
    }

    .nf-result-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nf-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nf-result-filters {
        grid-template-columns: 1fr;
    }
}



/* =========================================
   NICHE REPORT PAGE
========================================= */

.nf-report-page {
    padding: 56px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
}

.nf-report-page .nf-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Back link */

.nf-report-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: #5b2cff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nf-report-back:hover {
    color: #3f16d8;
    text-decoration: underline;
}

/* Category path */

.nf-report-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

.nf-report-path a {
    color: #6a35ff;
    text-decoration: none;
}

.nf-report-path a:hover {
    text-decoration: underline;
}

.nf-report-path span {
    color: #98a2b3;
}

/* Hero */

.nf-report-hero {
    padding: 34px;
    border: 1px solid #e8e2ff;
    border-radius: 22px;
    background: linear-gradient(135deg, #faf8ff 0%, #ffffff 70%);
    box-shadow: 0 12px 34px rgba(91, 44, 255, 0.08);
}

.nf-report-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #efeaff;
    color: #5b2cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-report-hero h1 {
    max-width: 850px;
    margin: 16px 0 12px;
    color: #172033;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.nf-report-hero p {
    max-width: 820px;
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

/* Metric cards */

.nf-report-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.nf-report-stat {
    min-height: 126px;
    padding: 22px;
    border: 1px solid #e8e2ff;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.nf-report-stat span {
    display: block;
    margin-bottom: 12px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.nf-report-stat strong {
    display: block;
    color: #172033;
    font-size: 21px;
    line-height: 1.25;
}

/* Free overview */

.nf-report-overview {
    margin: 24px 0;
    padding: 30px;
    border: 1px solid #e8e2ff;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.nf-report-overview-heading {
    margin-bottom: 18px;
}

.nf-report-overview-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #5b2cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-report-overview h2 {
    margin: 0;
    color: #172033;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.nf-report-overview-content {
    max-width: 900px;
}

.nf-report-overview-content p {
    margin: 0 0 14px;
    color: #536176;
    font-size: 16px;
    line-height: 1.75;
}

.nf-report-overview-content strong {
    color: #172033;
}

.nf-report-overview-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.nf-report-overview-points > div {
    padding: 16px;
    border-radius: 14px;
    background: #faf9ff;
}

.nf-report-overview-points strong {
    display: block;
    margin-bottom: 7px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-report-overview-points span {
    color: #172033;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

/* Premium locked area */

.nf-report-lock {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 42px 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, #24105f 0%, #5b2cff 52%, #7a4dff 100%);
    box-shadow: 0 18px 38px rgba(91, 44, 255, 0.24);
}

.nf-report-lock::after {
    position: absolute;
    top: -90px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    content: "";
}

.nf-report-lock > * {
    position: relative;
    z-index: 1;
}

.nf-report-lock > span {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nf-report-lock h2 {
    max-width: 650px;
    margin: 16px 0 12px;
    color: #ffffff;
    font-size: clamp(27px, 3.5vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.nf-report-lock p {
    max-width: 690px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.7;
}

.nf-report-lock .nf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #ffffff;
    color: #4c21d5;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf-report-lock .nf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* Mobile */

@media (max-width: 850px) {
    .nf-report-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nf-report-overview-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .nf-report-page {
        padding: 34px 0 56px;
    }

    .nf-report-page .nf-container {
        padding: 0 16px;
    }

    .nf-report-hero,
    .nf-report-overview,
    .nf-report-lock {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .nf-report-stats {
        grid-template-columns: 1fr;
    }

    .nf-report-stat {
        min-height: auto;
    }
}


/* =========================================================
   RELATED NICHES — NICHE REPORT PAGE
========================================================= */

.nf-related-niches-section {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.08);
}

.nf-related-niches-heading {
    margin-bottom: 22px;
}

.nf-related-niches-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-related-niches-heading h2 {
    margin: 0 0 8px;
    color: #0f1f3d;
    font-size: 28px;
    line-height: 1.2;
}

.nf-related-niches-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.nf-related-niches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nf-related-niche-card {
    display: flex;
    flex-direction: column;
    min-height: 205px;
    padding: 20px;
    border: 1px solid #e7e0ff;
    border-radius: 18px;
    background: #fbfaff;
    color: #0f1f3d;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nf-related-niche-card:hover {
    transform: translateY(-4px);
    border-color: #6437ff;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(100, 55, 255, 0.14);
}

.nf-related-niche-category {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eee9ff;
    color: #6437ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nf-related-niche-card h3 {
    margin: 0;
    color: #0f1f3d;
    font-size: 18px;
    line-height: 1.35;
}

.nf-related-niche-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    color: #667085;
    font-size: 12px;
}

.nf-related-niche-footer strong {
    color: #0f1f3d;
    font-size: 14px;
}

.nf-related-niche-link {
    display: inline-block;
    margin-top: 14px;
    color: #6437ff;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .nf-related-niches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nf-related-niches-section {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .nf-related-niches-heading h2 {
        font-size: 23px;
    }

    .nf-related-niches-grid {
        grid-template-columns: 1fr;
    }

    .nf-related-niche-card {
        min-height: 175px;
    }
}

/* =========================================================
   FREE CONTENT IDEAS — NICHE REPORT PAGE
========================================================= */

.nf-content-ideas-section {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.08);
}

.nf-content-ideas-heading {
    margin-bottom: 22px;
}

.nf-content-ideas-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-content-ideas-heading h2 {
    margin: 0 0 8px;
    color: #0f1f3d;
    font-size: 28px;
    line-height: 1.2;
}

.nf-content-ideas-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.nf-content-ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nf-content-idea-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    border: 1px solid #e7e0ff;
    border-radius: 18px;
    background: #fbfaff;
}

.nf-content-idea-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: #eee9ff;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
}

.nf-content-idea-card h3 {
    margin: 0 0 10px;
    color: #0f1f3d;
    font-size: 18px;
}

.nf-content-idea-card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}

.nf-content-idea-card strong {
    color: #0f1f3d;
}

@media (max-width: 900px) {
    .nf-content-ideas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nf-content-ideas-section {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .nf-content-ideas-heading h2 {
        font-size: 23px;
    }

    .nf-content-ideas-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PREMIUM REPORT PREVIEW — NICHE REPORT PAGE
========================================================= */

.nf-premium-preview-section {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.08);
}

.nf-premium-preview-heading {
    margin-bottom: 22px;
}

.nf-premium-preview-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-premium-preview-heading h2 {
    margin: 0 0 8px;
    color: #0f1f3d;
    font-size: 28px;
    line-height: 1.2;
}

.nf-premium-preview-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.nf-premium-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nf-premium-preview-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #e7e0ff;
    border-radius: 18px;
    background: linear-gradient(135deg, #fbfaff 0%, #f4f0ff 100%);
}

.nf-premium-preview-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: rgba(100, 55, 255, 0.08);
}

.nf-premium-preview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #6437ff;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.nf-premium-preview-card h3 {
    margin: 0 0 10px;
    color: #0f1f3d;
    font-size: 19px;
}

.nf-premium-preview-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}

.nf-premium-preview-lock {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 16px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 700px) {
    .nf-premium-preview-section {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .nf-premium-preview-heading h2 {
        font-size: 23px;
    }

    .nf-premium-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   UPGRADE MODAL
========================================================= */

.nf-upgrade-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nf-upgrade-modal.nf-upgrade-modal-open {
    display: flex;
}

.nf-upgrade-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 61, 0.62);
    backdrop-filter: blur(5px);
}

.nf-upgrade-modal-box {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 38px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 31, 61, 0.28);
    text-align: center;
}

.nf-upgrade-modal-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-upgrade-modal-box h2 {
    margin: 0 0 12px;
    color: #0f1f3d;
    font-size: 30px;
    line-height: 1.2;
}

.nf-upgrade-modal-box p {
    margin: 0 0 24px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.nf-upgrade-modal-box small {
    display: block;
    margin-top: 16px;
    color: #98a2b3;
    font-size: 12px;
}

.nf-upgrade-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #f5f3ff;
    color: #0f1f3d;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.nf-upgrade-modal-close:hover {
    background: #6437ff;
    color: #ffffff;
}

body.nf-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .nf-upgrade-modal-box {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .nf-upgrade-modal-box h2 {
        font-size: 25px;
    }
}

/* =========================================================
   FREE NICHE DATA SNAPSHOT — REPORT PAGE
========================================================= */

.nf-data-snapshot-section {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.08);
}

.nf-data-snapshot-heading {
    margin-bottom: 22px;
}

.nf-data-snapshot-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-data-snapshot-heading h2 {
    margin: 0 0 8px;
    color: #0f1f3d;
    font-size: 28px;
    line-height: 1.2;
}

.nf-data-snapshot-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.nf-data-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nf-data-snapshot-card {
    padding: 20px;
    border: 1px solid #e7e0ff;
    border-radius: 18px;
    background: #fbfaff;
}

.nf-data-snapshot-label {
    display: block;
    margin-bottom: 12px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-data-snapshot-card strong {
    display: block;
    color: #0f1f3d;
    font-size: 18px;
    line-height: 1.35;
}

.nf-data-snapshot-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.nf-data-snapshot-details > div {
    padding: 16px;
    border-radius: 16px;
    background: #f7f5ff;
}

.nf-data-snapshot-details span {
    display: block;
    margin-bottom: 7px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.nf-data-snapshot-details strong {
    color: #0f1f3d;
    font-size: 15px;
}

@media (max-width: 900px) {
    .nf-data-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nf-data-snapshot-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nf-data-snapshot-section {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .nf-data-snapshot-heading h2 {
        font-size: 23px;
    }

    .nf-data-snapshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Niche Opportunity Breakdown */

.nf-opportunity-breakdown-section {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #e6ddff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.08);
}

.nf-opportunity-breakdown-heading {
    margin-bottom: 22px;
}

.nf-opportunity-breakdown-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-opportunity-breakdown-heading h2 {
    margin: 0 0 8px;
    color: #0f1f3d;
    font-size: 28px;
}

.nf-opportunity-breakdown-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
}

.nf-opportunity-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nf-opportunity-breakdown-card {
    padding: 22px;
    border: 1px solid #e7e0ff;
    border-radius: 18px;
    background: #fbfaff;
}

.nf-opportunity-breakdown-card span {
    display: block;
    margin-bottom: 10px;
    color: #6437ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-opportunity-breakdown-card strong {
    display: block;
    margin-bottom: 12px;
    color: #0f1f3d;
    font-size: 22px;
}

.nf-opportunity-breakdown-card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .nf-opportunity-breakdown-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   DATABASE SEARCH AUTOCOMPLETE
========================================================= */

.nf-search-input-wrap {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.nf-search-input-wrap > input {
    display: block;
}

.nf-search-suggestions {
    position: absolute;
    z-index: 999;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 370px;
    padding: 8px;
    border: 1px solid #ded7ff;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(50, 29, 128, 0.16);
}

.nf-search-suggestions[hidden] {
    display: none !important;
}

.nf-search-form .nf-search-suggestion {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 12px;
    border: 0;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: none;
    color: #172033;
    text-align: left;
    white-space: normal;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.nf-search-form .nf-search-suggestion:hover,
.nf-search-form .nf-search-suggestion-active {
    background: #f5f2ff;
    color: #172033;
    transform: none;
}

.nf-search-suggestion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eeeaff;
    color: #5b31f4;
    font-size: 16px;
    font-weight: 800;
}

.nf-search-suggestion-copy {
    overflow: hidden;
    min-width: 0;
}

.nf-search-suggestion-copy strong,
.nf-search-suggestion-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nf-search-suggestion-copy strong {
    margin-bottom: 4px;
    color: #172033;
    font-size: 14px;
    font-weight: 750;
}

.nf-search-suggestion-copy small {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.nf-search-suggestion-copy em {
    display: inline-flex;
    margin-top: 5px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #eeeaff;
    color: #5b31f4;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
}

.nf-search-suggestion-arrow {
    color: #8f7bf7;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.nf-search-suggestions-loading,
.nf-search-suggestions-empty {
    padding: 16px 14px;
    color: #667085;
    font-size: 13px;
    font-weight: 650;
    text-align: center;
}

.nf-search-suggestions-loading {
    color: #5b31f4;
}

@media (max-width: 760px) {
    .nf-search-input-wrap {
        width: 100%;
    }

    .nf-search-suggestions {
        max-height: 320px;
    }
}

/* Honest labels for taxonomy-family fallback results */

.nf-live-result-related {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff7e8;
    color: #9a5b00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nf-live-result-opposite {
    background: #fff1f2;
    color: #b4233f;
}

/* =========================================================
   LOGIN AND REGISTRATION
========================================================= */

.nf-auth-page {
    min-height: calc(100vh - 78px);
    padding: 64px 20px 90px;
    background:
        radial-gradient(circle at 8% 12%, rgba(103, 68, 255, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #f5f3ff 100%);
}

.nf-auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
    overflow: hidden;
    width: min(1080px, 100%);
    margin: 0 auto;
    border: 1px solid #e1dbff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(60, 36, 150, 0.14);
}

.nf-auth-card {
    padding: 48px;
}

.nf-auth-back {
    display: inline-flex;
    margin-bottom: 34px;
    color: #5b31f4;
    font-size: 13px;
    font-weight: 750;
}

.nf-auth-heading {
    margin-bottom: 28px;
}

.nf-auth-heading > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eeeaff;
    color: #5b31f4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-auth-heading h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 43px);
    letter-spacing: -0.04em;
}

.nf-auth-heading p {
    max-width: 590px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.nf-auth-form {
    position: relative;
}

.nf-auth-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nf-auth-field {
    display: block;
    margin-bottom: 16px;
}

.nf-auth-field > span {
    display: block;
    margin-bottom: 7px;
    color: #26334d;
    font-size: 13px;
    font-weight: 750;
}

.nf-auth-field input {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #d9dff0;
    border-radius: 11px;
    outline: none;
    background: #ffffff;
    color: #172033;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nf-auth-field input:focus {
    border-color: #5b31f4;
    box-shadow: 0 0 0 4px rgba(91, 49, 244, 0.11);
}

.nf-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 2px 0 20px;
    font-size: 13px;
}

.nf-auth-row > a,
.nf-auth-switch a {
    color: #5b31f4;
    font-weight: 750;
}

.nf-auth-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: #526078;
    font-size: 13px;
    cursor: pointer;
}

.nf-auth-check input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: #5b31f4;
}

.nf-auth-terms {
    margin: 2px 0 20px;
}

.nf-auth-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #6845ff 0%, #4b28e8 100%);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(91, 49, 244, 0.23);
}

.nf-auth-submit:hover {
    background: linear-gradient(135deg, #5b35f2 0%, #3e20ca 100%);
}

.nf-auth-submit:disabled {
    background: #b8b2d2;
    box-shadow: none;
    cursor: not-allowed;
}

.nf-auth-switch {
    margin: 22px 0 0;
    color: #667085;
    font-size: 13px;
    text-align: center;
}

.nf-auth-alert {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 12px;
}

.nf-auth-alert p {
    margin: 0;
    color: inherit;
    font-size: 13px;
    font-weight: 650;
}

.nf-auth-alert p + p {
    margin-top: 7px;
}

.nf-auth-alert-error {
    border-color: #ffc7d4;
    background: #fff5f7;
    color: #b42345;
}

.nf-auth-alert-warning {
    border-color: #f6d894;
    background: #fffaf0;
    color: #8b5a00;
}

.nf-auth-aside {
    position: relative;
    overflow: hidden;
    padding: 56px 44px;
    background: linear-gradient(145deg, #251064 0%, #5127df 58%, #7147ff 100%);
    color: #ffffff;
}

.nf-auth-aside::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    content: "";
}

.nf-auth-aside > * {
    position: relative;
    z-index: 1;
}

.nf-auth-aside-badge {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nf-auth-aside h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(29px, 3vw, 39px);
}

.nf-auth-aside > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.nf-auth-benefits {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.nf-auth-benefits > div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.nf-auth-benefits strong,
.nf-auth-benefits span {
    display: block;
}

.nf-auth-benefits strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
}

.nf-auth-benefits span {
    color: rgba(255, 255, 255, 0.73);
    font-size: 12px;
    line-height: 1.55;
}

.nf-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nf-auth-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 880px) {
    .nf-auth-shell {
        grid-template-columns: 1fr;
    }

    .nf-auth-aside {
        padding: 42px 34px;
    }
}

@media (max-width: 620px) {
    .nf-auth-page {
        padding: 30px 14px 60px;
    }

    .nf-auth-shell {
        border-radius: 20px;
    }

    .nf-auth-card,
    .nf-auth-aside {
        padding: 30px 22px;
    }

    .nf-auth-field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nf-auth-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Keep account actions horizontal on desktop navbar */

.nf-navbar .nf-nav-right.nf-nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
}

.nf-navbar .nf-nav-right .nf-btn {
    width: auto;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .nf-navbar .nf-nav-right.nf-nav-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .nf-navbar .nf-nav-right .nf-btn {
        width: 100%;
    }
}

/* Dedicated navbar button row prevents legacy action rules from stacking */

.nf-navbar .nf-nav-right .nf-nav-button-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
}

.nf-navbar .nf-nav-right .nf-nav-button-row .nf-btn {
    display: inline-flex !important;
    width: auto !important;
    min-width: max-content;
    margin: 0 !important;
    white-space: nowrap;
}

/* =========================================================
   AUTHENTICATION POLISH
========================================================= */

.nf-auth-page .nf-auth-shell {
    border-color: #e8e3fb;
    box-shadow: 0 24px 64px rgba(56, 35, 126, 0.11);
}

.nf-auth-page .nf-auth-card {
    color: #172033;
}

.nf-auth-page .nf-auth-back {
    font-weight: 600;
    text-decoration: none;
}

.nf-auth-page .nf-auth-heading h1 {
    color: #172033;
    font-size: clamp(30px, 3.5vw, 39px);
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.nf-auth-page .nf-auth-heading p {
    color: #68748a;
    font-weight: 400;
}

.nf-auth-page .nf-auth-heading > span,
.nf-auth-page .nf-auth-aside-badge {
    font-weight: 700;
}

.nf-auth-page .nf-auth-field > span {
    color: #344054;
    font-weight: 600;
}

.nf-auth-page .nf-auth-field input {
    border-color: #d8deeb;
    border-radius: 10px;
    color: #172033;
    font-weight: 400;
}

.nf-auth-page .nf-auth-row > a,
.nf-auth-page .nf-auth-switch a {
    font-weight: 600;
}

.nf-auth-page .nf-auth-check {
    font-weight: 400;
}

.nf-auth-page .nf-auth-form .nf-auth-submit {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 50px;
    margin: 0 !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 10px;
    background: linear-gradient(135deg, #6742f5 0%, #4d27dc 100%) !important;
    box-shadow: 0 10px 22px rgba(78, 40, 220, 0.20);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
}

.nf-auth-page .nf-auth-form .nf-auth-submit:hover {
    background: linear-gradient(135deg, #5933e8 0%, #4020c4 100%) !important;
    box-shadow: 0 12px 25px rgba(78, 40, 220, 0.25);
    transform: translateY(-1px);
}

.nf-auth-page .nf-auth-form .nf-auth-submit:disabled {
    background: #b8b2d2 !important;
    box-shadow: none;
    transform: none;
}

.nf-auth-page .nf-auth-aside h2 {
    font-size: clamp(28px, 3vw, 37px);
    font-weight: 620;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.nf-auth-page .nf-auth-aside > p {
    font-weight: 400;
}

.nf-auth-page .nf-auth-benefits {
    gap: 0;
    margin-top: 30px;
}

.nf-auth-page .nf-auth-benefits > div {
    position: relative;
    padding: 16px 0 16px 34px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: transparent;
}

.nf-auth-page .nf-auth-benefits > div:last-child {
    border-bottom: 0;
}

.nf-auth-page .nf-auth-benefits > div::before {
    position: absolute;
    top: 17px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    content: "\2713";
    font-size: 11px;
    font-weight: 700;
}

.nf-auth-page .nf-auth-benefits strong {
    font-weight: 600;
}

.nf-auth-page .nf-auth-benefits span {
    font-weight: 400;
}

/* =========================================================
   FRONTEND ACCOUNT DASHBOARD
========================================================= */

.nf-account-page {
    min-height: calc(100vh - 90px);
    padding: 44px 20px 84px;
    background:
        radial-gradient(circle at 90% 4%, rgba(101, 67, 242, 0.08), transparent 24%),
        #f7f8fc;
    color: #172033;
}

.nf-account-shell {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    overflow: hidden;
    width: min(1180px, 100%);
    margin: 0 auto;
    border: 1px solid #e5e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(27, 33, 54, 0.08);
}

.nf-account-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 690px;
    padding: 28px 20px;
    border-right: 1px solid #eceef4;
    background: #fbfbfe;
}

.nf-account-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 25px;
    border-bottom: 1px solid #eceef4;
}

.nf-account-avatar {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c47f5, #4c26dc);
    box-shadow: 0 8px 18px rgba(83, 43, 221, 0.20);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.nf-account-user div {
    min-width: 0;
}

.nf-account-user strong,
.nf-account-user span {
    display: block;
}

.nf-account-user strong {
    overflow: hidden;
    color: #182033;
    font-size: 14px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nf-account-user div > span {
    margin-top: 3px;
    color: #7a8497;
    font-size: 12px;
}

.nf-account-menu {
    display: grid;
    gap: 6px;
    margin-top: 24px;
}

.nf-account-menu > a,
.nf-account-menu > span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 12px;
    border-radius: 10px;
    color: #586277;
    font-size: 13px;
    font-weight: 550;
    text-decoration: none;
}

.nf-account-menu > a > span,
.nf-account-menu > span > span {
    width: 18px;
    color: #6b7280;
    font-size: 18px;
    text-align: center;
}

.nf-account-menu > a:hover,
.nf-account-menu > a.is-active {
    background: #eeeaff;
    color: #5430e5;
}

.nf-account-menu > a.is-active > span {
    color: #5430e5;
}

.nf-account-menu .is-coming-soon {
    cursor: default;
}

.nf-account-menu small {
    margin-left: auto;
    padding: 3px 6px;
    border-radius: 999px;
    background: #f0f1f5;
    color: #8b93a3;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-account-logout {
    margin-top: auto;
    padding: 12px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nf-account-logout:hover {
    color: #b4233f;
}

.nf-account-main {
    min-width: 0;
    padding: 42px;
}

.nf-account-notice {
    margin-bottom: 24px;
    padding: 13px 16px;
    border: 1px solid #cce9d8;
    border-radius: 10px;
    background: #f3fbf6;
    color: #187342;
    font-size: 13px;
    font-weight: 550;
}

.nf-account-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.nf-account-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #623bf0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-account-hero h1 {
    margin: 0 0 8px;
    color: #172033;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.nf-account-hero p {
    margin: 0;
    color: #6b7588;
    font-size: 15px;
}

.nf-account-plan {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #ded6ff;
    border-radius: 999px;
    background: #f3f0ff;
    color: #5932e7;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.nf-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.nf-account-primary,
.nf-account-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nf-account-primary {
    background: #5b32e9;
    box-shadow: 0 9px 19px rgba(91, 50, 233, 0.18);
    color: #ffffff !important;
}

.nf-account-primary:hover {
    background: #4822cf;
    color: #ffffff !important;
}

.nf-account-secondary {
    border: 1px solid #dce1eb;
    background: #ffffff;
    color: #344054;
}

.nf-account-secondary:hover {
    border-color: #c9bfff;
    color: #5430df;
}

.nf-account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.nf-account-stats article {
    padding: 20px;
    border: 1px solid #e6e8ef;
    border-radius: 15px;
    background: #ffffff;
}

.nf-account-stats span,
.nf-account-stats strong,
.nf-account-stats small {
    display: block;
}

.nf-account-stats span {
    color: #697386;
    font-size: 12px;
    font-weight: 550;
}

.nf-account-stats strong {
    margin: 10px 0 6px;
    color: #172033;
    font-size: 26px;
    font-weight: 620;
    letter-spacing: -0.03em;
}

.nf-account-stats small {
    color: #9098a8;
    font-size: 11px;
}

.nf-account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 16px;
    margin-top: 16px;
}

.nf-account-panel {
    padding: 24px;
    border: 1px solid #e6e8ef;
    border-radius: 16px;
    background: #ffffff;
}

.nf-account-start {
    display: flex;
    gap: 18px;
    background: linear-gradient(140deg, #faf9ff 0%, #f5f2ff 100%);
}

.nf-account-panel-icon {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eae4ff;
    color: #5b32e9;
    font-size: 22px;
}

.nf-account-panel h2 {
    margin: 0 0 9px;
    color: #172033;
    font-size: 19px;
    font-weight: 620;
    letter-spacing: -0.02em;
}

.nf-account-panel p {
    margin: 0;
    color: #6d778a;
    font-size: 13px;
    line-height: 1.65;
}

.nf-account-start a {
    display: inline-flex;
    margin-top: 18px;
    color: #5830e6;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.nf-account-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.nf-account-secure {
    padding: 5px 8px;
    border-radius: 999px;
    background: #ecf8f0;
    color: #187342;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-account-details {
    margin: 8px 0 0;
}

.nf-account-details > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f4;
}

.nf-account-details > div:last-child {
    border-bottom: 0;
}

.nf-account-details dt,
.nf-account-details dd {
    margin: 0;
    font-size: 12px;
}

.nf-account-details dt {
    color: #8a93a4;
}

.nf-account-details dd {
    overflow-wrap: anywhere;
    color: #344054;
    font-weight: 550;
}

@media (max-width: 960px) {
    .nf-account-shell {
        grid-template-columns: 205px minmax(0, 1fr);
    }

    .nf-account-main {
        padding: 32px 26px;
    }

    .nf-account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nf-account-page {
        padding: 24px 14px 60px;
    }

    .nf-account-shell {
        display: block;
        border-radius: 18px;
    }

    .nf-account-sidebar {
        min-height: auto;
        padding: 20px;
        border-right: 0;
        border-bottom: 1px solid #eceef4;
    }

    .nf-account-menu {
        display: flex;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .nf-account-menu > a,
    .nf-account-menu > span {
        flex: 0 0 auto;
    }

    .nf-account-menu .is-coming-soon,
    .nf-account-logout {
        display: none;
    }

    .nf-account-main {
        padding: 28px 20px;
    }

    .nf-account-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nf-account-hero {
        flex-direction: column;
        gap: 15px;
    }

    .nf-account-actions,
    .nf-account-primary,
    .nf-account-secondary {
        width: 100%;
    }

    .nf-account-start {
        display: block;
    }

    .nf-account-panel-icon {
        margin-bottom: 18px;
    }
}

/* =========================================================
   ACCOUNT-FIRST SAAS EXPERIENCE
========================================================= */

.nf-public-search-gate {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 44px;
    padding: 38px;
}

.nf-public-search-label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #eeeaff;
    color: #5b31e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-public-search-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.nf-public-search-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    background: #5a31e8;
    box-shadow: 0 10px 22px rgba(90, 49, 232, 0.18);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nf-public-search-cta:hover {
    background: #4721cb;
    color: #ffffff !important;
}

.nf-public-search-login {
    color: #5b31e8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nf-public-search-preview {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #ded7ff;
    border-radius: 16px;
    background: linear-gradient(145deg, #faf9ff, #f1edff);
}

.nf-public-search-preview > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
}

.nf-public-search-preview strong {
    min-width: 34px;
    color: #5730e4;
    font-size: 22px;
    font-weight: 650;
}

.nf-public-search-preview span {
    color: #606b7d;
    font-size: 12px;
}

.nf-account-workspace,
.nf-account-tools {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid #ebeef4;
    scroll-margin-top: 25px;
}

.nf-account-workspace-heading {
    margin-bottom: 18px;
}

.nf-account-workspace-heading h2 {
    margin: 0 0 7px;
    color: #172033;
    font-size: 24px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.nf-account-workspace-heading p {
    margin: 0;
    color: #707a8d;
    font-size: 13px;
}

.nf-account-workspace .nf-search-section,
.nf-account-workspace .nf-search-results-section {
    padding: 0;
    background: transparent;
}

.nf-account-workspace .nf-search-section .nf-container,
.nf-account-workspace .nf-search-results-section .nf-container {
    width: 100%;
    max-width: none;
}

.nf-account-workspace .nf-search-card {
    padding: 20px;
    border: 1px solid #e2e5ee;
    border-radius: 15px;
    background: #fbfbfe;
    box-shadow: none;
}

.nf-account-workspace .nf-search-form {
    margin-bottom: 12px;
}

.nf-account-workspace .nf-search-results-section {
    margin-top: 18px;
}

.nf-results-plan-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 18px;
    padding: 17px 19px;
    border: 1px solid #ded6ff;
    border-radius: 13px;
    background: #f7f5ff;
}

.nf-results-plan-message[hidden] {
    display: none;
}

.nf-results-plan-message span {
    display: block;
    margin-bottom: 5px;
    color: #5c34e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-results-plan-message p,
.nf-results-plan-message small {
    display: block;
    margin: 0;
}

.nf-results-plan-message p {
    color: #344054;
    font-size: 13px;
    line-height: 1.5;
}

.nf-results-plan-message small {
    margin-top: 4px;
    color: #778195;
    font-size: 11px;
}

.nf-results-plan-message > a,
.nf-search-error-action {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 9px;
    background: #5b32e9;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.nf-search-error-action {
    margin-top: 12px;
}

.nf-account-history {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.nf-account-history a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #e4e6ee;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.78);
    color: #344054;
    font-size: 12px;
    font-weight: 550;
    text-decoration: none;
}

.nf-account-history a:hover {
    border-color: #cfc4ff;
    color: #5830e5;
}

.nf-account-history small {
    color: #8a93a4;
    font-size: 10px;
    font-weight: 400;
}

.nf-account-tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.nf-account-tool-grid article {
    min-height: 168px;
    padding: 20px;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    background: #fbfbfd;
}

.nf-account-tool-grid article > span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #eef0f4;
    color: #7b8495;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nf-account-tool-grid article.is-live {
    border-color: #d7ceff;
    background: #f8f6ff;
}

.nf-account-tool-grid article.is-live > span {
    background: #e9e3ff;
    color: #5730e5;
}

.nf-account-tool-grid h3 {
    margin: 0 0 7px;
    color: #172033;
    font-size: 15px;
    font-weight: 620;
}

.nf-account-tool-grid p {
    margin: 0;
    color: #737d8e;
    font-size: 12px;
    line-height: 1.55;
}

.nf-account-tool-grid a {
    display: inline-flex;
    margin-top: 15px;
    color: #5931e6;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 760px) {
    .nf-public-search-gate {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 26px 22px;
    }

    .nf-results-plan-message {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf-account-tool-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nf-account-workspace .nf-search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .nf-account-workspace .nf-search-form button,
    .nf-results-plan-message > a {
        width: 100%;
    }
}

/* =========================================================
   PROFESSIONAL ACCOUNT NAVIGATION
========================================================= */

.nf-account-dropdown {
    position: relative;
}

.nf-account-dropdown-control {
    display: flex;
    align-items: stretch;
}

.nf-navbar .nf-account-main-link {
    border-radius: 11px 0 0 11px;
    border-right: 0;
}

.nf-account-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 44px;
    padding: 0;
    border: 1px solid #d9dff0;
    border-left: 0;
    border-radius: 0 11px 11px 0;
    background: #ffffff;
    color: #172033;
    font-size: 17px;
    cursor: pointer;
}

.nf-account-dropdown.is-open .nf-account-dropdown-toggle {
    background: #f3f0ff;
    color: #5730e5;
}

.nf-account-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 9999;
    width: 245px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #e1e4ec;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(23, 32, 51, 0.16);
}

.nf-account-dropdown-menu[hidden] {
    display: none;
}

.nf-account-dropdown-user {
    margin-bottom: 6px;
    padding: 10px 11px 13px;
    border-bottom: 1px solid #eceef3;
}

.nf-account-dropdown-user strong,
.nf-account-dropdown-user span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nf-account-dropdown-user strong {
    color: #111827;
    font-size: 13px;
    font-weight: 650;
}

.nf-account-dropdown-user span {
    margin-top: 3px;
    color: #344054;
    font-size: 12px;
}

.nf-account-dropdown-menu > a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 8px;
    color: #1f2937;
    font-size: 13px;
    font-weight: 550;
    text-decoration: none;
}

.nf-account-dropdown-menu > a:hover {
    background: #f3f0ff;
    color: #5730e5;
}

.nf-account-dropdown-menu > a.nf-account-dropdown-logout {
    margin-top: 6px;
    border-top: 1px solid #eceef3;
    border-radius: 0 0 8px 8px;
    color: #b4233f;
}

/* =========================================================
   ACCOUNT PAGES AND LIVE DATA
========================================================= */

.nf-account-section-heading {
    margin-bottom: 28px;
}

.nf-account-section-heading h1 {
    margin: 0 0 9px;
    color: #111827;
    font-size: clamp(30px, 4vw, 39px);
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.nf-account-section-heading p {
    margin: 0;
}

.nf-account-usage-bar {
    overflow: hidden;
    height: 5px;
    margin-top: 12px;
    border-radius: 999px;
    background: #eceef4;
}

.nf-account-usage-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6c47f5, #4d27dc);
    transition: width 0.3s ease;
}

.nf-account-inline-link {
    color: #5730e5;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.nf-account-settings-form {
    display: grid;
    gap: 16px;
}

.nf-account-form-card {
    padding: 24px;
    border: 1px solid #e3e6ed;
    border-radius: 15px;
    background: #ffffff;
}

.nf-account-form-heading {
    margin-bottom: 20px;
}

.nf-account-form-heading h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 18px;
    font-weight: 620;
}

.nf-account-form-heading p {
    margin: 0;
}

.nf-account-form-card .nf-auth-field small {
    display: block;
    margin-top: 6px;
}

.nf-account-form-card .nf-auth-field input:disabled {
    background: #f4f5f7;
    color: #344054;
}

.nf-account-save-settings {
    width: max-content;
    border: 0;
    cursor: pointer;
}

.nf-account-section-summary {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px solid #ddd6ff;
    border-radius: 11px;
    background: #f8f6ff;
}

.nf-account-section-summary strong {
    color: #5730e5;
    font-size: 22px;
    font-weight: 650;
}

.nf-account-section-summary span {
    color: #1f2937;
    font-size: 13px;
}

.nf-saved-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nf-saved-card {
    padding: 22px;
    border: 1px solid #e2e5ed;
    border-radius: 15px;
    background: #ffffff;
}

.nf-saved-card > span,
.nf-report-library article > div:first-child > span {
    color: #5b32e9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nf-saved-card h2,
.nf-report-library h2 {
    margin: 9px 0 15px;
    color: #111827;
    font-size: 17px;
    font-weight: 620;
    line-height: 1.35;
}

.nf-saved-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.nf-saved-card-meta span {
    color: #1f2937;
    font-size: 12px;
}

.nf-saved-card-meta strong {
    margin-left: 4px;
    color: #111827;
}

.nf-saved-card-actions,
.nf-live-result-actions,
.nf-report-account-actions,
.nf-report-library-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.nf-saved-card-actions a,
.nf-saved-card-actions button,
.nf-live-result-save,
.nf-report-account-actions a,
.nf-report-account-actions button,
.nf-report-library-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #d9ddec;
    border-radius: 9px;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.nf-saved-card-actions a,
.nf-report-library-actions a:first-child {
    border-color: #5b32e9;
    background: #5b32e9;
    color: #ffffff;
}

.nf-saved-card-actions button.is-saved,
.nf-live-result-save.is-saved,
.nf-report-action-save.is-saved {
    border-color: #c9e9d5;
    background: #f1fbf5;
    color: #187342;
}

.nf-live-result-actions {
    margin-top: auto;
}

.nf-live-result-actions .nf-live-result-button {
    flex: 1 1 145px;
    margin-top: 0;
}

.nf-live-result-save {
    flex: 0 0 auto;
}

.nf-account-empty-state {
    padding: 62px 25px;
    border: 1px dashed #d7dce7;
    border-radius: 16px;
    background: #fbfbfd;
    text-align: center;
}

.nf-account-empty-state > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    border-radius: 13px;
    background: #ebe6ff;
    color: #5730e5;
    font-size: 22px;
}

.nf-account-empty-state h2 {
    margin: 0 0 7px;
    color: #111827;
    font-size: 19px;
    font-weight: 620;
}

.nf-account-empty-state p {
    margin: 0 auto 20px;
    max-width: 460px;
}

.nf-report-library {
    display: grid;
    gap: 11px;
}

.nf-report-library article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid #e2e5ed;
    border-radius: 13px;
    background: #ffffff;
}

.nf-report-library h2 {
    margin: 6px 0 3px;
}

.nf-report-library p {
    margin: 0;
    font-size: 12px;
}

.nf-plan-usage-card,
.nf-billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 13px;
    margin-bottom: 20px;
}

.nf-plan-usage-card > div,
.nf-billing-grid article {
    padding: 18px;
    border: 1px solid #e2e5ed;
    border-radius: 13px;
    background: #ffffff;
}

.nf-plan-usage-card span,
.nf-plan-usage-card strong,
.nf-billing-grid span,
.nf-billing-grid strong {
    display: block;
}

.nf-plan-usage-card span,
.nf-billing-grid span {
    color: #1f2937;
    font-size: 12px;
}

.nf-plan-usage-card strong,
.nf-billing-grid strong {
    margin-top: 8px;
    color: #111827;
    font-size: 21px;
    font-weight: 620;
}

.nf-plan-usage-card strong [data-nf-saved-count] {
    display: inline;
    color: inherit;
    font-size: inherit;
}

.nf-billing-grid p {
    margin: 7px 0 0;
}

.nf-account-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.nf-account-plan-grid article {
    padding: 26px;
    border: 1px solid #dedfe7;
    border-radius: 17px;
    background: #ffffff;
}

.nf-account-plan-grid article.is-current {
    border-color: #bdb0ff;
    box-shadow: 0 14px 32px rgba(91, 50, 233, 0.09);
}

.nf-account-plan-grid article > span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eeeaff;
    color: #5730e5;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.nf-account-plan-grid h2 {
    margin: 18px 0 8px;
    color: #111827;
    font-size: 22px;
    font-weight: 620;
}

.nf-account-plan-grid article > strong {
    color: #111827;
    font-size: 30px;
    font-weight: 650;
}

.nf-account-plan-grid article > strong small {
    font-size: 12px;
    font-weight: 500;
}

.nf-account-plan-grid ul {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.nf-account-plan-grid li {
    color: #1f2937;
    font-size: 13px;
}

.nf-account-plan-grid li::before {
    margin-right: 8px;
    color: #5730e5;
    content: "✓";
    font-weight: 700;
}

.nf-account-plan-grid button {
    width: 100%;
    min-height: 43px;
    border: 0;
    border-radius: 10px;
    background: #eceef3;
    color: #344054;
    font-family: inherit;
    font-weight: 600;
}

.nf-account-billing-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 20px 22px;
    border: 1px solid #e2e5ed;
    border-radius: 14px;
    background: #ffffff;
}

.nf-account-billing-link h2 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 17px;
    font-weight: 620;
}

.nf-account-billing-link p {
    margin: 0;
}

.nf-account-billing-link a {
    color: #5730e5;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.nf-account-empty-row {
    padding: 25px;
    border-radius: 10px;
    background: #f5f6f8;
    color: #344054;
    font-size: 13px;
    text-align: center;
}

.nf-billing-history {
    overflow: hidden;
    border: 1px solid #e2e5ed;
    border-radius: 12px;
}

.nf-billing-history-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr 0.8fr;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-top: 1px solid #eceef2;
    color: #111827;
    font-size: 12px;
}

.nf-billing-history-row:first-child {
    border-top: 0;
}

.nf-billing-history-row.is-heading {
    background: #f5f6f8;
    color: #344054;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-billing-history-row a {
    color: #5730e5;
    font-weight: 650;
    text-decoration: none;
}

.nf-billing-status {
    justify-self: start;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef0f4;
    font-weight: 700;
}

.nf-billing-status.is-completed {
    background: #ecfdf3;
    color: #176b3a;
}

@media (max-width: 700px) {
    .nf-billing-history-row {
        grid-template-columns: 1fr 1fr;
    }

    .nf-billing-history-row.is-heading {
        display: none;
    }
}

.nf-report-account-actions {
    justify-content: flex-end;
    margin: -38px 0 20px auto;
}

.nf-account-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100000;
    max-width: 360px;
    padding: 13px 17px;
    border-radius: 11px;
    background: #172033;
    box-shadow: 0 15px 38px rgba(17, 24, 39, 0.22);
    color: #ffffff;
    font-size: 13px;
    font-weight: 550;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nf-account-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nf-account-toast.is-error {
    background: #b4233f;
}

.nf-account-toast.is-success {
    background: #187342;
}

/* Darker, slightly larger supporting text */

.nf-home p,
.nf-auth-page p,
.nf-account-page p,
.nf-report-page p {
    color: #1f2937;
    font-size: 15px;
}

.nf-account-page small,
.nf-report-page small,
.nf-account-page dt,
.nf-account-page dd,
.nf-account-page .nf-account-user div > span,
.nf-account-page .nf-account-stats span,
.nf-account-page .nf-account-stats small,
.nf-account-page .nf-account-details dt,
.nf-account-page .nf-account-details dd {
    color: #344054;
    font-size: 12.5px;
}

.nf-account-page .nf-account-menu > a,
.nf-account-page .nf-account-menu > span {
    color: #1f2937;
    font-size: 14px;
}

.nf-account-page .nf-account-hero p,
.nf-account-page .nf-account-workspace-heading p,
.nf-account-page .nf-account-panel p,
.nf-report-page .nf-data-snapshot-heading p {
    color: #1f2937;
}

@media (max-width: 850px) {
    .nf-saved-grid,
    .nf-account-plan-grid {
        grid-template-columns: 1fr;
    }

    .nf-report-library article,
    .nf-account-billing-link {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .nf-account-dropdown-menu {
        right: auto;
        left: 0;
    }

    .nf-plan-usage-card,
    .nf-billing-grid {
        grid-template-columns: 1fr;
    }

    .nf-report-account-actions {
        justify-content: flex-start;
        margin: 12px 0 20px;
    }
}

@media print {
    .nf-navbar,
    .nf-report-back,
    .nf-report-account-actions,
    .nf-report-lock,
    .nf-upgrade-modal,
    footer {
        display: none !important;
    }

    .nf-report-page {
        padding: 0 !important;
        background: #ffffff !important;
    }

    .nf-report-page .nf-container {
        width: 100% !important;
        max-width: none !important;
    }
}

/* =========================================================
   ACCOUNT ACTION CONSISTENCY
   Final high-specificity rules protect SaaS controls from
   theme-level button and link color overrides.
========================================================= */

.nf-auth-shell-compact {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    width: min(980px, 100%);
}

.nf-auth-alert-success {
    border-color: #b9e5cc;
    background: #f1fbf5;
    color: #176b3a;
}

.nf-auth-page a.nf-auth-submit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 180px;
    padding: 0 22px;
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff;
}

.nf-account-page .nf-account-primary,
.nf-account-page button.nf-account-primary,
.nf-account-page button.nf-account-save-settings,
.nf-account-page button.nf-account-subscription-button,
.nf-account-page .nf-subscription-inline-actions button,
.nf-account-page .nf-billing-renewal-form button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: max-content !important;
    min-width: 0 !important;
    min-height: 44px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    outline: 0 !important;
    background: linear-gradient(135deg, #6845ff 0%, #4b28e8 100%) !important;
    box-shadow: 0 10px 22px rgba(91, 49, 244, 0.20) !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff !important;
    cursor: pointer;
}

.nf-account-page .nf-account-primary:hover,
.nf-account-page button.nf-account-primary:hover,
.nf-account-page button.nf-account-save-settings:hover,
.nf-account-page button.nf-account-subscription-button:hover,
.nf-account-page .nf-subscription-inline-actions button:hover,
.nf-account-page .nf-billing-renewal-form button:hover {
    border-color: transparent !important;
    background: linear-gradient(135deg, #5b35f2 0%, #3e20ca 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: translateY(-1px);
}

.nf-account-page button.nf-account-subscription-button:disabled {
    background: #d9dce5 !important;
    box-shadow: none !important;
    color: #4b5563 !important;
    -webkit-text-fill-color: #4b5563 !important;
    cursor: not-allowed;
    transform: none;
}

.nf-account-page .nf-account-secondary,
.nf-account-page a.nf-account-secondary {
    border: 1px solid #d9d1ff !important;
    background: #ffffff !important;
    color: #4b28e8 !important;
    -webkit-text-fill-color: #4b28e8 !important;
}

.nf-account-page .nf-account-secondary:hover,
.nf-account-page a.nf-account-secondary:hover {
    border-color: #5b31f4 !important;
    background: #f3f0ff !important;
    color: #3e20ca !important;
    -webkit-text-fill-color: #3e20ca !important;
}

.nf-subscription-inline-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.nf-subscription-inline-actions form,
.nf-billing-renewal-form,
.nf-billing-management-card form {
    margin: 0;
}

.nf-billing-renewal-form {
    margin-top: 14px;
}

.nf-billing-management-card {
    margin-top: 16px;
}

@media (max-width: 700px) {
    .nf-auth-shell-compact {
        grid-template-columns: 1fr;
    }

    .nf-subscription-inline-actions,
    .nf-account-billing-link {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   LEGAL, CONTACT & SUPPORT READINESS — v1.9.0
========================================================= */

.nf-public-page,
.nf-public-page *,
.nf-support-widget,
.nf-support-widget * {
    box-sizing: border-box;
}

.nf-public-page {
    min-height: 70vh;
    padding: 62px 0 90px;
    background: #f7f8fc;
    color: #111827;
    font-family: Arial, sans-serif;
}

.nf-policy-shell,
.nf-contact-shell {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.nf-policy-shell {
    padding: 48px clamp(24px, 5vw, 70px) 60px;
    border: 1px solid #e2e5ef;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(16, 24, 40, 0.07);
}

.nf-policy-hero {
    margin-bottom: 34px;
}

.nf-policy-hero > span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #5b32f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-policy-hero h1 {
    margin: 0 0 12px;
    color: #101828;
    font-size: clamp(34px, 6vw, 52px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.nf-policy-hero p {
    max-width: 720px;
    margin: 0;
    color: #344054;
    font-size: 15px;
    line-height: 1.65;
}

.nf-policy-notice {
    margin: 0 0 28px;
    padding: 15px 17px;
    border: 1px solid #f1cf87;
    border-radius: 12px;
    background: #fff9eb;
    color: #6a4300;
    font-size: 14px;
    line-height: 1.6;
}

.nf-policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8eaf0;
}

.nf-policy-nav a,
.nf-contact-policy-links a {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 8px;
    background: #f0edff;
    color: #5730e5;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.nf-policy-shell section {
    scroll-margin-top: 90px;
}

.nf-policy-shell section + section {
    margin-top: 34px;
}

.nf-policy-shell h2,
.nf-contact-shell h2 {
    margin: 0 0 11px;
    color: #101828;
    font-size: 22px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.nf-policy-shell p,
.nf-policy-shell li,
.nf-contact-shell p {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.78;
}

.nf-policy-shell p {
    margin: 0 0 12px;
}

.nf-policy-shell ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 23px;
}

.nf-policy-shell a,
.nf-contact-shell a {
    color: #5730e5;
}

.nf-contact-shell > .nf-policy-hero {
    margin-bottom: 32px;
    text-align: center;
}

.nf-contact-shell > .nf-policy-hero p {
    margin-left: auto;
    margin-right: auto;
}

.nf-contact-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.5fr;
    gap: 20px;
    align-items: start;
}

.nf-contact-sidebar,
.nf-contact-form-card,
.nf-contact-faq {
    border: 1px solid #e2e5ef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
}

.nf-contact-sidebar {
    padding: 24px;
}

.nf-contact-sidebar article + article {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eceef3;
}

.nf-contact-sidebar article > span {
    display: block;
    margin-bottom: 6px;
    color: #5730e5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-contact-sidebar article > strong {
    display: block;
    color: #111827;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.nf-contact-sidebar article p {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.6;
}

.nf-contact-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.nf-contact-form-card {
    padding: 32px;
}

.nf-contact-form-card > p {
    margin: -4px 0 24px;
    font-size: 14px;
}

.nf-support-ticket-form {
    display: grid;
    gap: 13px;
}

.nf-support-ticket-form[hidden],
.nf-support-panel[hidden] {
    display: none !important;
}

.nf-support-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.nf-support-ticket-form label {
    display: grid;
    gap: 6px;
}

.nf-support-ticket-form label > span {
    color: #1f2937;
    font-size: 11px;
    font-weight: 700;
}

.nf-support-ticket-form input,
.nf-support-ticket-form select,
.nf-support-ticket-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 11px;
    border: 1px solid #d8dce6;
    border-radius: 9px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-size: 13px;
}

.nf-support-ticket-form textarea {
    resize: vertical;
    line-height: 1.5;
}

.nf-support-ticket-form input:focus,
.nf-support-ticket-form select:focus,
.nf-support-ticket-form textarea:focus {
    border-color: #6b4af5;
    outline: 3px solid rgba(91, 50, 242, 0.12);
}

.nf-support-ticket-form .nf-support-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.nf-support-consent input {
    width: 16px;
    min-height: 16px;
    margin-top: 2px;
}

.nf-support-consent span {
    font-weight: 500 !important;
    line-height: 1.45;
}

.nf-support-submit {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #5b32f2;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.nf-support-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.nf-support-form-status {
    min-height: 0;
    color: #344054;
    font-size: 12px;
    line-height: 1.5;
}

.nf-support-form-status.is-success,
.nf-support-form-status.is-error {
    padding: 10px 11px;
    border-radius: 8px;
}

.nf-support-form-status.is-success {
    background: #ecfdf3;
    color: #176b3a;
}

.nf-support-form-status.is-error {
    background: #fff1f3;
    color: #b4233f;
}

.nf-support-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.nf-contact-faq {
    margin-top: 20px;
    padding: 30px;
}

.nf-contact-faq details {
    padding: 14px 0;
    border-top: 1px solid #e8eaf0;
}

.nf-contact-faq summary {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.nf-contact-faq details p {
    margin: 10px 0 0;
    font-size: 13px;
}

.nf-support-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

.nf-support-launcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #5b32f2;
    box-shadow: 0 14px 30px rgba(91, 50, 242, 0.32);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.nf-support-launcher span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.nf-support-panel {
    position: absolute;
    right: 0;
    bottom: 58px;
    width: min(390px, calc(100vw - 28px));
    max-height: min(680px, calc(100vh - 100px));
    overflow-y: auto;
    border: 1px solid #dedfeb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(16, 24, 40, 0.22);
}

.nf-support-panel > header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 17px;
    border-bottom: 1px solid #e8eaf0;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
}

.nf-support-panel > header strong,
.nf-support-panel > header span {
    display: block;
}

.nf-support-panel > header strong {
    color: #111827;
    font-size: 14px;
}

.nf-support-panel > header span {
    margin-top: 2px;
    color: #475467;
    font-size: 10px;
}

.nf-support-panel > header button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: #f2f3f7;
    color: #344054;
    font-size: 20px;
    cursor: pointer;
}

.nf-support-conversation {
    display: grid;
    gap: 9px;
    max-height: 220px;
    overflow-y: auto;
    padding: 16px;
    background: #fafaff;
}

.nf-support-message {
    max-width: 88%;
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.48;
}

.nf-support-message.is-bot {
    justify-self: start;
    border: 1px solid #e1ddfb;
    border-bottom-left-radius: 4px;
    background: #ffffff;
    color: #1f2937;
}

.nf-support-message.is-user {
    justify-self: end;
    border-bottom-right-radius: 4px;
    background: #5b32f2;
    color: #ffffff;
}

.nf-support-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 11px 14px 5px;
}

.nf-support-quick-actions button,
.nf-support-ticket-toggle {
    border: 1px solid #dcd7fb;
    border-radius: 999px;
    background: #f8f6ff;
    color: #5730e5;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.nf-support-quick-actions button {
    padding: 6px 9px;
}

.nf-support-chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    padding: 8px 14px 12px;
}

.nf-support-chat-form input {
    min-width: 0;
    height: 40px;
    padding: 0 11px;
    border: 1px solid #d8dce6;
    border-radius: 9px;
    color: #111827;
    font-size: 12px;
}

.nf-support-chat-form button {
    min-width: 58px;
    border: 0;
    border-radius: 9px;
    background: #5b32f2;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.nf-support-ticket-toggle {
    margin: 0 14px 13px;
    padding: 8px 11px;
}

.nf-support-panel .nf-support-ticket-form {
    margin: 0 14px 15px;
    padding: 13px;
    border: 1px solid #e2e5ed;
    border-radius: 12px;
    background: #fbfbfd;
}

@media (max-width: 760px) {
    .nf-public-page {
        padding: 34px 0 60px;
    }

    .nf-policy-shell,
    .nf-contact-shell {
        width: min(100% - 24px, 980px);
    }

    .nf-policy-shell {
        padding: 30px 20px 42px;
        border-radius: 18px;
    }

    .nf-contact-grid,
    .nf-support-form-grid {
        grid-template-columns: 1fr;
    }

    .nf-contact-form-card,
    .nf-contact-sidebar,
    .nf-contact-faq {
        padding: 22px;
    }

    .nf-support-widget {
        right: 12px;
        bottom: 12px;
    }

    .nf-support-panel {
        position: fixed;
        right: 12px;
        bottom: 70px;
        left: 12px;
        width: auto;
        max-height: calc(100vh - 90px);
    }
}

/* =========================================================
   RESEARCH CREDITS — v1.8.0
========================================================= */

.nf-search-credit-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 18px;
    margin-top: 12px;
    padding: 10px 13px;
    border: 1px solid #e3defe;
    border-radius: 10px;
    background: #faf9ff;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.45;
}

.nf-search-credit-line strong {
    color: #5730e5;
    font-size: 13px;
}

.nf-credit-reset {
    display: block;
    margin-top: 7px;
    color: #344054;
    font-size: 11px;
}

.nf-credit-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 4px;
    padding: 13px 15px;
    border: 1px solid #d9d1ff;
    border-radius: 11px;
    background: #f8f6ff;
    color: #1f2937;
    font-size: 12px;
}

.nf-credit-notice[hidden] {
    display: none;
}

.nf-credit-notice.is-low {
    border-color: #f0cf8a;
    background: #fffaf0;
}

.nf-credit-notice a {
    flex: 0 0 auto;
    color: #5730e5;
    font-weight: 650;
    text-decoration: none;
}

.nf-credit-usage-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nf-credit-usage-card small {
    display: block;
    margin-top: 5px;
    color: #475467;
    font-size: 11px;
}

.nf-credit-reset-value {
    font-size: 17px !important;
}

.nf-credit-ledger-card {
    margin-top: 20px;
}

.nf-credit-ledger {
    overflow: hidden;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
}

.nf-credit-ledger > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 15px;
    background: #ffffff;
}

.nf-credit-ledger > div + div {
    border-top: 1px solid #eceef3;
}

.nf-credit-ledger > div > span {
    display: grid;
    gap: 3px;
}

.nf-credit-ledger strong {
    color: #111827;
    font-size: 12px;
    font-weight: 620;
}

.nf-credit-ledger small {
    color: #475467;
    font-size: 10px;
}

.nf-credit-ledger .is-credit,
.nf-credit-ledger .is-debit {
    min-width: 74px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
}

.nf-credit-ledger .is-credit {
    color: #187342;
}

.nf-credit-ledger .is-debit {
    color: #b4233f;
}

.nf-credit-ledger .is-credit small,
.nf-credit-ledger .is-debit small {
    color: #475467;
    font-weight: 500;
}

@media (max-width: 900px) {
    .nf-credit-usage-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nf-credit-usage-card {
        grid-template-columns: 1fr;
    }

    .nf-credit-notice,
    .nf-search-credit-line {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   Premium report v1
========================================================= */

.nf-premium-report {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.nf-premium-report-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #2d1578 0%, #5930f5 60%, #7447ff 100%);
    box-shadow: 0 24px 55px rgba(64, 35, 180, 0.22);
}

.nf-premium-report-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.nf-premium-report-hero > * {
    position: relative;
    z-index: 1;
}

.nf-premium-report-badge {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-premium-report-hero h2 {
    margin: 15px 0 8px;
    color: #ffffff;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.08;
}

.nf-premium-report-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.7;
}

.nf-premium-report-score {
    min-width: 150px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.nf-premium-report-score span,
.nf-premium-report-score small {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.nf-premium-report-score strong {
    display: block;
    margin: 4px 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1;
}

.nf-premium-report-nav {
    position: sticky;
    top: 12px;
    z-index: 10;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    border: 1px solid #e3defe;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(30, 18, 80, 0.08);
    scrollbar-width: thin;
}

.nf-premium-report-nav a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 9px;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.nf-premium-report-nav a:hover {
    color: #4f2df2;
    background: #f0edff;
}

.nf-premium-section {
    scroll-margin-top: 90px;
    padding: 30px;
    border: 1px solid #e4dfff;
    border-radius: 21px;
    color: #101828;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(33, 20, 93, 0.06);
}

.nf-premium-section-heading {
    margin-bottom: 22px;
}

.nf-premium-section-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #5b35f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-premium-section-heading h2 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 27px;
    line-height: 1.2;
}

.nf-premium-section-heading p {
    max-width: 850px;
    margin: 0;
    color: #344054 !important;
    font-size: 14px;
    line-height: 1.65;
}

.nf-premium-metric-grid,
.nf-premium-signal-grid,
.nf-premium-cluster-grid,
.nf-premium-strategy-grid,
.nf-premium-faq-grid,
.nf-premium-action-grid,
.nf-premium-two-column,
.nf-premium-link-grid {
    display: grid;
    gap: 14px;
}

.nf-premium-metric-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nf-premium-metric-grid-three,
.nf-premium-cluster-grid,
.nf-premium-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nf-premium-metric-grid-two,
.nf-premium-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nf-premium-metric-grid article,
.nf-premium-signal-grid article,
.nf-premium-cluster-grid > article,
.nf-premium-strategy-grid > article,
.nf-premium-two-column > article,
.nf-premium-action-grid > article {
    min-width: 0;
    padding: 18px;
    border: 1px solid #e9e5ff;
    border-radius: 15px;
    background: #faf9ff;
}

.nf-premium-metric-grid article > span,
.nf-premium-signal-grid article > span,
.nf-premium-strategy-grid article > span {
    display: block;
    margin-bottom: 8px;
    color: #5b35f5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-premium-metric-grid article > strong,
.nf-premium-signal-grid article > strong {
    display: block;
    overflow-wrap: anywhere;
    color: #101828;
    font-size: 18px;
    line-height: 1.3;
}

.nf-premium-signal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nf-premium-signal-grid article > small {
    display: block;
    margin-top: 8px;
    color: #344054;
    font-size: 11px;
    line-height: 1.5;
}

.nf-premium-callout,
.nf-premium-research-note,
.nf-premium-inline-list,
.nf-premium-cluster-total {
    margin-top: 15px;
    padding: 18px 20px;
    border-radius: 14px;
}

.nf-premium-callout {
    border-left: 4px solid #5b35f5;
    background: #f5f3ff;
}

.nf-premium-callout > span,
.nf-premium-inline-list > strong {
    display: block;
    margin-bottom: 7px;
    color: #5b35f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-premium-callout p,
.nf-premium-strategy-grid p,
.nf-premium-two-column p {
    margin: 0;
    color: #101828 !important;
    font-size: 14px;
    line-height: 1.7;
}

.nf-premium-research-note {
    border: 1px solid #f1d7a3;
    color: #5f3b00;
    font-size: 13px;
    line-height: 1.6;
    background: #fff9ed;
}

.nf-premium-inline-list {
    border: 1px solid #e9e5ff;
    background: #ffffff;
}

.nf-premium-inline-list > div,
.nf-premium-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nf-premium-inline-list > div span,
.nf-premium-tags span,
.nf-premium-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    color: #3f22bd;
    font-size: 11px;
    font-weight: 700;
    background: #eeeaff;
}

.nf-premium-tags .is-research-required {
    color: #7a4c00;
    background: #fff2d7;
}

.nf-premium-table-wrap {
    overflow-x: auto;
    border: 1px solid #e4dfff;
    border-radius: 14px;
}

.nf-premium-table {
    width: 100%;
    min-width: 670px;
    border-collapse: collapse;
    color: #101828;
    font-size: 13px;
}

.nf-premium-table th,
.nf-premium-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #ebe7ff;
    text-align: left;
    vertical-align: top;
}

.nf-premium-table th {
    color: #4338a2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #f5f3ff;
}

.nf-premium-table tbody tr:last-child td {
    border-bottom: 0;
}

.nf-premium-cluster-grid h3,
.nf-premium-two-column h3 {
    margin: 0 0 6px;
    color: #101828;
    font-size: 17px;
}

.nf-premium-cluster-grid article > small {
    display: block;
    margin-bottom: 14px;
    color: #344054;
    font-size: 11px;
}

.nf-premium-two-column ul,
.nf-premium-two-column ol,
.nf-premium-action-grid ul {
    display: grid;
    gap: 9px;
    margin: 12px 0 0;
    padding-left: 19px;
    color: #101828;
    font-size: 13px;
    line-height: 1.55;
}

.nf-premium-strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nf-premium-cluster-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #3f21bf, #6a3dff);
}

.nf-premium-cluster-total span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.nf-premium-cluster-total strong {
    color: #ffffff;
    font-size: 20px;
}

.nf-premium-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nf-premium-faq-grid article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e9e5ff;
    border-radius: 13px;
    background: #faf9ff;
}

.nf-premium-faq-grid article > span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: #5630ed;
    font-size: 11px;
    font-weight: 800;
    background: #ebe7ff;
}

.nf-premium-faq-grid p {
    margin: 4px 0 0;
    color: #101828 !important;
    font-size: 13px;
    line-height: 1.5;
}

.nf-premium-link-plan {
    text-align: center;
}

.nf-premium-link-plan .is-pillar {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    max-width: 720px;
    padding: 18px 28px;
    border-radius: 14px;
    color: #ffffff;
    background: #5930f5;
}

.nf-premium-link-plan .is-pillar span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.nf-premium-link-plan .is-pillar strong {
    color: #ffffff;
    font-size: 16px;
}

.nf-premium-link-arrow {
    margin: 8px 0;
    color: #5930f5;
    font-size: 24px;
    font-weight: 800;
}

.nf-premium-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nf-premium-link-grid article {
    padding: 13px;
    border: 1px solid #e9e5ff;
    border-radius: 12px;
    color: #101828;
    font-size: 12px;
    line-height: 1.45;
    background: #faf9ff;
}

.nf-premium-action-grid > article > span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    background: #5930f5;
}

.nf-premium-export {
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, #26106f 0%, #4f27da 100%);
}

.nf-premium-export .nf-premium-section-heading > span,
.nf-premium-export .nf-premium-section-heading h2 {
    color: #ffffff;
}

.nf-premium-export .nf-premium-section-heading p,
.nf-premium-export > small {
    color: rgba(255, 255, 255, 0.86) !important;
}

.nf-premium-export-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.nf-premium-export-actions a,
.nf-premium-export-actions button {
    min-height: 44px;
    padding: 12px 17px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    color: #32138f;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: #ffffff;
}

.nf-premium-export-actions a:hover,
.nf-premium-export-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(16, 5, 56, 0.2);
}

@media (max-width: 1050px) {
    .nf-premium-signal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nf-premium-metric-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .nf-premium-report-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .nf-premium-report-score {
        width: 100%;
    }

    .nf-premium-section {
        padding: 22px;
    }

    .nf-premium-metric-grid-three,
    .nf-premium-signal-grid,
    .nf-premium-cluster-grid,
    .nf-premium-action-grid,
    .nf-premium-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .nf-premium-section-heading h2 {
        font-size: 23px;
    }

    .nf-premium-metric-grid-four,
    .nf-premium-metric-grid-three,
    .nf-premium-metric-grid-two,
    .nf-premium-signal-grid,
    .nf-premium-cluster-grid,
    .nf-premium-strategy-grid,
    .nf-premium-faq-grid,
    .nf-premium-action-grid,
    .nf-premium-two-column,
    .nf-premium-link-grid {
        grid-template-columns: 1fr;
    }

    .nf-premium-cluster-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf-premium-export-actions {
        flex-direction: column;
    }

    .nf-premium-export-actions a,
    .nf-premium-export-actions button {
        width: 100%;
        text-align: center;
    }
}

@media print {
    .nf-premium-report-nav {
        display: none !important;
    }

    .nf-premium-report,
    .nf-premium-section {
        box-shadow: none !important;
    }

    .nf-premium-section,
    .nf-premium-report-hero {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .nf-premium-export-actions {
        display: none !important;
    }
}

/* =========================================================
   Report value split and premium chapters — v1.7
========================================================= */

.nf-report-page .nf-container {
    width: min(100%, 1280px);
    max-width: 1280px;
}

.nf-quick-verdict-section,
.nf-data-snapshot-section,
.nf-content-ideas-section,
.nf-related-niches-section,
.nf-premium-preview-section {
    margin: 28px 0;
}

.nf-quick-verdict-section {
    padding: 34px;
    border: 1px solid #e2dcff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(65, 30, 130, 0.07);
}

.nf-report-section-heading {
    margin-bottom: 22px;
}

.nf-report-section-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #5b35f5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-report-section-heading h2 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 30px;
    line-height: 1.2;
}

.nf-report-section-heading p {
    max-width: 820px;
    margin: 0;
    color: #1f2937 !important;
    line-height: 1.65;
}

.nf-quick-verdict-section .nf-report-stats {
    margin: 0;
}

.nf-quick-verdict-section .nf-report-stat {
    background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
}

.nf-free-verdict-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid #ded6ff;
    border-radius: 16px;
    background: #f6f3ff;
}

.nf-free-verdict-callout > div > span,
.nf-free-trend-insight > span,
.nf-contextual-upgrade span {
    display: block;
    margin-bottom: 6px;
    color: #5b35f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nf-free-verdict-callout p,
.nf-free-trend-insight p {
    margin: 0;
    color: #101828 !important;
    font-size: 15px;
    line-height: 1.65;
}

.nf-free-verdict-callout button,
.nf-contextual-upgrade button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 16px;
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    background: #5b35f5;
    box-shadow: 0 9px 20px rgba(91, 53, 245, 0.18);
}

.nf-data-snapshot-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nf-data-snapshot-card small {
    display: block;
    margin-top: 8px;
    color: #344054;
    font-size: 12px;
    line-height: 1.5;
}

.nf-free-trend-insight {
    margin: 16px 0;
    padding: 19px 20px;
    border-left: 4px solid #5b35f5;
    border-radius: 13px;
    background: #f6f3ff;
}

.nf-contextual-upgrade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ded6ff;
    border-radius: 15px;
    background: linear-gradient(110deg, #f7f4ff 0%, #ffffff 100%);
}

.nf-contextual-upgrade strong {
    display: block;
    max-width: 720px;
    color: #101828;
    font-size: 15px;
    line-height: 1.55;
}

.nf-report-ad {
    overflow: hidden;
    margin: 28px 0;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
}

.nf-report-ad > span {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.nf-premium-preview-card {
    appearance: none;
    width: 100%;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.nf-premium-preview-card:hover {
    transform: translateY(-3px);
    border-color: #6a3dff;
    box-shadow: 0 14px 28px rgba(75, 42, 190, 0.12);
}

.nf-premium-preview-prompt {
    display: block;
    margin: -2px 0 9px;
    color: #5b35f5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-premium-report-progress {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 7px;
}

.nf-premium-report-progress span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.1);
}

.nf-premium-chapter {
    scroll-margin-top: 90px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 3px;
}

.nf-premium-chapter > span {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 9px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #5b35f5;
}

.nf-premium-chapter > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nf-premium-chapter strong {
    color: #101828;
    font-size: 19px;
}

.nf-premium-chapter small {
    color: #344054;
    font-size: 12px;
}

.nf-premium-guidance {
    margin-top: 15px;
    padding: 18px 20px;
    border: 1px solid #d9e5ff;
    border-radius: 14px;
    background: #f5f8ff;
}

.nf-premium-guidance strong {
    display: block;
    margin-bottom: 6px;
    color: #2949a3;
    font-size: 12px;
}

.nf-premium-guidance p {
    margin: 0;
    color: #101828 !important;
    font-size: 14px;
    line-height: 1.65;
}

.nf-premium-revenue-model {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #30128f 0%, #6338f4 100%);
}

.nf-premium-revenue-model span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-premium-revenue-model strong {
    color: #ffffff;
    font-size: 22px;
    text-align: right;
}

.nf-premium-revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 15px;
}

.nf-premium-revenue-grid article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    border: 1px solid #e9e5ff;
    border-radius: 14px;
    background: #faf9ff;
}

.nf-premium-revenue-grid span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: #5b35f5;
    font-size: 10px;
    font-weight: 800;
    background: #ece8ff;
}

.nf-premium-revenue-grid strong {
    color: #101828;
    font-size: 14px;
    line-height: 1.45;
}

.nf-premium-subheading {
    margin: 30px 0 15px;
    padding-top: 26px;
    border-top: 1px solid #e9e5ff;
}

.nf-premium-subheading span {
    color: #5b35f5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nf-premium-subheading h3 {
    margin: 5px 0 0;
    color: #101828;
    font-size: 21px;
}

@media (max-width: 900px) {
    .nf-free-verdict-callout,
    .nf-contextual-upgrade {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf-premium-report-progress {
        grid-template-columns: repeat(3, auto);
    }

    .nf-premium-revenue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .nf-quick-verdict-section {
        padding: 23px 18px;
        border-radius: 18px;
    }

    .nf-report-section-heading h2 {
        font-size: 24px;
    }

    .nf-data-snapshot-grid-three,
    .nf-premium-revenue-grid {
        grid-template-columns: 1fr;
    }

    .nf-premium-report-progress {
        grid-template-columns: repeat(2, auto);
    }

    .nf-premium-chapter,
    .nf-premium-revenue-model {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf-premium-revenue-model strong {
        text-align: left;
    }
}

@media print {
    .nf-report-ad,
    .nf-contextual-upgrade,
    .nf-premium-report-progress {
        display: none !important;
    }
}