/* ══════════════════════════════════════════
   n9.site.css — Nordic 9 Homepage Redesign
   ══════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
    --n9-navy: #1a1f3d;
    --n9-navy-light: #252b4d;
    --n9-red: #e4003a;
    --n9-red-hover: #c70033;
    --n9-grey-50: #f8f9fb;
    --n9-grey-100: #f0f1f5;
    --n9-grey-200: #e2e4ea;
    --n9-grey-400: #9498a8;
    --n9-grey-600: #5c6070;
    --n9-grey-800: #2d3142;
    --n9-white: #ffffff;
    --n9-accent-blue: #4a7cff;
    --n9-accent-green: #22c67e;
    --n9-accent-purple: #7c5cfc;
}

/* ── BASE ── */
body {
    font-family: 'Inter', sans-serif;
    color: var(--n9-grey-800);
    background: var(--n9-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /*font-size: 0.9rem;*/
}

/* ── LOADING OVERLAY ── */
.n9-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .n9-loading-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.n9-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--n9-grey-200);
    border-top: 4px solid var(--n9-red);
    border-radius: 50%;
    animation: n9-spin 0.8s linear infinite;
}

@keyframes n9-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── NAV ── */
.n9-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--n9-grey-200);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}

.n9-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .n9-nav-brand img {
        height: 28px;
        width: auto;
    }

.n9-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .n9-nav-links > li > a {
        text-decoration: none;
        color: var(--n9-grey-600);
        font-size: 14px;
        font-weight: 500;
        transition: color 0.15s;
    }

        .n9-nav-links > li > a:hover {
            color: var(--n9-navy);
        }

.n9-nav-cta {
    background: var(--n9-navy);
    color: var(--n9-white) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background 0.15s;
}

    .n9-nav-cta:hover {
        background: var(--n9-navy-light);
    }

/* ── NAV DROPDOWNS ── */
.n9-nav-dropdown {
    position: relative;
    list-style: none;
}

.n9-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    background: var(--n9-white);
    border: 1px solid var(--n9-grey-200);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 150;
    list-style: none;
}

    .n9-nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
    }

.n9-nav-dropdown:hover .n9-nav-dropdown-menu {
    display: block;
}

.n9-nav-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--n9-grey-600);
    text-decoration: none;
    transition: all 0.12s;
}

    .n9-nav-dropdown-menu a:hover {
        background: var(--n9-grey-50);
        color: var(--n9-navy);
    }

.menu-icon-container {
    width: 18px;
}

/* ── NAV RIGHT (search + user) ── */
.n9-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 8px;
}

    /* Theme replacement styles for .navbar-tool* classes (not loaded from theme.css) */
    .n9-nav-right .navbar-tool {
        position: relative;
    }

    .n9-nav-right .navbar-tool-icon-box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: var(--n9-grey-600);
        text-decoration: none;
        font-size: 18px;
        transition: color 0.15s;
    }

        .n9-nav-right .navbar-tool-icon-box:hover {
            color: var(--n9-navy);
        }

    .n9-nav-right .navbar-tool-label {
        display: inline-flex;
        align-items: center;
        color: var(--n9-grey-600);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.15s;
    }

        .n9-nav-right .navbar-tool-label:hover {
            color: var(--n9-navy);
        }

        .n9-nav-right .navbar-tool-label small {
            margin-right: 4px;
            color: var(--n9-grey-400);
        }

    .n9-nav-right .dropdown-toggle::after {
        margin-left: 4px;
    }

    .n9-nav-right .dropdown {
        position: relative;
    }

        .n9-nav-right .dropdown:hover > .dropdown-menu {
            display: block;
            margin-top: 2px;
            right: 0;
            left: auto;
        }

/* ── NAV SEARCH COLLAPSE ── */
.n9-nav-search {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--n9-white);
    border-bottom: 1px solid var(--n9-grey-200);
    z-index: 200;
    display: none;
    align-items: center;
    padding: 0 48px;
    gap: 12px;
}

    .n9-nav-search.show {
        display: flex;
    }

    .n9-nav-search input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        color: var(--n9-grey-800);
        background: transparent;
    }

        .n9-nav-search input::placeholder {
            color: var(--n9-grey-400);
        }

.n9-nav-search-form {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
}

