﻿/* ==========================================================================
   profile.css (page-scoped)
   Neuthinking — Specialist Profile Page
   - Uses core.css + skin.css + site.css for base styling
   - This file ONLY styles the profile page under .sp-profile
   - Cleaned + reordered + consolidated
   - UPDATED: Brand colors now inherit from site.css tokens (no hardcoded #0779C5)
   ========================================================================== */

/* ==========================================================================
   0) ROOT / TOKENS
   ========================================================================== */

.sp-profile {
    font-family: "Rubik", sans-serif;
    line-height: 1.45;
    /* ✅ Brand (inherit from site.css)
       site.css defines:
       --nt-blue, --nt-blue-ink, --nt-blue-soft, --dv-primary
    */
    --nt-brand: var(--dv-primary, #2E86E6);
    --nt-brand-ink: var(--nt-blue-ink, #1F6EC4);
    --nt-brand-soft: var(--nt-blue-soft, rgba(46,134,230,.10));
    /* Fallbacks first (for older browsers), then preferred derived values */
    --nt-brand-soft2: rgba(46,134,230,.06);
    --nt-ring: rgba(46,134,230,.22);
    /* Prefer derived (if supported) */
    --nt-brand-soft2: color-mix(in srgb, var(--nt-brand) 6%, transparent);
    --nt-ring: color-mix(in srgb, var(--nt-brand) 22%, transparent);
    /* Common neutrals */
    --nt-ink: rgba(15,23,42,0.92);
    --nt-ink-2: rgba(15,23,42,0.78);
    --nt-ink-3: rgba(15,23,42,0.55);
    --nt-border: rgba(15,23,42,0.10);
    --nt-border-2: rgba(15,23,42,0.12);
}

    /* Stronger section titles */
    .sp-profile .sp-card-title {
        font-weight: 850;
        font-size: 1.4rem;
        line-height: 1.15;
        letter-spacing: -0.2px;
    }


/* ==========================================================================
   1) LEFT PROFILE CARD
   ========================================================================== */

.sp-profile-card {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-radius: 15px;
}

.sp-profile .sp-left-body {
    padding: 1rem;
}

.sp-profile .sp-profile-toprow {
    gap: 12px;
}

/* Profile photo */
.sp-profile .sp-photo {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(1,104,250,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 10px solid #f2f2f2;
}

    .sp-profile .sp-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.sp-profile .sp-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #1b2e4b;
    letter-spacing: 0.7px;
}

/* Name block typography */
.sp-profile .sp-name {
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -0.35px;
    margin: 0 0 1px 0;
}

.sp-profile .sp-sub,
.sp-profile .sp-meta {
    font-size: 1rem;
}

.sp-profile .sp-license {
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 650;
    color: rgba(15,23,42,0.72);
}

.sp-profile .sp-tagline {
    margin: 8px 0 10px;
    font-size: 1rem;
    line-height: 1.45;
    color: #1c273c;
}

/* Badges row */
.sp-profile .sp-pillrow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-profile .sp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--nt-brand-soft);
    border: 1px solid rgba(46,134,230,.18);
    border: 1px solid color-mix(in srgb, var(--nt-brand) 18%, transparent);
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(15,23,42,0.82);
    white-space: nowrap;
}

/* Chips (kept for compatibility if used elsewhere) */
.sp-profile .sp-chips {
    gap: 10px !important;
}

.sp-profile .sp-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.10);
    color: rgba(15,23,42,0.78);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1;
}


/* ==========================================================================
   2) BOOKING CARD
   ========================================================================== */

.sp-profile .sp-booking-card {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-radius: 15px;
}

.sp-profile .sp-booking-body {
    padding: .85rem;
}

/* Header */
.sp-profile .sp-bk-head {
    gap: 1rem;
}

.sp-profile .sp-next-label {
    font-size: 1rem;
    line-height: 1.1;
}

.sp-profile .sp-next-value {
    font-size: 1rem;
    padding-top: 6px;
    line-height: 1.15;
}

.sp-profile .sp-instant {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 750;
    color: var(--nt-ink-2);
    margin-top: 4px;
    font-size: 1rem;
}

.sp-profile .sp-instant-ic {
    font-size: 1rem;
    line-height: 1;
}

/* separators / spacing */
.sp-profile .sp-hr {
    margin: .6rem 0;
    opacity: 0.5;
}

.sp-profile .sp-gap {
    height: 6px;
}

/* Shared block look */
.sp-profile .sp-bk-block {
    border: 1px solid var(--nt-border);
    border-radius: 12px;
    background: #fff;
}

