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

:root {
    --navy: #0f2744;
    --navy2: #1a3a5c;
    --orange: #e05a2b;
    --orange2: #c44d22;
    --teal: #0d9e75;
    --teal2: #0a7a55;
    --bg: #f5f4f0;
    --white: #fff;
    --border: #e2dfd8;
    --text: #1a1a1a;
    --muted: #666;
    --light: #eef2f7;
}

html {
    scroll-behavior: smooth
}

/* ── BUTTONS ── */
.btn-p {
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(224, 90, 43, .35)
}

.btn-p:hover {
    background: var(--orange2);
    box-shadow: 0 6px 20px rgba(224, 90, 43, .45)
}

.btn-o {
    background: transparent;
    color: var(--navy);
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--navy);
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.btn-o:hover {
    background: var(--light)
}

.mob-ctas .btn-o {
    color: var(--navy, #0b1e38) !important;
    background: #fff !important;
    border-color: var(--navy, #0b1e38) !important
}

.mob-ctas .btn-o:hover {
    color: var(--navy, #0b1e38) !important;
    background: var(--light, #f5f8fb) !important;
    border-color: var(--navy, #0b1e38) !important
}

.btn-o-white {
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.btn-o-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8)
}

.btn-hero-blue {
    background: var(--navy2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.btn-hero-blue:hover {
    background: #244a72
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #0b1e38 0%, #0f2744 45%, #1a3a5c 100%);
    padding: 4.5rem 2.5rem 4rem;
    border-bottom: none;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(224, 90, 43, .18) 0%, transparent 65%), radial-gradient(ellipse at 10% 80%, rgba(13, 158, 117, .12) 0%, transparent 55%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: .6
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a07a;
    margin-bottom: 12px
}

.h1 {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 1.1rem
}

.h1 em {
    font-style: italic;
    color: #f5a07a
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 440px
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.trust-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap
}

.tbadge {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 5px
}

.tbadge i {
    color: #5dcaa5;
    font-size: 15px
}

/* ── HERO CONTACT CARD ── */
.hcard {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem
}

.hcard-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px
}

.hcard-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 1.25rem
}

.hcard-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem
}

.hc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border)
}

.hc-row:last-child {
    border-bottom: none
}

.hc-row i {
    font-size: 19px;
    color: var(--orange);
    flex-shrink: 0
}

.hc-lbl {
    font-size: 11.5px;
    color: var(--muted)
}

.hc-val {
    font-size: 14px;
    font-weight: 600
}

.hc-val a {
    color: var(--navy);
    text-decoration: none
}

.hc-val a:hover {
    color: var(--orange)
}

.hcard-hours {
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px
}

.hcard-hours i {
    color: var(--teal);
    font-size: 15px
}

/* ── TRUST / STATS BAR ── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.trust-bar-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto
}

.tb-stat {
    flex: 1;
    text-align: center;
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--border)
}

.tb-stat:last-child {
    border-right: none
}

.tb-num {
    font-family: 'Fraunces', serif;
    font-size: 25px;
    color: var(--navy);
    display: block;
    margin-bottom: 2px
}

.tb-lbl {
    font-size: 11.5px;
    color: var(--muted)
}

/* ── PARTNER BAR ── */
.partner-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2.5rem
}

.pb-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto
}

.pb-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0
}

.pb-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.pb-logo {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy2);
    display: flex;
    align-items: center;
    gap: 6px
}

.pb-logo i {
    font-size: 14px;
    color: var(--teal)
}

.samhsa {
    background: #eaf7f1;
    border: 1.5px solid var(--teal);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--teal2);
    display: flex;
    align-items: center;
    gap: 6px
}

.samhsa i {
    font-size: 16px
}

/* ── SECTION SCAFFOLDING ── */
.sec {
    padding: 3.5rem 2.5rem
}

.sec-alt {
    background: var(--white)
}

.sec-inner {
    max-width: 1200px;
    margin: 0 auto
}

.sec-ey {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px
}

.sec-h {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: .5rem;
    letter-spacing: -.3px
}

.sec-sub {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 600px
}

/* ── WHAT BRINGS YOU HERE ── */
.wby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.wby-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    background: var(--white)
}

.wby-card:hover {
    border-color: var(--navy2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 39, 68, .1)
}

.wby-card.urg {
    border-color: #f5c4a8;
    background: #fffaf7
}