/* ── MOBILE NAV ── */
.n9-nav-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .n9-nav-toggler svg {
        width: 24px;
        height: 24px;
        color: var(--n9-grey-600);
    }

.n9-mobile-menu {
    display: none;
}

/* ── HERO ── */
section.n9-hero {
    background: var(--n9-navy);
    padding: 72px 48px 64px;
    /*   position: relative;
    overflow: hidden;*/
    text-align: center;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    display: block !important;
    visibility: visible !important;
    color: var(--n9-white);
}

    section.n9-hero h1,
    section.n9-hero h2,
    section.n9-hero h3,
    section.n9-hero span,
    section.n9-hero div,
    section.n9-hero a,
    section.n9-hero p {
        visibility: visible !important;
    }

    section.n9-hero h1 {
        color: var(--n9-white) !important;
        font-size: 47px !important;
    }

.n9-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
}

    .n9-hero-badge .n9-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--n9-accent-green);
        animation: n9-pulse 2s infinite;
    }

@keyframes n9-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.n9-hero h1 {
    font-size: 47px !important;
    font-weight: 800;
    color: var(--n9-white) !important;
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 36px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.n9-hero-inner {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── HERO BULLETS ── */
.n9-hero-bullets {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.n9-hero-bullet {
    flex: 1;
    max-width: 310px;
    text-align: left;
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.2s;
}

    .n9-hero-bullet:hover {
        background: rgba(255, 255, 255, 0.08);
    }

.n9-bullet-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.n9-icon-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .n9-icon-wrap.n9-intel {
        background: rgba(228, 0, 58, 0.15);
    }

    .n9-icon-wrap.n9-data {
        background: rgba(74, 124, 255, 0.15);
    }

    .n9-icon-wrap.n9-network {
        background: rgba(124, 92, 252, 0.15);
    }

    .n9-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

.n9-bullet-title {
    color: var(--n9-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.n9-bullet-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* ── HERO CTA ── */
.n9-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--n9-red);
    color: var(--n9-white);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(228, 0, 58, 0.3);
}

    .n9-hero-cta:hover {
        background: var(--n9-red-hover);
        color: var(--n9-white);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(228, 0, 58, 0.35);
    }

.n9-hero-cta-sub {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── TRUST STRIP ── */
.n9-trust-strip {
    background: var(--n9-grey-50);
    border-bottom: 1px solid var(--n9-grey-200);
    padding: 16px 48px;
    text-align: center;
}

.n9-trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 13px;
    color: var(--n9-grey-400);
}

.n9-trust-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .n9-trust-stat strong {
        color: var(--n9-navy);
        font-weight: 700;
        font-size: 14px;
    }

.n9-trust-divider {
    width: 1px;
    height: 16px;
    background: var(--n9-grey-200);
}

/* ── MAIN CONTENT AREA ── */
.n9-main-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px;
    background: var(--n9-white);
}

/* ── SIDEBAR ── */
.n9-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}

.n9-sidebar-section {
    margin-bottom: 28px;
}

    .n9-sidebar-section h3 {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--n9-grey-400);
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--n9-grey-200);
    }

.n9-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--n9-grey-600);
    /*font-size: 13.5px;*/
    font-weight: 500;
    transition: all 0.15s;
    margin-bottom: 1px;
}

    .n9-sidebar-link:hover {
        background: var(--n9-grey-100);
        color: var(--n9-navy);
    }

    .n9-sidebar-link svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        opacity: 0.45;
    }

    .n9-sidebar-link:hover svg {
        opacity: 0.8;
    }


.n9-sidebar-cta-box {
    background: linear-gradient(135deg, var(--n9-navy) 0%, var(--n9-navy-light) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

    .n9-sidebar-cta-box p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 14px;
        line-height: 1.5;
    }

.n9-sidebar-cta-btn {
    display: inline-block;
    background: var(--n9-red);
    color: var(--n9-white);
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
}

    .n9-sidebar-cta-btn:hover {
        background: var(--n9-red-hover);
        color: var(--n9-white);
    }

/* ── CONTENT FEED ── */
.n9-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--n9-grey-200);
}

    .n9-feed-header h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--n9-navy);
        margin: 0;
    }

.n9-feed-tabs {
    display: flex;
    gap: 4px;
}