/* Visit (Google Meet) block */
.sp-profile .sp-visit {
    padding: 10px 10px;
    background: rgba(15,23,42,0.02);
}

.sp-profile .sp-visit-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sp-profile .sp-radio {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: translateY(1px);
    accent-color: var(--nt-brand);
}

.sp-profile .sp-visit-copy {
    min-width: 0;
}

.sp-profile .sp-visit-label {
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
    color: rgba(15,23,42,0.90);
    margin-left: 25px;
    position: relative;
    top: 0px;
}

.sp-profile .sp-visit-sub {
    margin-top: 4px;
    line-height: 1.35;
    font-size: 1rem;
}

/* Session type segmented grid */
.sp-profile .sp-type-seg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.sp-profile .sp-type-opt {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 7px 8px;
    border-radius: 10px;
    border: 1px solid var(--nt-border-2);
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

    .sp-profile .sp-type-opt:hover {
        background: var(--nt-brand-soft2);
        border-color: rgba(46,134,230,.22);
        border-color: color-mix(in srgb, var(--nt-brand) 22%, transparent);
    }

    .sp-profile .sp-type-opt input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.sp-profile .sp-type-top {
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(15,23,42,0.75);
}

.sp-profile .sp-type-bottom {
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -0.2px;
    color: rgba(15,23,42,0.95);
}

.sp-profile .sp-type-meta {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(15,23,42,0.45);
    margin-top: 2px;
}

/* Active state */
.sp-profile .sp-type-opt.is-active {
    background: #fff;
    border-color: rgba(15,23,42,0.10);
    box-shadow: inset 0 0 0 2px var(--nt-brand);
}

    .sp-profile .sp-type-opt.is-active .sp-type-bottom {
        color: rgba(15,23,42,0.95);
    }

/* Keyboard accessibility */
.sp-profile .sp-type-opt:focus-within {
    outline: none;
}

/* Pricing box */
.sp-profile .sp-pricebox {
    padding: 10px 10px;
    background: rgba(15,23,42,0.02);
}

.sp-profile .sp-pricebox-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sp-profile .sp-pricebox-label {
    font-size: 0.9rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.sp-profile .sp-price {
    margin-top: 2px;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.35px;
    color: var(--nt-ink);
    margin-top: 8px;
}

.sp-profile .sp-duration {
    font-size: 1rem;
    line-height: 1.15;
    margin-top: 8px;
}

/* Book button (override Bootstrap primary, page-scoped) */
.sp-profile .sp-bk-btn {
    border-radius: 10px;
    padding: .55rem .75rem;
    letter-spacing: 0.1px;
    margin-top: 10px;
}

/* Sticky booking */
@media (min-width: 992px) {
    .sp-profile .sp-booking-sticky {
        position: sticky;
        top: 18px;
    }
}


/* ==========================================================================
   3) ABOUT (QUOTE + SHOW MORE)
   ========================================================================== */

.sp-profile .sp-about-quote {
    position: relative;
}

.sp-profile .sp-quote-mark {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 36px;
    line-height: 1;
    color: rgba(15,23,42,0.30);
    font-weight: 900;
}

.sp-profile .sp-about-text {
    white-space: pre-line;
    line-height: 1.75;
    color: rgba(15,23,42,0.80);
    font-style: italic;
    font-size: 1rem;
}

/* Collapsed state */
.sp-profile .sp-about:not(.is-expanded) .sp-about-text {
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

    .sp-profile .sp-about:not(.is-expanded) .sp-about-text::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 84px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
        pointer-events: none;
    }

.sp-profile .sp-about-toggle {
    float: right;
    background: none;
    border: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--nt-brand);
    cursor: pointer;
}

    .sp-profile .sp-about-toggle:hover {
        color: var(--nt-brand-ink);
        text-decoration: underline;
    }

    .sp-profile .sp-about-toggle:focus,
    .sp-profile .sp-about-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px var(--nt-ring);
        border-radius: 6px;
    }


/* ==========================================================================
   4) DETAILS / PROFESSIONAL INFO
   ========================================================================== */

.sp-profile .sp-details-card .card-header {
    padding: 1rem 1.25rem;
}

.sp-profile .sp-details-card .card-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

.sp-profile .sp-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

@media (max-width: 991px) {
    .sp-profile .sp-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.sp-profile .sp-details-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: #1b2e4b;
}

.sp-profile .sp-details-body ul {
    margin: 0;
    padding-left: 1.05rem;
}