.wby-card.urg:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(224, 90, 43, .12)
}

.wby-urg {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    background: #fff0e8;
    color: var(--orange2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: .3px
}

.wby-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.wi-b {
    background: var(--light)
}

.wi-b i {
    color: var(--navy2);
    font-size: 22px
}

.wi-o {
    background: #fff0e8
}

.wi-o i {
    color: var(--orange);
    font-size: 22px
}

.wi-t {
    background: #eaf7f1
}

.wi-t i {
    color: var(--teal);
    font-size: 22px
}

.wi-p {
    background: #f5f0ff
}

.wi-p i {
    color: #7c3aed;
    font-size: 22px
}

.wby-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35
}

.wby-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 12px
}

/* ── PRICE CHIP ── */
.wby-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 10px;
    border: 1px solid var(--border)
}

.wby-price {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    color: var(--navy);
    line-height: 1
}

.wby-price-lbl {
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 500;
    text-align: right;
    line-height: 1.3
}

.wby-price-row.pr-urg {
    background: #fff0e8;
    border-color: #f5c4a8
}

.wby-price-row.pr-urg .wby-price {
    color: var(--orange2)
}

.wby-price-row.pr-teal {
    background: #eaf7f1;
    border-color: #9fd8be
}

.wby-price-row.pr-teal .wby-price {
    color: var(--teal2)
}

.wby-price-row.pr-purple {
    background: #f5f0ff;
    border-color: #c4b5fd
}

.wby-price-row.pr-purple .wby-price {
    color: #5b21b6
}

.wby-cta {
    font-size: 12.5px;
    color: var(--navy2);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px
}

/* ── INDUSTRIES SECTION ── */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.ind-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem;
    display: block;
    position: relative;
    transition: border-color .15s, transform .15s;
    cursor: pointer
}

.ind-card:hover {
    border-color: var(--navy2);
    transform: translateY(-3px)
}

.ind-card.featured {
    border: 2px solid var(--navy2);
    background: #f7fbff
}

.ind-card.new-badge-card {
    border-color: #7c3aed
}

.ind-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: .3px
}

.ib-core {
    background: #e6f0fa;
    color: #1a3a5c
}

.ib-new {
    background: #f5f0ff;
    color: #5b21b6
}

.ib-growth {
    background: #eaf7f1;
    color: #0a7a55
}

.ind-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.ii-blue {
    background: var(--light)
}

.ii-blue i {
    color: var(--navy2);
    font-size: 21px
}

.ii-orange {
    background: #fff4f0
}

.ii-orange i {
    color: var(--orange);
    font-size: 21px
}

.ii-teal {
    background: #eaf7f1
}

.ii-teal i {
    color: var(--teal);
    font-size: 21px
}

.ii-purple {
    background: #f5f0ff
}

.ii-purple i {
    color: #7c3aed;
    font-size: 21px
}

.ii-amber {
    background: #fffbeb
}

.ii-amber i {
    color: #d97706;
    font-size: 21px
}

.ii-rose {
    background: #fff1f2
}

.ii-rose i {
    color: #e11d48;
    font-size: 21px
}

.ind-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px
}

.ind-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px
}

.ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px
}

.ind-tag {
    font-size: 11px;
    font-weight: 600;
    background: var(--bg);
    color: #555;
    padding: 3px 8px;
    border-radius: 4px
}