.n9-feed-tab {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--n9-grey-400);
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

    .n9-feed-tab:hover {
        color: var(--n9-grey-800);
        background: var(--n9-grey-100);
    }

    .n9-feed-tab.active {
        color: var(--n9-navy);
        background: var(--n9-grey-100);
        font-weight: 600;
    }

/* ── CONTENT CARDS ── */
.n9-content-card {
    border: 1px solid var(--n9-grey-200);
    border-left: 3px solid transparent;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 12px;
    transition: all 0.2s;
    background: var(--n9-white);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

    .n9-content-card:hover {
        border-color: var(--n9-grey-200);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
        color: inherit;
        text-decoration: none;
    }

    .n9-content-card[data-accent="blue"]:hover {
        border-left-color: var(--n9-accent-blue);
    }

    .n9-content-card[data-accent="red"]:hover {
        border-left-color: var(--n9-red);
    }

    .n9-content-card[data-accent="green"]:hover {
        border-left-color: var(--n9-accent-green);
    }

    .n9-content-card[data-accent="purple"]:hover {
        border-left-color: var(--n9-accent-purple);
    }

.n9-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.n9-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 5px;
}

.tag-intel {
    background: rgba(228, 0, 58, 0.08);
    color: var(--n9-red);
}

.tag-cheatsheet {
    background: rgba(34, 198, 126, 0.1);
    color: var(--n9-accent-green);
}

.tag-dealflow {
    background: rgba(124, 92, 252, 0.1);
    color: var(--n9-accent-purple);
}

.tag-newsletter {
    background: rgba(74, 124, 255, 0.1);
    color: var(--n9-accent-blue);
}

.tag-reports {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.tag-investors {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.tag-startups {
    background: rgba(124, 92, 252, 0.1);
    color: var(--n9-accent-purple);
}

.n9-card-date {
    font-size: 12px;
    color: var(--n9-grey-400);
}

.n9-content-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--n9-navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.n9-content-card p {
    font-size: 14px;
    color: var(--n9-grey-600);
    line-height: 1.55;
    margin-bottom: 0;
}

.n9-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--n9-grey-100);
}

.n9-card-source {
    font-size: 12px;
    color: var(--n9-grey-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.n9-card-readmore {
    font-size: 13px;
    font-weight: 600;
    color: var(--n9-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s;
}

.n9-content-card:hover .n9-card-readmore {
    gap: 8px;
}

/* ── FOOTER OVERRIDES ── */
/* The footer uses bg-dark/bg-darker/cs-footer from the old theme.
   Since _LayoutRedesign does not load theme.css, provide minimal fallback styles. */
.cs-footer {
    background: var(--n9-navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
}

    .cs-footer .bg-darker {
        background: rgba(0, 0, 0, 0.15);
        padding: 24px 0;
    }

    .cs-footer a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.15s;
    }

        .cs-footer a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

    .cs-footer .social-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        transition: background 0.15s;
    }

        .cs-footer .social-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

/* ── SCROLL TO TOP ── */
.n9-btn-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--n9-navy);
    color: var(--n9-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 50;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .n9-btn-scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    .n9-btn-scroll-top:hover {
        background: var(--n9-navy-light);
        color: var(--n9-white);
        transform: translateY(-2px);
    }

    .n9-btn-scroll-top svg {
        width: 20px;
        height: 20px;
    }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .n9-nav {
        padding: 0 24px;
    }

    .n9-nav-links {
        display: none;
    }

    .n9-nav-toggler {
        display: block;
    }

    .n9-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--n9-white);
        z-index: 300;
        padding: 24px;
        overflow-y: auto;
        display: none;
    }

        .n9-mobile-menu.open {
            display: block;
        }

    .n9-mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }

    .n9-mobile-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--n9-grey-600);
    }

    .n9-mobile-menu-section {
        margin-bottom: 24px;
    }

        .n9-mobile-menu-section h4 {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--n9-grey-400);
            margin-bottom: 8px;
        }

        .n9-mobile-menu-section a {
            display: block;
            padding: 8px 0;
            color: var(--n9-grey-600);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
        }

    .n9-hero {
        padding: 48px 24px 40px;
    }

        .n9-hero h1 {
            font-size: 32px;
        }

    .n9-hero-bullets {
        flex-direction: column;
        align-items: center;
    }

    .n9-hero-bullet {
        max-width: 100%;
    }

    .n9-trust-strip {
        padding: 16px 24px;
    }

    .n9-trust-strip-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .n9-trust-divider {
        display: none;
    }

    .n9-main-content {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .n9-sidebar {
        position: static;
    }

    .n9-feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .n9-feed-tabs {
        flex-wrap: wrap;
    }

    .n9-content-card {
        padding: 16px 18px;
    }
}

