:root {
    --dark:      #2c2c25;
    --muted:     #6a6a6a;
    --gold:      #d4af37;
    --gold-dark: #b8942d;
    --white:     #ffffff;
    --soft:      #faf9f5;
}

section:not(.video-hero) {
    padding: 40px 16px;
    text-align: center;
}

section.video-hero { padding: 0; }

h1, h2, h3 { font-weight: 800; color: var(--dark); }

/* ============================================================
   SECTION 2 — WHY NEURO SITE
   ============================================================ */
.ns-why { background: var(--white); }

.ns-why__inner { max-width: 1000px; margin: 0 auto; }

.ns-why h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}

.ns-why__blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.ns-why__block-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* 1 col → 2 col at 480px */
.ns-why__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.ns-why__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--soft);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--gold);
}

.ns-why__icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

.ns-why__item p {
    color: var(--dark);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.ns-why__divider { display: flex; align-items: center; width: 100%; margin: 0.5rem 0; }

.ns-why__divider-line:first-child {
    flex: 1; height: 2px;
    background: linear-gradient(to right, transparent, rgba(212,175,55,0.4));
}

.ns-why__divider-line:last-child {
    flex: 1; height: 2px;
    background: linear-gradient(to left, transparent, rgba(212,175,55,0.4));
}

.ns-why__tagline {
    margin: 0;
    padding: 1rem 1.5rem;
    border-top: 2px solid rgba(212,175,55,0.3);
    border-bottom: 2px solid rgba(212,175,55,0.3);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
}

/* ============================================================
   SECTION 3 — PRICING
   Mobile: stacked plans → md: side by side
   ============================================================ */
.ns-pricing { background: var(--soft); }

.ns-pricing h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.ns-pricing-table {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    text-align: left;
}

.ns-pricing-plan {
    flex: 1;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ns-pricing-plan:last-child { border-bottom: none; }

.ns-pricing-plan--featured {
    background: linear-gradient(160deg, #fffbef 0%, var(--white) 100%);
    border-left: 4px solid var(--gold);
}

.ns-pricing-plan__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.ns-pricing-plan__name { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.ns-pricing-plan__price { font-size: 1rem; font-weight: 600; color: var(--muted); font-style: italic; line-height: 1; margin-bottom: 1rem; }
.ns-pricing-plan__per { font-size: 1rem; font-weight: 500; color: var(--muted); }
.ns-pricing-plan__desc { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }

.ns-pricing-plan__features { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.ns-pricing-plan__features li { font-size: 0.92rem; color: var(--dark); line-height: 1.5; padding: 10px 0; border-top: 1px solid rgba(212,175,55,0.15); }
.ns-pricing-plan__features li:last-child { border-bottom: 1px solid rgba(212,175,55,0.15); }

.ns-pricing-plan__cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    transition: 0.2s ease;
    margin-top: auto;
}

.ns-pricing-plan__cta:hover            { background: var(--gold); color: var(--white); }
.ns-pricing-plan__cta--featured        { background: var(--gold); color: var(--white); }
.ns-pricing-plan__cta--featured:hover  { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ============================================================
   SECTION 4 — NOT FOR PROFIT
   ============================================================ */
.ns-nfp { background: var(--white); }

.ns-nfp__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid rgba(212,175,55,0.3);
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    background: var(--soft);
    text-align: center;
}

.ns-nfp h2 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; text-align: center; }
.ns-nfp__inner p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.ns-nfp__inner p:last-child { margin-bottom: 0; }
.ns-nfp__link { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.ns-nfp__link:hover { color: var(--gold); }

/* ============================================================
   SECTION 5 — ALREADY HAVE A WEBSITE
   ============================================================ */
.ns-already { background: var(--soft); }

.ns-already__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.ns-already h2 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.ns-already__inner p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.ns-already__link { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ns-already__link:hover { color: var(--gold); }

.ns-already__cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s ease;
}

.ns-already__cta:hover { background: var(--gold-dark); }

/* ============================================================
   TOC NAV — hidden mobile, shown at 1100px+
   ============================================================ */
.toc-nav {
    display: none;
    position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
    z-index: 200; background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.35); border-radius: 14px;
    padding: 14px 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.10),0 1px 4px rgba(0,0,0,0.06);
    flex-direction: column; gap: 2px; min-width: 130px;
}
.toc-nav__title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #b8942d; padding: 0 8px 8px; border-bottom: 1px solid rgba(212,175,55,0.2); margin-bottom: 4px; }
.toc-dot { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 7px 8px; border-radius: 8px; border-left: 2px solid transparent; transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease; color: #6a6a6a; }
.toc-dot:hover { background: rgba(212,175,55,0.08); color: #2c2c25; }
.toc-dot:focus-visible { outline: 2px solid #d4af37; background: rgba(212,175,55,0.08); }
.toc-dot.active { border-left-color: #d4af37; color: #2c2c25; background: rgba(212,175,55,0.06); }
.toc-dot__pip { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid rgba(212,175,55,0.5); background: transparent; flex-shrink: 0; transition: all 0.2s ease; }
.toc-dot:hover .toc-dot__pip { border-color: #d4af37; background: rgba(212,175,55,0.35); }
.toc-dot.active .toc-dot__pip { background: #d4af37; border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }
.toc-dot__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; }
.toc-dot.active .toc-dot__label { font-weight: 700; }

/* ============================================================
   SECTION 3 — SEE IT IN ACTION
   ============================================================ */
.ns-sites { background: var(--soft); }

.ns-sites__inner { max-width: 1000px; margin: 0 auto; }

.ns-sites h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.ns-sites__intro {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ns-sites__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.ns-sites__card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(212,175,55,0.25);
    border-top: 3px solid var(--gold);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ns-sites__card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }

.ns-sites__logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 1rem; }

.ns-sites__card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.ns-sites__card p {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.ns-sites__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    min-height: 44px;
    align-self: flex-start;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ns-sites__cta:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   SECTION 7 — CLOSING CTA
   ============================================================ */
.ns-contact { background: var(--dark); text-align: center; }

.ns-contact__inner { max-width: 680px; margin: 0 auto; }

.ns-contact h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.ns-contact__inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ns-contact__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    min-height: 44px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ns-contact__cta:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

@media (min-width: 480px) {
    .ns-why__list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    section:not(.video-hero) { padding: 56px 24px; }

    .ns-sites__cards      { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

    .ns-pricing-table     { flex-direction: row; }
    .ns-pricing-plan      { border-bottom: none; border-right: 1px solid rgba(212,175,55,0.2); padding: 2.5rem 2rem; }
    .ns-pricing-plan:last-child { border-right: none; }
    .ns-pricing-plan--featured { border-left: none; border-top: 4px solid var(--gold); }
    .ns-pricing-plan__price    { font-size: 1rem; }

    .ns-nfp__inner { padding: 2rem 2.5rem; }
    .ns-why__blocks { gap: 3rem; margin-bottom: 3rem; }
    .ns-why__tagline { font-size: 1.15rem; }
}

@media (min-width: 1024px) {
    section:not(.video-hero) { padding: 80px 32px; }
}

@media (min-width: 1100px) {
    .toc-nav { display: flex; }
}