.ind-lnk {
    font-size: 12.5px;
    color: var(--navy2);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.ind-card-link {
    position: absolute;
    inset: 0;
    border-radius: 14px
}

/* ── SERVICES ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.svc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: block;
    transition: border-color .15s, transform .15s;
    cursor: pointer;
    position: relative
}

.svc-card:hover {
    border-color: var(--navy2);
    transform: translateY(-3px)
}

.svc-card.top {
    border: 2px solid var(--navy2);
    background: #f7fbff
}

.svc-card.hot {
    border: 2px solid #e11d48;
    background: #fff5f7
}

.top-b {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 12px
}

.hot-b {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    background: #e11d48;
    color: #fff;
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 12px
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.si-b {
    background: var(--light)
}

.si-b i {
    color: var(--navy2);
    font-size: 20px
}

.si-r {
    background: #fff4f0
}

.si-r i {
    color: var(--orange);
    font-size: 20px
}

.si-t {
    background: #eaf7f1
}

.si-t i {
    color: var(--teal);
    font-size: 20px
}

.si-rose {
    background: #fff1f2
}

.si-rose i {
    color: #e11d48;
    font-size: 20px
}

.svc-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.svc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px
}

.svc-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px
}

.svc-lnk {
    font-size: 12.5px;
    color: var(--navy2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.svc-lnk i {
    font-size: 13px
}

.svc-card-link {
    position: absolute;
    inset: 0;
    border-radius: 14px
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--navy);
    padding: 3.5rem 2.5rem
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto
}

.how-ey {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7aaac8;
    margin-bottom: 6px
}

.how-h {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -.3px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.step {
    position: relative
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #e8f2f8;
    margin-bottom: 5px
}

.step-desc {
    font-size: 13px;
    color: #7aaac8;
    line-height: 1.6
}

.step-arr {
    position: absolute;
    top: 19px;
    right: -10px;
    color: #2a5a7a;
    font-size: 18px
}

/* ── COMPLIANCE ── */
.comp-sec {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-top: 1px solid var(--border)
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto
}

.comp-ey {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px
}

.comp-h {
    font-family: 'Fraunces', serif;
    font-size: 27px;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem
}

.comp-body {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem
}

.comp-list {
    list-style: none;
    margin-bottom: 1.75rem
}

.comp-list li {
    font-size: 13.5px;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-bottom: 1px solid #f0ede8;
    line-height: 1.55
}

.comp-list li:last-child {
    border-bottom: none
}

.comp-list li i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0
}

.li-warn {
    color: var(--orange)
}

.li-ok {
    color: var(--teal)
}

.comp-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.comp-right {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem
}

.csg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1rem
}

.cstat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center
}

.csn {
    font-family: 'Fraunces', serif;
    font-size: 23px;
    color: var(--navy);
    display: block;
    margin-bottom: 3px
}

.csl {
    font-size: 12px;
    color: var(--muted)
}

.comp-warn {
    background: #fff8f5;
    border: 1.5px solid #f5c4a8;
    border-radius: 10px;
    padding: 1rem;
    font-size: 13px;
    color: #7a3010;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.55
}

.comp-warn i {
    font-size: 19px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px
}

/* ── COMPARISON TABLE ── */
.cmp-sec {
    background: var(--bg);
    padding: 3.5rem 2.5rem
}

.cmp-inner {
    max-width: 1200px;
    margin: 0 auto
}

.ctbl-wrap {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white)
}

.ctbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    table-layout: fixed
}

.ctbl th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: var(--navy);
    color: #7aaac8;
    border-right: 1px solid #1e3d5c
}

.ctbl th.hl {
    background: var(--orange2);
    color: #fff;
    border-right: 1px solid var(--orange2)
}

.ctbl th:first-child {
    color: #c8ddf0
}

.ctbl th:last-child,
.ctbl td:last-child {
    border-right: none
}

.ctbl td {
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: #333;
    vertical-align: middle;
    line-height: 1.45
}

.ctbl tr:last-child td {
    border-bottom: none
}

.ctbl td.feat {
    font-weight: 600;
    color: var(--navy);
    background: #fafaf8
}

.ctbl td.hl {
    background: #fffaf7;
    font-weight: 600;
    color: var(--navy)
}

.ctbl tr:hover td {
    background: #f8f7f4
}

.ctbl tr:hover td.hl {
    background: #fff5f0
}

.ctbl tr:hover td.feat {
    background: #f2f0ec
}

.chk {
    color: var(--teal);
    font-size: 17px;
    vertical-align: -3px
}

.xmk {
    color: #ccc;
    font-size: 17px;
    vertical-align: -3px
}

.pmk {
    color: #e8a020;
    font-size: 15px;
    vertical-align: -2px
}

.cmp-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center
}

/* ── PRICING ── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.pc {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem
}

.pc.hl {
    border: 2px solid var(--orange);
    background: #fffaf7
}

.ppill {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px
}

.pp-b {
    background: #e6f0fa;
    color: #1a3a5c
}

.pp-o {
    background: #fff0e8;
    color: #c44d22
}

.pp-g {
    background: #eaf7f1;
    color: #0a7a55
}

.pname {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px
}

.pamt {
    font-family: 'Fraunces', serif;
    font-size: 33px;
    color: var(--navy);
    line-height: 1
}

.psuf {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
    margin-top: 2px
}

.pbrk {
    background: var(--bg);
    border-radius: 8px;
    padding: .8rem;
    margin-bottom: 1rem;
    font-size: 12.5px;
    color: #555;
    line-height: 1.75
}

.pbrk strong {
    color: var(--navy)
}

.pf {
    list-style: none;
    margin-bottom: 1.25rem
}

.pf li {
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.45
}

.pf li i {
    color: var(--teal);
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0
}

.btn-blk {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    border: none
}

.bb-o {
    background: var(--orange);
    color: #fff
}

.bb-o:hover {
    background: var(--orange2)
}

.bb-n {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy)
}

.bb-n:hover {
    background: var(--light)
}

/* ── TESTIMONIALS ── */
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.tc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem
}