@media (max-width: 576px) {
    .n9-hero h1 {
        font-size: 26px;
    }

    .n9-hero-badge {
        font-size: 10px;
    }

    .n9-nav-search {
        padding: 0 16px;
    }
}

/* ══════════════════════════════════════════
   Startup Concierge Page (n9-sc-*)
   ══════════════════════════════════════════ */

/* ── HERO ── */
section.n9-sc-hero {
    background: #1a1a2e;
    padding: 72px 40px 80px;
    text-align: center;
    min-height: auto !important;
}

.n9-sc-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

section.n9-sc-hero h1 {
    color: #fff !important;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

    section.n9-sc-hero h1 em {
        font-style: normal;
        color: #e63946;
    }

section.n9-sc-hero p {
    color: #b0b0c8;
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 0;
}

.n9-sc-audience {
    color: #7a7a9a;
    font-size: 13px;
    font-weight: 500;
    margin-top: 24px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.n9-sc-cta-btn {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.2px;
}

    .n9-sc-cta-btn:hover {
        background: #d62839;
        color: #fff;
        transform: translateY(-1px);
        text-decoration: none;
    }

section.n9-sc-hero .n9-sc-cta-btn {
    margin-top: 36px;
}

/* ── FEATURES ── */
section.n9-sc-features {
    padding: 72px 40px 80px;
    background: #fff;
    min-height: auto !important;
}

.n9-sc-features-inner {
    max-width: 680px;
    margin: 0 auto;
}

.n9-sc-features h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.n9-sc-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

    .n9-sc-feature-row:first-of-type {
        border-top: 1px solid #eee;
    }

.n9-sc-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

    .n9-sc-feature-icon.n9-sc-investors {
        background: #eef0ff;
        color: #4a54e1;
    }

    .n9-sc-feature-icon.n9-sc-score {
        background: #fef3e6;
        color: #e6890c;
    }

    .n9-sc-feature-icon.n9-sc-professionals {
        background: #e8f8f0;
        color: #1ba363;
    }

    .n9-sc-feature-icon.n9-sc-badge {
        background: #fce8ea;
        color: #e63946;
    }

.n9-sc-feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.n9-sc-feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ── PREVIEW ── */
section.n9-sc-preview {
    padding: 72px 40px;
    background: #f8f8fb;
    text-align: center;
    min-height: auto !important;
}

.n9-sc-preview-inner {
    max-width: 880px;
    margin: 0 auto;
}

.n9-sc-preview-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #e63946;
    margin-bottom: 12px;
}

.n9-sc-preview-caption {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 36px;
}

.n9-sc-preview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 1px solid #e0e0e0;
}

    .n9-sc-preview-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* ── STATS ── */
section.n9-sc-stats {
    background: #1a1a2e;
    padding: 56px 40px;
    text-align: center;
    min-height: auto !important;
}

.n9-sc-stats-inner {
    max-width: 800px;
    margin: 0 auto;
}

.n9-sc-stats-label {
    font-size: 15px;
    color: #c0c0d8;
    margin-bottom: 36px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.n9-sc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.n9-sc-stat-item .n9-sc-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff !important;
}