.sp-profile .sp-details-body li {
    padding: .2rem 0;
    line-height: 1.55;
    color: rgba(27, 46, 75, .88);
}

/* Fees (if used) */
.sp-profile .sp-fees {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.sp-profile .sp-fees-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.sp-profile .sp-fees-label {
    color: rgba(27, 46, 75, .78);
}

.sp-profile .sp-fees-value {
    font-weight: 700;
    color: #1b2e4b;
    white-space: nowrap;
}

.sp-profile .sp-fees-sub {
    font-weight: 500;
    opacity: .75;
    margin-left: .35rem;
}


/* ==========================================================================
   5) FAQ (RESTORED ACCORDION STYLING)
   ========================================================================== */

.sp-profile .sp-faq-card .card-body {
    padding-top: 0px;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.sp-profile .sp-faq .accordion-item {
    border: 0;
    background: transparent;
    padding: 0;
    border-bottom: 1px solid rgba(72, 94, 144, .18);
}

    .sp-profile .sp-faq .accordion-item:last-child {
        border-bottom: 0;
    }

.sp-profile .sp-faq .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    width: 100%;
    padding: 1rem 0 .55rem 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1b2e4b;
    cursor: default;
    outline: none !important;
    text-align: left;
}

    .sp-profile .sp-faq .accordion-button:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .sp-profile .sp-faq .accordion-button::after {
        display: none !important;
    }

.sp-profile .sp-faq .accordion-collapse {
    display: block !important;
}

.sp-profile .sp-faq .accordion-body {
    padding: 0 0 1rem 0;
    margin: 0;
    color: rgba(27, 46, 75, .86);
    line-height: 1.7;
    font-size: 1rem;
}


/* ==========================================================================
   6) PROFESSIONAL DETAILS (STACKED CARDS)
   ========================================================================== */

.sp-profile .sp-pd-head {
    margin-bottom: 10px;
    padding: 0 2px;
}

.sp-profile .sp-pd-card {
    border: 1px solid rgba(72, 94, 144, .18);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

    .sp-profile .sp-pd-card .card-body {
        padding: 16px 18px;
    }

.sp-profile .sp-pd-title {
    font-weight: 800;
    color: #1b2e4b;
    font-size: 1rem;
    margin-bottom: 10px;
}

.sp-profile .sp-pd-body ul {
    margin: 0;
    padding-left: 1.05rem;
}

.sp-profile .sp-pd-body li {
    padding: .2rem 0;
    line-height: 1.55;
    color: rgba(27, 46, 75, .88);
}

/* Mobile spacing for PD cards */
@media (max-width: 575.98px) {
    .sp-profile .sp-pd-card .card-body {
        padding: 1rem 1rem;
    }
}

.sp-profile .sp-pd-hero {
    overflow: hidden;
}

.sp-profile .sp-pd-innergrid {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1.15fr;
    gap: 0;
}

.sp-profile .sp-pd-panel {
    padding: 0px 18px 0px 0px;
}
.sp-profile .sp-pd-panel:nth-child(n) {
    padding: 0px 18px 0px 25px;
}
    .sp-profile .sp-pd-panel:first-child {
        padding: 0px 18px 0px 0px;
    }

    .sp-profile .sp-pd-panel + .sp-pd-panel {
        border-left: 1px solid rgba(15,23,42,0.08);
    }

.sp-profile .sp-pd-panel-title {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.1px;
    color: rgba(15,23,42,0.86);
    margin-bottom: 10px;
}

.sp-profile .sp-pd-panel ul {
    margin: 0;
    padding-left: 1.05rem;
}

.sp-profile .sp-pd-panel li {
    padding: 4px 0;
    line-height: 1.6;
    color: rgba(15,23,42,0.74);
}

@media (max-width: 991.98px) {
    .sp-profile .sp-pd-innergrid {
        grid-template-columns: 1fr;
    }

    .sp-profile .sp-pd-panel + .sp-pd-panel {
        border-left: 0;
        border-top: 1px solid rgba(15,23,42,0.08);
    }
}


/* ==========================================================================
   7) TESTIMONIALS
   ========================================================================== */

.sp-profile .sp-testimonials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-profile .sp-testimonial {
    padding-left: 1rem;
    border-left: 3px solid rgba(72, 94, 144, .25);
}

.sp-profile .sp-testimonial-text {
    margin: 0 0 6px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(27, 46, 75, .90);
    font-style: italic;
}

.sp-profile .sp-testimonial-meta {
    font-size: 1rem;
    color: rgba(27, 46, 75, .65);
}


/* ==========================================================================
   8) CONTAINER WIDTH / DESKTOP SPACING
   ========================================================================== */

@media (min-width: 992px) {
    .sp-profile .dv-container {
        max-width: 1120px;
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* ==========================================================================
   9) MOBILE
   ========================================================================== */

@media (max-width: 575.98px) {
    .sp-profile .card-body {
        padding: 1rem;
    }

    .sp-profile .sp-photo {
        width: 108px;
        height: 108px;
        border-width: 6px;
    }

    .sp-profile .sp-name {
        font-size: 1.35rem;
    }

    .sp-profile .sp-type-seg {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sp-profile .sp-price {
        font-size: 1.55rem;
    }
}


/* =========================================================
   TESTIMONIALS v2 (6 cards) — matches screenshot layout
   ========================================================= */

.sp-profile .sp-t6-card {
    overflow: hidden;
}

.sp-profile .sp-t6-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 991.98px) {
    .sp-profile .sp-t6-grid {
        grid-template-columns: 1fr;
    }
}

.sp-profile .sp-t6 {
    position: relative;
    border-radius: 1rem;
    background: #fff;
    padding: 15px 18px 15px 115px; /* left space for avatar */
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .sp-profile .sp-t6:hover {
        cursor:default;
    }

/* Avatar bubble (floating left) */
.sp-profile .sp-t6-avatar {
    position: absolute;
    left: 18px;
    top: 45px;
    width: 65px;
    height: 65px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: radial-gradient(circle at 30% 30%, rgba(46,134,230,0.18), rgba(46,134,230,0.10));*/
    box-shadow: 0 12px 24px rgba(15,23,42,0.12), inset 0 0 0 1px rgba(46,134,230,0.22);
}

.sp-profile .sp-t6-avatar--single {
    /*background: radial-gradient(circle at 30% 30%, rgba(46,134,230,0.20), rgba(46,134,230,0.10));*/
}

.sp-profile .sp-t6-avatar--couples {
    /*background: radial-gradient(circle at 30% 30%, rgba(46,134,230,0.16), rgba(46,134,230,0.08));*/
}

/* Icon inside bubble */
.sp-profile .sp-t6-ic {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: #0168fa;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
}

/* Top row: quote mark left, stars right */
.sp-profile .sp-t6-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.sp-profile .sp-t6-quoteMark {
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    color: rgba(15,23,42,0.18);
    transform: translateY(-2px);
}

.sp-profile .sp-t6-stars {
    font-size: 20px;
    letter-spacing: 1.2px;
    color: #f4b400;
    white-space: nowrap;
    transform: translateY(2px);
    position:relative;
    top:-5px;
}

/* Quote text */
.sp-profile .sp-t6-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(15,23,42,0.74);
    padding-right: 6px;
}

/* Meta row */
.sp-profile .sp-t6-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(15,23,42,0.55);
}

.sp-profile .sp-t6-verified {
    font-weight: 800;
    color: rgba(15,23,42,0.62);
}

.sp-profile .sp-t6-dot {
    opacity: 0.6;
}

/* clamp quote text for clean alignment */
.sp-profile .sp-t6-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2; /* desktop lines */
}

@media (max-width: 767.98px) {
    .sp-profile .sp-t6-text {
        -webkit-line-clamp: 4; /* mobile lines */
    }
}

/* expanded card */
.sp-profile .sp-t6.is-open .sp-t6-text {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.sp-profile .sp-t6-more {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--dv-primary);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    float:right;
}

    .sp-profile .sp-t6-more:hover {
        color: var(--nt-brand-ink);
        text-decoration: underline;
    }
/* Hidden by default (JS will enable when needed) */
.sp-profile .sp-t6-more {
    display: none;
}

/* ================================
   Testimonials – internal grid lines only
   ================================ */

.sp-profile .sp-t6-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

/* Base cell */
.sp-profile .sp-t6 {
   border-radius: 0 !important;
}

    /* VERTICAL divider: every item in right column */
    .sp-profile .sp-t6:nth-child(2n) {
        border-left: 1px solid rgba(15,23,42,0.08);
    }

    /* HORIZONTAL divider: every item NOT in first row */
    .sp-profile .sp-t6:nth-child(n + 3) {
        border-top: 1px solid rgba(15,23,42,0.08);
    }

    /* Optional subtle hover (still flat) */
    .sp-profile .sp-t6:hover {
        background: rgba(46,134,230,0.035);
    }

/* Mobile: single column, only horizontal lines */
@media (max-width: 991.98px) {
    .sp-profile .sp-t6-grid {
        grid-template-columns: 1fr;
    }

    .sp-profile .sp-t6 {
        border-left: 0 !important;
    }

        .sp-profile .sp-t6 + .sp-t6 {
            border-top: 1px solid rgba(15,23,42,0.08);
        }
}


/* =====================================================================
   PRICING (3-up cards) — professional / clinical
   ===================================================================== */
.sp-profile .sp-price-row {
}

/* Base card */
.sp-profile .sp-price-card {
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
    overflow: hidden;
    background: #fff;
}

/* Header zone */
.sp-profile .sp-price-top {
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    background: #fff;
}

.sp-profile .sp-price-title {
    font-weight: 950;
    letter-spacing: -0.2px;
    font-size: 1.4rem;
    color: rgba(15,23,42,0.90);
}

.sp-profile .sp-price-sub {
    margin-top: 4px;
    font-size: 1rem;
    color: rgba(15,23,42,0.55);
    font-weight: 650;
}

/* Body */
.sp-profile .sp-price-body {
    padding: 1rem 18px 18px;
}

/* Price */
.sp-profile .sp-price-amt {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 2px 0 12px;
}

.sp-profile .sp-price-currency {
    font-weight: 900;
    color: rgba(15,23,42,0.75);
    font-size: 1.6rem;
}

.sp-profile .sp-price-value {
    font-weight: 950;
    letter-spacing: -0.35px;
    color: rgba(15,23,42,0.92);
    font-size: 1.5rem;
    line-height: 1;
}

/* Bullets (tight, professional) */
.sp-profile .sp-price-bullets {
    margin: 0 0 1rem;
    padding-left: 1.05rem;
}

    .sp-profile .sp-price-bullets li {
        padding: 4px 0;
        line-height: 1.6;
        color: rgba(15,23,42,0.72);
    }

/* Button uses your brand token but stays serious */
.sp-profile .sp-price-btn.btn.btn-primary {
    border-radius: 10px;
    padding: .6rem .75rem;
    font-weight: 850;
    letter-spacing: .1px;
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    box-shadow: 0 10px 18px rgba(15,23,42,0.08);
}

    .sp-profile .sp-price-btn.btn.btn-primary:hover {
        background: var(--nt-brand-ink) !important;
        border-color: var(--nt-brand-ink) !important;
    }

    .sp-profile .sp-price-btn.btn.btn-primary:focus,
    .sp-profile .sp-price-btn.btn.btn-primary:focus-visible {
        box-shadow: 0 0 0 4px var(--nt-ring) !important;
    }

/* Pricing meta rows with icons */
.sp-profile .sp-price-meta {
    margin: 8px 0 12px;
    padding: 8px 10px;
    background: rgba(15,23,42,0.03);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 8px;
    font-size: .9rem;
    line-height: 1.45;
    color: rgba(15,23,42,0.70);
}

.sp-profile .sp-price-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sp-profile .sp-price-meta-row + .sp-price-meta-row {
        margin-top: 2px;
    }

.sp-profile .sp-price-meta-ic {
    font-size: .9rem;
    color: rgba(15,23,42,0.55);
    flex: 0 0 auto;
}

/* Pricing meta with SVG icons */
.sp-profile .sp-price-meta {
    margin: 8px 0 12px;
    padding: 8px 10px;
    background: rgba(15,23,42,0.03);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 8px;
    font-size: .9rem;
    line-height: 1.45;
    color: rgba(15,23,42,0.70);
}

.sp-profile .sp-price-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sp-profile .sp-price-meta-row + .sp-price-meta-row {
        margin-top: 2px;
    }

/* SVG icon styling */
.sp-profile .sp-price-meta-ic {
    width: 16px;
    height: 16px;
    stroke: rgba(15,23,42,0.55);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}


/* ================================
   FINAL CTA (Profile Page)
   ================================ */

.sp-profile .sp-cta-card {
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.sp-profile .sp-cta-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.sp-profile .sp-cta-title {
    font-weight: 950;
    font-size: 1.35rem;
    letter-spacing: -0.2px;
    color: rgba(15,23,42,.90);
}

.sp-profile .sp-cta-sub {
    margin-top: 5px;
    font-size: 1rem;
}

.sp-profile .sp-cta-actions {
    display: flex;
    gap: 10px;
}

.sp-profile .sp-cta-btn {
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
}

/* Mobile stacking */
@media (max-width: 991.98px) {
    .sp-profile .sp-cta-body {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .sp-profile .sp-cta-actions {
        width: 100%;
    }

        .sp-profile .sp-cta-actions .btn {
            flex: 1;
        }
}