.tstars {
    color: #e8a020;
    font-size: 15px;
    margin-bottom: 9px;
    letter-spacing: 1px
}

.tquote {
    font-size: 13.5px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px
}

.tauth {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy)
}

.trole {
    font-size: 12px;
    color: var(--muted)
}

.tvfy {
    font-size: 11.5px;
    color: var(--teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px
}

.tvfy i {
    font-size: 13px
}

.tind {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 8px
}

.ti-trans {
    background: #e6f0fa;
    color: #1a3a5c
}

.ti-const {
    background: #fffbeb;
    color: #92400e
}

.ti-health {
    background: #fff1f2;
    color: #9f1239
}

/* ── BLOG ── */
.bgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.bcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color .15s, transform .15s
}

.bcard:hover {
    border-color: var(--navy2);
    transform: translateY(-2px)
}

.bimg {
    background: var(--light);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center
}

.bimg i {
    font-size: 32px;
    color: #c0cdd8
}

.bbody {
    padding: 1.1rem
}

.btag {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 5px
}

.btitle {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 7px
}

.bread {
    font-size: 12.5px;
    color: var(--navy2);
    font-weight: 600
}

/* ── FAQ ── */
.faq-wrap {
    max-width: 720px
}

.fi {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    margin-bottom: 8px;
    overflow: hidden
}

.fq {
    padding: 1rem 1.25rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    user-select: none
}

.fq:hover {
    background: #fafaf8
}

.fq i {
    font-size: 17px;
    color: #aaa;
    transition: transform .2s;
    flex-shrink: 0
}

.fq.op i {
    transform: rotate(180deg)
}

.fa {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #f0ede8
}

.fa.op {
    display: block
}

/* ── DEV NOTES ── */
.dev-notes {
    background: #fff8f0;
    border: 2px solid #f5c4a8;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem
}

.dev-notes h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.dev-notes h3 i {
    font-size: 18px
}

.dev-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f5e0cc;
    font-size: 13.5px;
    color: #444;
    line-height: 1.55
}

.dev-item:last-child {
    border-bottom: none
}

.dev-item i {
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.dev-item strong {
    color: var(--navy2)
}

/* ── MARKET OPPORTUNITY BANNER ── */
.mkt-band {
    background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%);
    padding: 3rem 2.5rem
}

.mkt-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.mkt-left h2 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: -.3px
}

.mkt-left p {
    font-size: 14px;
    color: #7aaac8;
    line-height: 1.7;
    margin-bottom: 1.25rem
}

.mkt-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.mkt-stat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: .9rem;
    text-align: center
}

.mkt-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: #fff;
    display: block;
    margin-bottom: 2px
}

.mkt-stat-lbl {
    font-size: 11px;
    color: #7aaac8
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--orange);
    padding: 4rem 2.5rem;
    text-align: center
}

.cta-h {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: .6rem;
    letter-spacing: -.3px
}

.cta-p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.75rem
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.bw {
    background: #fff;
    color: var(--orange2);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.bw:hover {
    background: #f0ede8
}

.bw2 {
    background: transparent;
    color: #fff;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.bw2:hover {
    background: rgba(255, 255, 255, .1)
}

.bg3 {
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.bg3:hover {
    background: rgba(255, 255, 255, .08)
}


.cbr {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.cb {
    background: #122235;
    border: 1px solid #1e3d5c;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: #6a8fa8
}

/* ── AUDIENCE SPLIT + RTD STRIP ── */
.path-sec {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-bottom: 1px solid var(--border)
}

.path-inner {
    max-width: 1200px;
    margin: 0 auto
}

.path-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.4rem;
    flex-wrap: wrap
}

.path-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px
}

.path-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    color: var(--navy);
    letter-spacing: -.3px;
    line-height: 1.2
}