.n9-sc-stat-item .n9-sc-stat-desc {
    font-size: 12px;
    color: #7a7a9a;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── TESTIMONIALS ── */
section.n9-sc-testimonials {
    padding: 72px 40px;
    background: #fff;
    min-height: auto !important;
}

.n9-sc-testimonials-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.n9-sc-testimonials h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.n9-sc-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.n9-sc-testimonial-card {
    background: #f8f8fb;
    border-radius: 8px;
    padding: 28px 24px;
    text-align: left;
}

    .n9-sc-testimonial-card blockquote {
        font-size: 14px;
        color: #444;
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 16px;
    }

    .n9-sc-testimonial-card .n9-sc-testimonial-author {
        font-size: 13px;
        font-weight: 600;
        color: #1a1a2e;
    }

        .n9-sc-testimonial-card .n9-sc-testimonial-author span {
            font-weight: 400;
            color: #999;
        }

.n9-sc-testimonial-featured {
    grid-column: 1 / -1;
    background: #1a1a2e;
}

    .n9-sc-testimonial-featured blockquote {
        color: #ddd;
        font-size: 18px;
        line-height: 1.7;
    }

    .n9-sc-testimonial-featured .n9-sc-testimonial-author {
        color: #fff;
    }

        .n9-sc-testimonial-featured .n9-sc-testimonial-author span {
            color: #7a7a9a;
        }

/* ── PRICING ── */
section.n9-sc-pricing {
    padding: 72px 40px;
    background: #f8f8fb;
    text-align: center;
    min-height: auto !important;
}

.n9-sc-pricing-inner {
    max-width: 600px;
    margin: 0 auto;
}

.n9-sc-pricing-badge {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.n9-sc-pricing-amount {
    font-size: 68px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.n9-sc-pricing-once {
    font-size: 20px;
    font-weight: 700;
    color: #e63946;
    margin-top: 4px;
    margin-bottom: 20px;
}

.n9-sc-pricing-sub {
    color: #999;
    font-size: 15px;
    margin-bottom: 24px;
}

.n9-sc-pricing-detail {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

section.n9-sc-pricing .n9-sc-cta-btn {
    font-size: 16px;
    padding: 16px 44px;
}

/* ── FAQ ── */
section.n9-sc-faq {
    padding: 72px 40px;
    background: #fff;
    min-height: auto !important;
}

.n9-sc-faq-inner {
    max-width: 640px;
    margin: 0 auto;
}

.n9-sc-faq h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.n9-sc-faq-item {
    border-bottom: 1px solid #ddd;
}

    .n9-sc-faq-item:first-child {
        border-top: 1px solid #ddd;
    }

.n9-sc-faq-question {
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.15s;
}

    .n9-sc-faq-question:hover {
        color: #e63946;
    }

.n9-sc-faq-arrow {
    font-size: 18px;
    transition: transform 0.2s;
    color: #bbb;
    font-weight: 300;
}

.n9-sc-faq-item.open .n9-sc-faq-arrow {
    transform: rotate(45deg);
    color: #e63946;
}

.n9-sc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.n9-sc-faq-answer-inner {
    padding: 0 0 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ── CLOSING CTA ── */
section.n9-sc-closing-cta {
    padding: 80px 40px;
    background: #1a1a2e;
    text-align: center;
    min-height: auto !important;
}

.n9-sc-closing-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

section.n9-sc-closing-cta h2 {
    color: #fff !important;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

section.n9-sc-closing-cta p {
    color: #b0b0c8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

section.n9-sc-closing-cta .n9-sc-cta-btn {
    font-size: 16px;
    padding: 16px 44px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    section.n9-sc-hero {
        padding: 48px 24px 60px;
    }

        section.n9-sc-hero h1 {
            font-size: 32px;
        }

        section.n9-sc-hero p {
            font-size: 17px;
        }

    section.n9-sc-features {
        padding: 48px 24px 56px;
    }

    .n9-sc-features h2 {
        font-size: 24px;
    }

    .n9-sc-feature-row {
        gap: 16px;
        padding: 22px 0;
    }

    section.n9-sc-stats {
        padding: 40px 24px;
    }

    .n9-sc-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    section.n9-sc-testimonials {
        padding: 48px 24px;
    }

    .n9-sc-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .n9-sc-testimonial-featured blockquote {
        font-size: 16px;
    }

    section.n9-sc-pricing {
        padding: 56px 24px;
    }

    .n9-sc-pricing-amount {
        font-size: 44px;
    }

    section.n9-sc-faq {
        padding: 48px 24px;
    }

    section.n9-sc-closing-cta {
        padding: 56px 24px;
    }

        section.n9-sc-closing-cta h2 {
            font-size: 24px;
        }
}

/* ══════════════════════════════════════════
   n9-pw-* — Paywall / Pricing Page
   ══════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES (pricing) ── */
:root {
    --n9-pw-dark: #1a1a2e;
    --n9-pw-navy: #16213e;
    --n9-pw-accent: #e94560;
    --n9-pw-accent-hover: #d63851;
    --n9-pw-light: #f8f9fc;
    --n9-pw-muted: #6b7280;
    --n9-pw-border: #e5e7eb;
    --n9-pw-card-bg: #ffffff;
    --n9-pw-pro-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --n9-pw-radius: 16px;
    --n9-pw-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --n9-pw-shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --n9-pw-shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --n9-pw-shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
}

/* ── HERO ── */
section.n9-pw-hero {
    text-align: center;
    padding: 72px 32px 24px;
    max-width: 720px;
    margin: 0 auto;
    min-height: auto !important;
}

.n9-pw-hero-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.08);
    color: var(--n9-pw-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

section.n9-pw-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--n9-pw-dark) !important;
}

section.n9-pw-hero p {
    font-size: 18px;
    color: var(--n9-pw-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── STATS ── */
section.n9-pw-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    padding: 48px 32px 64px;
    max-width: 800px;
    margin: 0 auto;
    min-height: auto !important;
}

.n9-pw-stat {
    text-align: center;
}

.n9-pw-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--n9-pw-dark);
    letter-spacing: -0.02em;
}

    .n9-pw-stat-num span {
        color: var(--n9-pw-accent);
    }

.n9-pw-stat-label {
    font-size: 13px;
    color: var(--n9-pw-muted);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── PRICING OPTIONS (dual CTA) ── */
.n9-pw-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.n9-pw-price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid var(--n9-pw-border);
    background: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

    .n9-pw-price-option:hover {
        border-color: var(--n9-pw-dark);
        box-shadow: var(--n9-pw-shadow-sm);
    }

    .n9-pw-price-option.n9-pw-recommended {
        border-color: var(--n9-pw-accent);
        background: rgba(233, 69, 96, 0.03);
    }

        .n9-pw-price-option.n9-pw-recommended:hover {
            background: rgba(233, 69, 96, 0.07);
            border-color: var(--n9-pw-accent-hover);
        }

.n9-pw-price-option-left {
    display: flex;
    flex-direction: column;
}

.n9-pw-price-option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--n9-pw-dark);
}

.n9-pw-price-option-detail {
    font-size: 12px;
    color: var(--n9-pw-muted);
    margin-top: 2px;
}

.n9-pw-price-option-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--n9-pw-dark);
    white-space: nowrap;
}

.n9-pw-price-option-period {
    font-size: 12px;
    font-weight: 500;
    color: var(--n9-pw-muted);
}

.n9-pw-price-option-right {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.n9-pw-price-option-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--n9-pw-accent);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 10px;
    white-space: nowrap;
}

/* Dual CTAs inside Pro (dark) card */
.n9-pw-card.n9-pw-pro .n9-pw-price-option {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}

    .n9-pw-card.n9-pw-pro .n9-pw-price-option:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.3);
    }

    .n9-pw-card.n9-pw-pro .n9-pw-price-option.n9-pw-recommended {
        border-color: var(--n9-pw-accent);
        background: rgba(233, 69, 96, 0.12);
    }

        .n9-pw-card.n9-pw-pro .n9-pw-price-option.n9-pw-recommended:hover {
            background: rgba(233, 69, 96, 0.2);
            border-color: var(--n9-pw-accent-hover);
        }

.n9-pw-card.n9-pw-pro .n9-pw-price-option-label {
    color: #fff;
}

.n9-pw-card.n9-pw-pro .n9-pw-price-option-detail {
    color: rgba(255,255,255,0.45);
}

.n9-pw-card.n9-pw-pro .n9-pw-price-option-amount {
    color: #fff;
}

.n9-pw-card.n9-pw-pro .n9-pw-price-option-period {
    color: rgba(255,255,255,0.5);
}

/* ── PRICING CARDS ── */
.n9-pw-pricing-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

.n9-pw-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.n9-pw-card {
    background: var(--n9-pw-card-bg);
    border-radius: var(--n9-pw-radius);
    border: 1px solid var(--n9-pw-border);
    padding: 36px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .n9-pw-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--n9-pw-shadow-md);
    }

    /* Pro card — featured */
    .n9-pw-card.n9-pw-pro {
        background: var(--n9-pw-pro-bg);
        border: none;
        color: #fff;
        box-shadow: var(--n9-pw-shadow-xl);
        transform: scale(1.04);
        z-index: 2;
    }

        .n9-pw-card.n9-pw-pro:hover {
            transform: scale(1.04) translateY(-4px);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-card-title {
            color: #fff;
        }

        .n9-pw-card.n9-pw-pro .n9-pw-card-desc {
            color: rgba(255,255,255,0.65);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-feature-text {
            color: rgba(255,255,255,0.85);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-section-label {
            color: rgba(255,255,255,0.45);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-check-icon {
            color: var(--n9-pw-accent);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-feature-divider {
            border-color: rgba(255,255,255,0.1);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-includes-note {
            color: rgba(255,255,255,0.5);
        }

        .n9-pw-card.n9-pw-pro .n9-pw-feature-sub {
            color: rgba(255,255,255,0.45);
        }

    /* Watchlist card — subtle highlight */
    .n9-pw-card.n9-pw-watchlist {
        border: 2px solid var(--n9-pw-accent);
    }

.n9-pw-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--n9-pw-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.n9-pw-card-header {
    margin-bottom: 24px;
}

.n9-pw-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--n9-pw-dark);
    margin-bottom: 6px;
}

.n9-pw-card-desc {
    font-size: 14px;
    color: var(--n9-pw-muted);
    line-height: 1.5;
}

.n9-pw-card-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--n9-pw-dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.n9-pw-card-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: 8px;
    margin-right: 2px;
}

.n9-pw-card-period {
    font-size: 15px;
    font-weight: 500;
    color: var(--n9-pw-muted);
    margin-left: 4px;
}

.n9-pw-price-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.n9-pw-annual-note {
    font-size: 13px;
    color: var(--n9-pw-muted);
    margin-bottom: 24px;
}

.n9-pw-card-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--n9-pw-border);
    background: #fff;
    color: var(--n9-pw-dark);
    transition: all 0.2s;
    margin-bottom: 28px;
}

    .n9-pw-card-btn:hover {
        border-color: var(--n9-pw-dark);
        background: var(--n9-pw-dark);
        color: #fff;
    }

/* Feature list */
.n9-pw-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--n9-pw-muted);
    margin-bottom: 14px;
}