.path-sub {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 540px
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.path-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .15s, border-color .15s, box-shadow .15s
}

.path-card:hover {
    transform: translateY(-2px);
    border-color: var(--navy2);
    box-shadow: 0 10px 30px rgba(15, 39, 68, .08)
}

.path-card.dot {
    background: linear-gradient(135deg, #f7fbff 0%, #fff 75%)
}

.path-card.emp {
    background: linear-gradient(135deg, #fffaf7 0%, #fff 75%)
}

.path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.path-card.dot .path-icon {
    background: var(--light);
    color: var(--navy2)
}

.path-card.emp .path-icon {
    background: #fff0e8;
    color: var(--orange)
}

.path-icon i {
    font-size: 24px
}

.path-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px
}

.path-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px
}

.path-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 18px
}

.path-list span {
    font-size: 12.5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px
}

.path-list i {
    font-size: 14px;
    color: var(--teal)
}

.path-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.path-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy2);
    text-decoration: underline
}

.rtd-strip {
    background: #fff7f2;
    border-top: 1px solid #f5c4a8;
    border-bottom: 1px solid #f5c4a8;
    padding: 1rem 2.5rem
}

.rtd-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap
}

.rtd-copy {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.rtd-copy i {
    font-size: 26px;
    color: var(--orange);
    margin-top: 2px;
    flex-shrink: 0
}

.rtd-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2px
}

.rtd-text {
    font-size: 13.5px;
    color: #6b4a3a;
    line-height: 1.55
}

.rtd-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.mobile-sticky {
    display: none
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

    .hero-grid,
    .comp-grid,
    .mkt-inner {
        grid-template-columns: 1fr
    }

    .svc-grid,
    .tgrid,
    .bgrid,
    .price-grid,
    .ind-grid,
    .path-grid {
        grid-template-columns: 1fr 1fr
    }

    .wby-grid,
    .steps {
        grid-template-columns: 1fr 1fr
    }

    .h1 {
        font-size: 34px
    }

    .fg {
        grid-template-columns: 1fr 1fr
    }

    .mkt-stats {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(max-width:600px) {
    .nl {
        display: none
    }

    .mob-menu-btn {
        display: block
    }

    .svc-grid,
    .tgrid,
    .bgrid,
    .price-grid,
    .wby-grid,
    .steps,
    .ind-grid,
    .path-grid {
        grid-template-columns: 1fr
    }

    .h1 {
        font-size: 30px
    }

    .hero,
    .sec,
    .how-sec,
    .comp-sec,
    .cmp-sec,
    .cta-band,
    .mkt-band,
    .path-sec {
        padding: 2.5rem 1.25rem
    }

    .trust-bar,
    .partner-bar {
        padding: 0 1.25rem
    }

    .trust-bar-inner {
        flex-wrap: wrap
    }

    .tb-stat {
        flex: 1 1 calc(50% - 1px)
    }

    .ctbl {
        font-size: 12px
    }

    .ctbl th,
    .ctbl td {
        padding: .6rem .75rem
    }

    .mkt-stats {
        grid-template-columns: 1fr
    }

    .path-list {
        grid-template-columns: 1fr
    }

    .rtd-strip {
        padding: 1rem 1.25rem
    }

    body {
        padding-bottom: 68px
    }

    .mobile-sticky {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 450;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
        padding: 8px;
        gap: 8px
    }

    .mobile-sticky a {
        flex: 1;
        text-align: center;
        border-radius: 8px;
        padding: 10px 6px;
        font-size: 12.5px;
        font-weight: 800;
        color: #fff;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px
    }

    .mobile-sticky a:nth-child(2) {
        background: var(--orange)
    }

    .mobile-sticky a:nth-child(3) {
        background: var(--teal2)
    }
}

/* ── PRICING PAGE ── */
.price-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: #fff;
    padding: 4.5rem 2.5rem 3.75rem;
    position: relative;
    overflow: hidden
}

.price-hero:after {
    content: '';
    position: absolute;
    right: -100px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(224, 90, 43, .18)
}

.price-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.price-crumb {
    font-size: 12px;
    color: #a9c1d5;
    margin-bottom: 1rem
}

.price-crumb a {
    color: #fff;
    text-decoration: none
}

.price-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb28d;
    margin-bottom: .75rem
}

.price-title {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.5px;
    margin-bottom: 1rem
}

.price-copy {
    font-size: 16px;
    line-height: 1.75;
    color: #d6e3ee;
    max-width: 700px;
    margin-bottom: 1.4rem
}

.price-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.price-actions .btn-p {
    background: var(--orange)
}

.price-actions .btn-o {
    color: #fff;
    border-color: #7aaac8
}

.price-actions .btn-o:hover {
    background: rgba(255, 255, 255, .1)
}

.price-card-mini {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    padding: 1.4rem;
    backdrop-filter: blur(8px)
}

.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: 13px;
    color: #dce9f4
}

.mini-row:last-child {
    border-bottom: none
}

.mini-row strong {
    color: #fff
}

.mini-row span:last-child {
    color: #ffb28d;
    font-weight: 800
}

.price-note-top {
    background: #fff7f2;
    border-bottom: 1px solid #f2d2c4;
    padding: .85rem 2.5rem;
    color: #7a3010;
    font-size: 13px;
    text-align: center
}

.price-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch
}

.plan {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 24px rgba(15, 39, 68, .04)
}

.plan.featured {
    border: 2px solid var(--orange);
    background: #fffaf7;
    transform: translateY(-5px)
}

.plan-tag {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--orange);
    margin-bottom: .5rem
}

.plan-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .4rem
}

.plan-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    min-height: 62px
}

.plan-price {
    font-family: 'Fraunces', serif;
    color: var(--navy);
    font-size: 39px;
    line-height: 1;
    margin: 1rem 0 .25rem
}

.plan-price small {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.plan-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 1rem
}

.plan-list {
    list-style: none;
    margin: 0 0 1.25rem
}

.plan-list li {
    display: flex;
    gap: 8px;
    font-size: 13.2px;
    color: #444;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px solid #f1eee8
}

.plan-list li:last-child {
    border-bottom: none
}

.plan-list i {
    color: var(--teal);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.plan .btn-blk {
    margin-top: auto
}

.price-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.price-panel {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 15px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 205px
}

.panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px
}

.panel-icon i {
    color: var(--navy2);
    font-size: 20px
}

.panel-name {
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 5px
}

.panel-copy {
    font-size: 12.8px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1
}

.panel-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 10px
}

.panel-link {
    font-weight: 800;
    color: var(--navy2);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.panel-link:hover {
    color: var(--orange)
}

.fee-table {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.fee-row {
    display: grid;
    grid-template-columns: 1.2fr .6fr 2fr;
    border-bottom: 1px solid var(--border)
}

.fee-row:last-child {
    border-bottom: none
}

.fee-row div {
    padding: 14px 16px;
    font-size: 13.5px
}

.fee-row.head div {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px
}

.fee-row div:nth-child(2) {
    font-weight: 900;
    color: var(--orange)
}

.fee-row.head div:nth-child(2) {
    color: #fff
}

/* ── DETAILED PANEL PRICING TABLE ── */
.panel-pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 1.5rem
}

.panel-table-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 39, 68, .06)
}

.panel-table-head {
    background: linear-gradient(135deg, var(--navy2), #095da8);
    color: #fff;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 14px;
    align-items: center
}

.panel-table-head .panel-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0
}

.panel-table-head .panel-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd39c;
    font-weight: 900;
    margin-bottom: 2px
}

.panel-table-head h3 {
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
    color: #fff
}

.panel-table-body {
    padding: 1.35rem 1.5rem 1.5rem
}

.panel-table-copy {
    font-size: 14px;
    color: #233;
    line-height: 1.65;
    margin-bottom: 1.1rem
}

.panel-table-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px
}

.panel-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

.panel-option {
    background: #eef2f7;
    border: 1px solid #d9e1ec;
    border-radius: 7px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--navy);
    transition: all .15s ease;
    min-height: 52px
}

.panel-option:hover {
    background: #fff7f2;
    border-color: #f5c4a8;
    transform: translateY(-1px)
}

.panel-option .panel-option-name {
    font-weight: 850;
    font-size: 14px;
    line-height: 1.25
}

.panel-option .panel-option-price {
    font-weight: 900;
    color: #f29b10;
    font-size: 13px;
    white-space: nowrap
}

.panel-option.member-prompt {
    background: #0d5fa8;
    color: #fff;
    border-color: #0d5fa8;
    justify-content: center;
    text-align: center
}

.panel-option.member-prompt:hover {
    background: #0a4d88;
    border-color: #0a4d88
}