.n9-pw-feature-divider {
    border: none;
    border-top: 1px solid var(--n9-pw-border);
    margin: 20px 0;
}

.n9-pw-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.n9-pw-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.n9-pw-feature-text {
    color: var(--n9-pw-dark);
}

.n9-pw-feature-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--n9-pw-muted);
    display: block;
    margin-top: 1px;
}

.n9-pw-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 1px;
}

.n9-pw-includes-note {
    font-size: 13px;
    font-weight: 600;
    color: var(--n9-pw-muted);
    margin-bottom: 16px;
    font-style: italic;
}

/* ── TRUST BAR ── */
section.n9-pw-trust-bar {
    background: var(--n9-pw-dark);
    padding: 48px 32px;
    text-align: center;
    min-height: auto !important;
}

    section.n9-pw-trust-bar p {
        font-size: 14px;
        color: rgba(255,255,255,0.5) !important;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

/* ── FAQ ── */
section.n9-pw-faq-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px 80px;
    min-height: auto !important;
}

.n9-pw-faq-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--n9-pw-dark);
}

.n9-pw-faq-item {
    border-bottom: 1px solid var(--n9-pw-border);
}

.n9-pw-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--n9-pw-dark);
    transition: color 0.2s;
}

    .n9-pw-faq-q:hover {
        color: var(--n9-pw-accent);
    }

.n9-pw-faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--n9-pw-muted);
    transition: transform 0.25s;
}

.n9-pw-faq-item.open .n9-pw-faq-chevron {
    transform: rotate(180deg);
}

.n9-pw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.n9-pw-faq-item.open .n9-pw-faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.n9-pw-faq-a p {
    font-size: 14px;
    color: var(--n9-pw-muted);
    line-height: 1.7;
}

.n9-pw-faq-a a {
    color: var(--n9-pw-accent);
    text-decoration: none;
    font-weight: 600;
}

    .n9-pw-faq-a a:hover {
        text-decoration: underline;
    }

.input-validation-error {
    border-color: #e63946 !important;
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .n9-pw-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .n9-pw-card.n9-pw-pro {
        transform: scale(1);
    }

        .n9-pw-card.n9-pw-pro:hover {
            transform: translateY(-4px);
        }
}

@media (max-width: 768px) {
    section.n9-pw-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    section.n9-pw-hero {
        padding-top: 48px;
    }
}