.panel-option.member-prompt .panel-option-name {
    color: #fff
}

.panel-option.member-prompt .panel-option-price {
    display: none
}

.panel-pricing-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65
}

.panel-pricing-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.25rem
}

@media(max-width:900px) {
    .panel-pricing-wrap {
        grid-template-columns: 1fr
    }

    .panel-options {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .panel-options {
        grid-template-columns: 1fr
    }

    .panel-table-head {
        padding: 1rem 1.1rem
    }

    .panel-table-body {
        padding: 1.1rem
    }
}

.member-pricing-callout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
    background: #fffaf7;
    border: 1.5px solid #f5c4a8;
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem
}

.member-pricing-callout h3 {
    font-family: 'Fraunces', serif;
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 6px
}

.member-pricing-callout p {
    font-size: 14px;
    color: #555;
    line-height: 1.7
}

.member-pricing-callout strong {
    color: var(--orange2)
}

.member-save-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center
}

.member-save-box .big {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--orange);
    line-height: 1
}

.member-save-box .small {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px
}

.member-table {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 39, 68, .06)
}

.member-row {
    display: grid;
    grid-template-columns: 1.25fr .55fr .55fr .9fr;
    border-bottom: 1px solid var(--border)
}

.member-row:last-child {
    border-bottom: none
}

.member-row>div {
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.45
}

.member-row.head>div {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px
}

.member-row>div:nth-child(3) {
    font-weight: 900;
    color: var(--orange2);
    background: #fffaf7
}

.member-row.head>div:nth-child(3) {
    background: var(--orange2);
    color: #fff
}

.member-row>div:first-child {
    font-weight: 700;
    color: var(--navy)
}

.member-note {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 12px
}

.member-cta {
    margin-top: 1.25rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

@media(max-width:800px) {

    /* ── DETAILED PANEL PRICING TABLE ── */
    .panel-pricing-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        margin-top: 1.5rem
    }

    .panel-table-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(15, 39, 68, .06)
    }

    .panel-table-head {
        background: linear-gradient(135deg, var(--navy2), #095da8);
        color: #fff;
        padding: 1.25rem 1.5rem;
        display: flex;
        gap: 14px;
        align-items: center
    }

    .panel-table-head .panel-head-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .13);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        flex-shrink: 0
    }

    .panel-table-head .panel-kicker {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #ffd39c;
        font-weight: 900;
        margin-bottom: 2px
    }

    .panel-table-head h3 {
        font-size: 20px;
        line-height: 1.25;
        margin: 0;
        color: #fff
    }

    .panel-table-body {
        padding: 1.35rem 1.5rem 1.5rem
    }

    .panel-table-copy {
        font-size: 14px;
        color: #233;
        line-height: 1.65;
        margin-bottom: 1.1rem
    }

    .panel-table-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.6px;
        font-weight: 900;
        color: var(--navy);
        margin-bottom: 10px
    }

    .panel-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px
    }

    .panel-option {
        background: #eef2f7;
        border: 1px solid #d9e1ec;
        border-radius: 7px;
        padding: 13px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: var(--navy);
        transition: all .15s ease;
        min-height: 52px
    }

    .panel-option:hover {
        background: #fff7f2;
        border-color: #f5c4a8;
        transform: translateY(-1px)
    }

    .panel-option .panel-option-name {
        font-weight: 850;
        font-size: 14px;
        line-height: 1.25
    }

    .panel-option .panel-option-price {
        font-weight: 900;
        color: #f29b10;
        font-size: 13px;
        white-space: nowrap
    }

    .panel-option.member-prompt {
        background: #0d5fa8;
        color: #fff;
        border-color: #0d5fa8;
        justify-content: center;
        text-align: center
    }

    .panel-option.member-prompt:hover {
        background: #0a4d88;
        border-color: #0a4d88
    }

    .panel-option.member-prompt .panel-option-name {
        color: #fff
    }

    .panel-option.member-prompt .panel-option-price {
        display: none
    }

    .panel-pricing-note {
        margin-top: 14px;
        font-size: 12.5px;
        color: var(--muted);
        line-height: 1.65
    }

    .panel-pricing-cta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 1.25rem
    }

    @media(max-width:900px) {
        .panel-pricing-wrap {
            grid-template-columns: 1fr
        }

        .panel-options {
            grid-template-columns: 1fr 1fr
        }
    }

    @media(max-width:560px) {
        .panel-options {
            grid-template-columns: 1fr
        }

        .panel-table-head {
            padding: 1rem 1.1rem
        }

        .panel-table-body {
            padding: 1.1rem
        }
    }

    .member-pricing-callout {
        grid-template-columns: 1fr
    }

    .member-row {
        grid-template-columns: 1fr
    }

    .member-row.head {
        display: none
    }

    .member-row>div {
        border-bottom: 1px solid #f0ede8
    }

    .member-row>div:before {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: #777;
        font-weight: 800;
        margin-bottom: 2px
    }

    .member-row>div:nth-child(1):before {
        content: 'Service'
    }

    .member-row>div:nth-child(2):before {
        content: 'Non-member'
    }

    .member-row>div:nth-child(3):before {
        content: 'Member'
    }

    .member-row>div:nth-child(4):before {
        content: 'Notes'
    }
}

.pay-strip {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.pay-title {
    font-weight: 900;
    color: var(--navy);
    font-size: 16px
}

.pay-copy {
    font-size: 13px;
    color: var(--muted)
}

.pay-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.pay-badge {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy)
}

@media(max-width:900px) {
    .price-hero-inner {
        grid-template-columns: 1fr
    }

    .price-title {
        font-size: 36px
    }

    .price-plans {
        grid-template-columns: 1fr
    }

    .plan.featured {
        transform: none
    }

    .price-grid2 {
        grid-template-columns: 1fr 1fr
    }

    .fee-row {
        grid-template-columns: 1fr
    }

    .fee-row.head {
        display: none
    }

    .fee-row div {
        border-bottom: 1px solid #f1eee8
    }

    .fee-row div:last-child {
        border-bottom: none
    }
}

@media(max-width:560px) {
    .price-hero {
        padding: 3.2rem 1.25rem
    }

    .price-note-top {
        padding: .8rem 1.25rem
    }

    .price-grid2 {
        grid-template-columns: 1fr
    }

    .price-title {
        font-size: 32px
    }

    .price-actions a {
        width: 100%;
        text-align: center
    }

    .sec {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }
}

/* ── DRUG TESTING PANELS SECTION (MATCHES PRICING THEME) ── */
.drug-panels-sec {
    background: var(--bg);
    padding: 3.8rem 2.5rem;
    border-top: 1px solid var(--border)
}

.drug-panels-inner {
    max-width: 1180px;
    margin: 0 auto
}

.drug-panels-eyebrow {
    text-align: center;
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 2.8px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px
}

.drug-panels-title {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 34px;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 10px
}

.drug-panels-sub {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.8rem;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7
}

.drug-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start
}

.drug-panel-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 39, 68, .04)
}

.drug-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1eee8
}

.drug-panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff3ec;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0
}

.drug-panel-kicker {
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .7px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 4px
}

.drug-panel-head h3 {
    font-size: 20px;
    line-height: 1.25;
    color: var(--navy);
    margin: 0;
    font-weight: 900
}

.drug-panel-copy {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem
}

.drug-panel-label {
    font-size: 11px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 10px
}

.drug-panel-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1rem
}

.drug-panel-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #f1eee8;
    color: #333
}

.drug-panel-row:last-child {
    border-bottom: none
}

.drug-panel-row:hover {
    background: #fffaf7
}

.drug-panel-name {
    font-weight: 800;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.3
}

.drug-panel-price {
    font-weight: 900;
    color: var(--orange);
    font-size: 14px;
    white-space: nowrap
}

.drug-panel-member {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: .75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800
}

.drug-panel-member strong {
    color: var(--teal)
}

.drug-panels-note {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: .65rem
}

.drug-panels-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.75rem
}

@media(max-width:1100px) {
    .drug-panels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:900px) {
    .drug-panels-grid {
        grid-template-columns: 1fr
    }

    .drug-panels-title {
        font-size: 29px
    }
}

@media(max-width:560px) {
    .drug-panels-sec {
        padding: 3rem 1.25rem
    }

    .drug-panel-card {
        padding: 1.2rem
    }

    .drug-panel-row {
        grid-template-columns: 1fr
    }

    .drug-panel-price {
        white-space: normal
    }

    .drug-panel-member {
        align-items: flex-start;
        flex-direction: column
    }
}

.guide-nav-menu {
    min-width: 300px;
    max-height: 70vh;
    overflow: auto
}
