header.header-full.transparent {
    background: linear-gradient(90deg, rgba(18, 99, 79, .97), rgba(23, 33, 28, .94)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 14px 34px rgba(23, 33, 28, .16);
    backdrop-filter: blur(12px);
    z-index: 1001;
}

header.header-full #mainmenu > li > a,
header.header-full #mainmenu > li.has-child:after {
    color: #fff !important;
    text-shadow: none;
}

header.header-full .btn-line {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35);
}

header.header-full #mainmenu ul {
    background: #fff;
}

header.header-full #mainmenu ul li a.menu-item {
    color: #17211c !important;
}

.zuna-gpt-page,
.zuna-detail-page {
    --ink: #14231c;
    --muted: #66776e;
    --brand: #12634f;
    --gold: #c79936;
    --line: #dce8e1;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 12%, rgba(199, 153, 54, .18), transparent 28rem),
        radial-gradient(circle at 90% 5%, rgba(18, 99, 79, .12), transparent 26rem),
        linear-gradient(135deg, #f8faf6 0%, #eef6f1 52%, #fffaf0 100%);
    color: var(--ink);
}

.zuna-gpt-page {
    padding: 54px 0 80px;
}

.zuna-detail-page {
    padding: 104px 0 74px;
}

.zuna-gpt-page *,
.zuna-detail-page * {
    box-sizing: border-box;
}

.zuna-gpt-page a,
.zuna-detail-page a {
    text-decoration: none;
}

.zuna-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.zuna-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border: 1px solid rgba(18, 99, 79, .18);
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 255, 255, .76);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.zuna-hero {
    display: grid;
    /*grid-template-columns: minmax(0, 1fr) 380px;*/
    gap: 28px;
    align-items: start;
}

.zuna-copy {
    padding: 0px 0 10px;
}

.zuna-copy h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    color: var(--ink);
    font-size: clamp(2.45rem, 3.45vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.zuna-lead {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.55vw, 1.22rem);
    line-height: 1.72;
}

.ask-card {
    padding: 10px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(21, 39, 30, .14);
    backdrop-filter: blur(14px);
}

/* =====================================
   QUESTION FORM
   ===================================== */

.prompt-form {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.prompt-field {
    position: relative;
    min-width: 0;
}

.prompt-form label {
    display: block;
    margin: 0 0 6px 6px;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 800;
}

.prompt-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: 1rem;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.prompt-form input::placeholder{
    color: #4b5563 !important;
    opacity: 1 !important;
}

.prompt-form input::-webkit-input-placeholder{
    color:#c9ced6;
}

.prompt-form input::-moz-placeholder{
    color:#c9ced6;
    opacity:1;
}

.prompt-form input:-ms-input-placeholder{
    color:#c9ced6;
}

.prompt-form input::-ms-input-placeholder{
    color:#c9ced6;
}

.prompt-form input:focus {
    border-color: rgba(18, 99, 79, .35);
    background: #fbfdfc;
    box-shadow: 0 0 0 4px rgba(18, 99, 79, .08);
}

/* =====================================
   AUTOCOMPLETE SUGGESTIONS
   ===================================== */

#suggestionList {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: calc(100% - 8px);
    z-index: 9999;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 7px;
    border: 1px solid #dce8e1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(21, 39, 30, .18);
    list-style: none;
}

#suggestionList li {
    position: relative;
    display: block;
    margin: 0;
    padding: 13px 15px 13px 44px;
    border: 0;
    border-bottom: 1px solid #edf2ef;
    border-radius: 8px;
    color: #263b31;
    background: #fff;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

#suggestionList li:last-child {
    border-bottom: 0;
}

#suggestionList li::before {
    content: "\f002";
    position: absolute;
    left: 16px;
    top: 50%;
    color: var(--brand);
    font-family: "FontAwesome";
    font-size: 13px;
    transform: translateY(-50%);
}

#suggestionList li:hover {
    color: var(--brand);
    background: #edf6f1;
    transform: translateX(2px);
}

/* Scrollbar */

#suggestionList::-webkit-scrollbar {
    width: 6px;
}

#suggestionList::-webkit-scrollbar-track {
    background: #f2f6f4;
}

#suggestionList::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(18, 99, 79, .35);
}

/* =====================================
   SUBMIT BUTTON
   ===================================== */

.zuna-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #0b8063);
    font: inherit;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 16px 30px rgba(18, 99, 79, .24);
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.zuna-btn:hover {
    filter: brightness(.98);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(18, 99, 79, .3);
}

.prompt-field {
    position: relative;
}

@media (max-width: 640px) {
    .prompt-form {
        grid-template-columns: 1fr;
    }

    #suggestionList {
        left: 0;
        right: 0;
        top: calc(100% + 8px);
    }

    .zuna-btn {
        width: 100%;
    }
}

.typeahead-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    max-height: 220px;
    overflow: auto;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(21, 39, 30, .16);
    list-style: none;
}

.typeahead-list.is-open {
    display: block;
}

.typeahead-list button {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: #263b31;
    font: inherit;
    font-size: .95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.typeahead-list button:hover,
.typeahead-list button.is-active {
    color: var(--brand);
    background: #edf6f1;
}

.zuna-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #0b8063);
    font: inherit;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(18, 99, 79, .24);
    cursor: pointer;
}

.zuna-btn:hover {
    filter: brightness(.98);
    transform: translateY(-1px);
}

.zuna-btn.secondary {
    color: var(--brand);
    background: #edf6f1;
    box-shadow: none;
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, .82);
    color: #3e5148;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
}

.chip:hover {
    border-color: rgba(18, 99, 79, .35);
    color: var(--brand);
    background: #fff;
}

.advisor-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    min-height: 260px;
    margin-top: 0;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(145deg, rgba(18, 99, 79, .96), rgba(91, 73, 54, .92));
    box-shadow: 0 28px 80px rgba(21, 39, 30, .22);
}

.advisor-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .22), transparent 14rem),
        radial-gradient(circle at 92% 78%, rgba(199, 153, 54, .26), transparent 18rem);
}

.advisor-card > * {
    position: relative;
    z-index: 1;
}

.advisor-card .zuna-eyebrow {
    color: #0f5a49;
    background: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .3);
}

.advisor-card h2 {
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 3.1vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -.02em;
}

.advisor-card p {
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
    line-height: 1.75;
}

.advisor-steps {
    display: grid;
    gap: 12px;
}

.advisor-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    background: rgba(255, 255, 255, .11);
}

.advisor-step strong {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    font-size: .95rem;
}

.answer-panel {
    margin-top: 16px;
    padding: 24px;
    border: 1px solid rgba(18, 99, 79, .14);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(21, 39, 30, .1);
}

.inline-answer {
    border-left: 5px solid var(--gold);
}

.answer-panel h2,
.answer-title h2 {
    margin: 0 0 12px;
    color: var(--ink);
}

.question-line {
    margin: 0 0 12px;
    color: var(--brand);
    font-weight: 800;
}

.answer-text {
    color: #586961;
    font-size: 1rem;
    line-height: 1.85;
}

.empty-note {
    margin: 13px 4px 0;
    color: var(--muted);
    line-height: 1.6;
}

.zuna-section {
    padding-top: 4px;
}

.section-head {
    display: inline;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.question-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.question-card {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 44px rgba(21, 39, 30, .08);
    transition: .2s ease;
}

.question-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.question-card:hover,
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(21, 39, 30, .13);
}

.question-card h3 {
    margin: 0 0 12px;
    color: #0d493d;
    font-size: 1.18rem;
    line-height: 1.4;
}

.question-card p {
    margin: 0;
    color: #596a62;
    line-height: 1.7;
}

.read-more {
    color: #c46d21;
    font-weight: 900;
}

.question-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #84928b;
    font-weight: 700;
    font-size: .9rem;
}

.question-empty {
    padding: 24px;
    border: 1px dashed var(--line);
    border-radius: 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, .68);
}

.forum-question-list {
    grid-template-columns: 1fr;
    gap: 22px;
}

.forum-question-list .question-card {
    min-height: 132px;
    padding: 22px 24px;
}

.question-thread-card.is-hidden {
    display: none;
}

.question-thread-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.question-avatar,
.comment-avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(18, 99, 79, .18);
	font-size: 10px !important;
}

.question-card-main {
    min-width: 0;
}

.question-card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.question-card-top h3 {
    margin-bottom: 4px;
}

.question-card-top h3 a {
    color: inherit;
}

.question-tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--brand);
    background: #edf6f1;
    font-size: .74rem;
    font-weight: 900;
}

.forum-question-list .question-meta {
    margin: 0 0 10px;
    font-size: .82rem;
}

.related-question-tree {
    display: grid;
    gap: 9px;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 2px solid rgba(18, 99, 79, .16);
}

.related-question-node {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: #345247;
    font-weight: 800;
}

.related-question-node span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    font-size: .72rem;
    line-height: 1;
}

.related-question-node a {
    color: #0d493d;
    line-height: 1.45;
}

.related-question-node a:hover {
    color: #c46d21;
}

.related-question-node .related-question-tree {
    grid-column: 2;
    margin-top: 8px;
}

.related-question-node.level-2,
.related-question-node.level-3,
.related-question-node.level-4 {
    font-size: .94rem;
}

.question-card-side {
    display: grid;
    justify-items: end;
    gap: 12px;
    min-width: 140px;
}

.avatar-stack {
    display: flex;
    justify-content: flex-end;
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-left: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: .75rem;
    font-weight: 900;
}

.avatar-stack span:nth-child(2) {
    background: #c79936;
}

.avatar-stack span:nth-child(3) {
    background: #465f54;
}

.comment-count {
    border: 0;
    padding: 0;
    color: #465f54;
    background: transparent;
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
}

.comment-count:hover,
.comment-count.is-open {
    color: var(--brand);
}

.question-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.question-load-more-wrap.is-hidden {
    display: none;
}

.question-load-more {
    border: 1px solid rgba(18, 99, 79, .22);
    border-radius: 999px;
    padding: 13px 22px;
    color: var(--brand);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 28px rgba(18, 99, 79, .12);
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.question-load-more:hover {
    background: #fff;
    box-shadow: 0 16px 34px rgba(18, 99, 79, .18);
    transform: translateY(-2px);
}

.main-comment-notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(18, 99, 79, .18);
    border-radius: 14px;
    color: var(--brand);
    background: rgba(255, 255, 255, .76);
    font-weight: 800;
}

.main-thread-comments {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.main-thread-comments.is-open {
    display: block;
}

.main-thread-list {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.main-thread-comment {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid #e3eee8;
    border-radius: 14px;
    background: #fbfdfb;
}

.main-thread-comment .comment-avatar {
    width: 42px;
    height: 42px;
    font-size: .82rem;
}

.main-thread-comment p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.main-comment-form {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(18, 99, 79, .12);
    border-radius: 16px;
    background: rgba(237, 246, 241, .62);
}

.main-comment-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.main-comment-form input,
.main-comment-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    outline: none;
}

.main-comment-form input {
    min-height: 46px;
    padding: 0 13px;
}

.main-comment-form textarea {
    min-height: 88px;
    padding: 13px;
    resize: vertical;
}

.main-followup-answer {
    display: none;
    padding: 16px;
    border: 1px solid rgba(18, 99, 79, .14);
    border-left: 5px solid var(--gold);
    border-radius: 14px;
    color: #586961;
    background: #fff;
    line-height: 1.7;
}

.main-followup-answer.is-open {
    display: block;
}

.main-followup-answer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: .9rem;
}

.main-comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.main-comment-actions a {
    color: #c46d21;
    font-weight: 900;
}

.main-comment-actions .zuna-btn {
    min-height: 46px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}

.hero-card,
.insight-card,
.answer-card,
.related-card {
    border: 1px solid rgba(220, 232, 225, .9);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 70px rgba(21, 39, 30, .12);
    backdrop-filter: blur(12px);
}

.hero-card {
    padding: clamp(26px, 4vw, 42px);
}

.hero-card h1 {
    max-width: 820px;
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1;
    letter-spacing: -.02em;
}

.hero-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.insight-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    padding: 26px;
    color: #fff;
    background: linear-gradient(145deg, rgba(18, 99, 79, .96), rgba(91, 73, 54, .9));
}

.insight-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .2), transparent 12rem),
        radial-gradient(circle at 90% 80%, rgba(199, 153, 54, .28), transparent 14rem);
}

.insight-card > * {
    position: relative;
    z-index: 1;
}

.insight-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 2.1rem;
    line-height: 1;
}

.insight-card span {
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.answer-card {
    overflow: hidden;
    margin-bottom: 18px;
}

.question-ribbon {
    padding: 20px 26px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(18, 99, 79, .08), rgba(199, 153, 54, .08));
}

.question-ribbon span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.question-ribbon h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    line-height: 1.35;
}

.answer-body {
    padding: clamp(22px, 3vw, 32px);
}

.answer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.answer-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.answer-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: #8b6619;
    background: #fff6db;
    font-size: .82rem;
    font-weight: 900;
}

.answer-text strong {
    color: #2b4539;
}

.answer-text h2,
.answer-text h3 {
    margin: 28px 0 10px;
    color: #173229;
    line-height: 1.25;
}

.answer-text h2 {
    font-size: 1.45rem;
}

.answer-text h3 {
    font-size: 1.18rem;
}

.answer-text li {
    display: block;
    margin: 12px 0;
    padding: 15px 16px 15px 46px;
    border: 1px solid #e3eee8;
    border-radius: 14px;
    background: #fbfdfb;
    position: relative;
    color: #5d6e65;
}

.answer-text li:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 24px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--gold));
}

.answer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.related-section {
    padding-top: 2px;
}

.comment-section {
    margin-bottom: 24px;
}

.comment-layout {
    display: grid;
    grid-template-columns: minmax(310px, 390px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.comment-form-card,
.comments-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(18, 99, 79, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(21, 39, 30, .09);
}

.comment-form-card:before,
.comments-card:before,
.related-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.comment-form-card h2,
.comments-head h2 {
    margin: 12px 0 12px;
    color: var(--ink);
    font-size: clamp(1.28rem, 1.8vw, 1.72rem);
    line-height: 1.2;
}

.comment-notice {
    margin: 0 0 14px;
    color: var(--brand);
    font-weight: 800;
}

.comment-form {
    display: grid;
    gap: 11px;
}

.comment-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    outline: none;
}

.comment-form input {
    min-height: 48px;
    padding: 0 14px;
}

.comment-form textarea {
    min-height: 118px;
    padding: 14px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(18, 99, 79, .1);
}

.comments-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.comments-head h2 {
    margin: 0;
}

.comments-head span {
    max-width: 240px;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.5;
    text-align: right;
}

.comment-list {
    display: grid;
    gap: 12px;
}

.comment-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(18, 99, 79, .12);
    border-radius: 18px;
    background: linear-gradient(135deg, #fbfdfb, #fff);
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.comment-meta strong {
    color: var(--ink);
}

.comment-meta span {
    color: var(--muted);
    font-size: .86rem;
}

.comment-item p,
.comment-empty {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.comment-empty {
    padding: 18px;
    border: 1px dashed rgba(18, 99, 79, .2);
    border-radius: 14px;
    background: #fbfdfb;
}

.zuna-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 150px;
    padding: 24px;
    color: var(--ink);
    transition: .2s ease;
}

.related-card h3 {
    margin: 0 0 10px;
    color: #0d493d;
    font-size: 1.08rem;
    line-height: 1.4;
}

.related-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: .95rem;
}

@media (max-width: 980px) {
    .zuna-hero,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .zuna-copy {
        padding-top: 28px;
    }

    .advisor-card {
        min-height: 360px;
    }

    .question-list,
    .zuna-related-grid,
    .comment-layout {
        grid-template-columns: 1fr;
    }

    .question-thread-summary {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .question-card-side {
        grid-column: 2;
        justify-items: start;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .zuna-gpt-page {
        padding-top: 10px;
    }

    .zuna-detail-page {
        padding-top: 92px;
    }

    .zuna-shell {
        width: min(100% - 22px, 1180px);
    }

    .zuna-copy h1 {
        font-size: 2.35rem;
    }

    .prompt-form {
        grid-template-columns: 1fr;
    }

    .zuna-btn {
        width: 100%;
    }

    .section-head,
    .answer-title {
        display: block;
    }

    .answer-badge {
        margin-top: 10px;
    }

    .answer-body {
        padding: 22px;
    }

    .question-ribbon {
        padding: 18px;
    }

    .comment-fields,
    .question-thread-summary,
    .main-comment-fields {
        grid-template-columns: 1fr;
    }

    .question-card-side {
        grid-column: auto;
    }

    .comments-head {
        display: block;
    }

    .comments-head span {
        display: block;
        margin-top: 6px;
        text-align: left;
    }

    .main-comment-actions {
        display: grid;
    }
}

/* Keep selected text readable */
::selection {
    color: #14231c !important;
    background: #ccefe3 !important;
}

::-moz-selection {
    color: #14231c !important;
    background: #ccefe3 !important;
}

.question-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

.question-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid rgba(18, 99, 79, .24);
	border-radius: 999px;
	color: var(--brand);
	background: #fff;
	font: inherit;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(18, 99, 79, .12);
	cursor: pointer;
	transition:
		background .2s ease,
		color .2s ease,
		transform .2s ease,
		box-shadow .2s ease;
}

.question-load-more:hover {
	color: #fff;
	background: var(--brand);
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(18, 99, 79, .2);
}

.question-load-more:disabled {
	opacity: .65;
	cursor: not-allowed;
	transform: none;
}

.question-loading {
    display: none;
    margin: 24px 0;
    color: #12634f;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

#questionScrollTrigger {
    width: 100%;
    height: 20px;
}

.answer-text {
    color: #586961;
    font-size: 16px;
    line-height: 1.8;
}

.answer-text p {
    margin: 0 0 18px;
    color: #586961;
    line-height: 1.8;
}

.answer-text h2,
.answer-text h3,
.answer-text h4 {
    margin: 30px 0 14px;
    color: #173229;
    font-weight: 800;
    line-height: 1.3;
}

.answer-text h2 {
    font-size: 1.55rem;
}

.answer-text h3 {
    font-size: 1.28rem;
}

.answer-text h4 {
    font-size: 1.08rem;
}

.answer-text ul,
.answer-text ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.answer-text li {
    position: relative;
    display: list-item;
    margin: 0 0 10px;
    padding: 0 0 0 5px;
    border: 0;
    border-radius: 0;
    color: #586961;
    background: transparent;
    line-height: 1.7;
}

.answer-text li::before {
    display: none;
}

.answer-text strong {
    color: #29483b;
    font-weight: 800;
}

.answer-text em {
    color: #4f6259;
}

.answer-text .answer-link {
    color: #12634f;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.answer-text {
    color: #586961;
    font-size: 16px;
    line-height: 1.8;
}

.answer-text p {
    margin: 0 0 18px;
    color: #586961;
    line-height: 1.8;
}

.answer-text h2,
.answer-text h3,
.answer-text h4 {
    color: #173229;
    font-weight: 800;
    line-height: 1.3;
}

.answer-text h2 {
    margin: 32px 0 15px;
    font-size: 1.55rem;
}

.answer-text h3 {
    margin: 26px 0 13px;
    font-size: 1.3rem;
}

.answer-text h4 {
    margin: 22px 0 12px;
    font-size: 1.1rem;
}

.answer-text ul,
.answer-text ol {
    margin: 0 0 22px;
    padding-left: 26px;
}

.answer-text li {
    display: list-item;
    position: static;
    margin: 0 0 9px;
    padding: 0 0 0 4px;
    border: 0;
    border-radius: 0;
    color: #586961;
    background: transparent;
    line-height: 1.7;
}

.answer-text li::before {
    display: none;
}

.answer-text strong {
    color: #29483b;
    font-weight: 800;
}

.answer-text .answer-link {
    color: #12634f;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =====================================
   ZUNAVISHGPT RESPONSE LOADER
   ===================================== */

.zuna-ai-loader {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(18, 99, 79, .14);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(237, 246, 241, .95),
            rgba(255, 255, 255, .98)
        );
    box-shadow: 0 14px 34px rgba(21, 39, 30, .08);
}

.zuna-ai-loader-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #12634f, #0b8063);
    box-shadow: 0 10px 24px rgba(18, 99, 79, .22);
}

.zuna-ai-loader-icon span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation: zunaLoaderDot 1.2s infinite ease-in-out;
}

.zuna-ai-loader-icon span:nth-child(2) {
    animation-delay: .15s;
}

.zuna-ai-loader-icon span:nth-child(3) {
    animation-delay: .3s;
}

.zuna-ai-loader-content strong {
    display: block;
    margin-bottom: 5px;
    color: #173229;
    font-size: 15px;
    font-weight: 800;
}

.zuna-ai-loader-content p {
    margin: 0 0 14px;
    color: #66776e;
    font-size: 14px;
    line-height: 1.55;
}

.zuna-loader-lines {
    display: grid;
    gap: 7px;
}

.zuna-loader-lines span {
    display: block;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e1ebe6;
    position: relative;
}

.zuna-loader-lines span:nth-child(1) {
    width: 96%;
}

.zuna-loader-lines span:nth-child(2) {
    width: 78%;
}

.zuna-loader-lines span:nth-child(3) {
    width: 58%;
}

.zuna-loader-lines span::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .9),
        transparent
    );
    animation: zunaLoaderShimmer 1.35s infinite;
}

.zuna-button-spinner {
    width: 17px;
    height: 17px;
    margin-right: 9px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: zunaButtonSpin .8s linear infinite;
}

.zuna-btn:disabled {
    opacity: .78;
    cursor: wait;
    transform: none;
}

.zuna-response-error {
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid #efcccc;
    border-radius: 13px;
    color: #8f3030;
    background: #fff4f4;
    line-height: 1.6;
}

@keyframes zunaLoaderDot {
    0%,
    80%,
    100% {
        opacity: .45;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes zunaLoaderShimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes zunaButtonSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .zuna-ai-loader {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   ANSWER TABLE
   ===================================== */

.answer-table-wrap {
    width: 100%;
    margin: 22px 0 28px;
    overflow-x: auto;
    border: 1px solid #dce8e1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(21, 39, 30, .06);
    -webkit-overflow-scrolling: touch;
}

.answer-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    color: #52645b;
    font-size: 14px;
    line-height: 1.55;
}

.answer-table th,
.answer-table td {
    padding: 14px 16px;
    border-right: 1px solid #e4ede8;
    border-bottom: 1px solid #e4ede8;
    text-align: left;
    vertical-align: top;
}

.answer-table th:last-child,
.answer-table td:last-child {
    border-right: 0;
}

.answer-table tbody tr:last-child td {
    border-bottom: 0;
}

.answer-table th {
    color: #173229;
    background: linear-gradient(
        135deg,
        #edf6f1,
        #f8fbf9
    );
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.answer-table tbody tr:nth-child(even) {
    background: #fbfdfc;
}

.answer-table tbody tr:hover {
    background: #f2f8f5;
}

@media (max-width: 640px) {
    .answer-table {
        min-width: 650px;
    }

    .answer-table th,
    .answer-table td {
        padding: 12px 13px;
    }
}


.zuna-generated-answer {
    margin-top: 18px;
    color: #586961;
    font-size: 16px;
    line-height: 1.8;
}

.zuna-generated-answer p {
    margin: 0 0 16px;
}

.zuna-generated-answer h2,
.zuna-generated-answer h3,
.zuna-generated-answer h4 {
    margin: 26px 0 12px;
    color: #173229;
    line-height: 1.3;
}

.zuna-generated-answer ul,
.zuna-generated-answer ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.zuna-generated-answer li {
    margin-bottom: 8px;
}

.zuna-response-error {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #efcccc;
    border-radius: 14px;
    color: #843434;
    background: #fff4f4;
}

.zuna-response-error strong {
    display: block;
    margin-bottom: 5px;
}

.zuna-response-error p {
    margin: 0;
    color: inherit;
}

.response-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.response-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid #087662;
    border-radius: 8px;
    background: #ffffff;
    color: #087662;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.response-actions button:hover {
    background: #087662;
    color: #ffffff;
    transform: translateY(-1px);
}

.response-actions button:focus-visible {
    outline: 3px solid rgba(8, 118, 98, 0.2);
    outline-offset: 2px;
}

.response-actions button.is-success {
    background: #087662;
    color: #ffffff;
}

.response-actions button i {
    font-size: 14px;
}

@media (max-width: 575px) {
    .response-actions {
        justify-content: stretch;
    }

    .response-actions button {
        flex: 1;
    }
}

/* =========================================
   ZUNAVISH GPT ANSWER HEADING SIZES
   ========================================= */

.zuna-generated-answer h1,
.jain-answer h1,
.chat-answer h1 {
    margin: 26px 0 14px;
    font-size: 28px !important;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.zuna-generated-answer h2,
.jain-answer h2,
.chat-answer h2 {
    margin: 24px 0 12px;
    font-size: 23px !important;
    line-height: 1.35;
    font-weight: 700;
}

.zuna-generated-answer h3,
.jain-answer h3,
.chat-answer h3 {
    margin: 20px 0 10px;
    font-size: 19px !important;
    line-height: 1.4;
    font-weight: 700;
}

.zuna-generated-answer h4,
.jain-answer h4,
.chat-answer h4,
.zuna-generated-answer h5,
.jain-answer h5,
.chat-answer h5,
.zuna-generated-answer h6,
.jain-answer h6,
.chat-answer h6 {
    margin: 18px 0 8px;
    font-size: 17px !important;
    line-height: 1.45;
    font-weight: 700;
}

.zuna-generated-answer p,
.jain-answer p,
.chat-answer p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.75;
}

.zuna-generated-answer ul,
.zuna-generated-answer ol,
.jain-answer ul,
.jain-answer ol,
.chat-answer ul,
.chat-answer ol {
    margin: 10px 0 18px;
    padding-left: 24px;
}

.zuna-generated-answer li,
.jain-answer li,
.chat-answer li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.65;
}

/* Mobile */
@media (max-width: 767px) {
    .zuna-generated-answer h1,
    .jain-answer h1,
    .chat-answer h1 {
        font-size: 24px !important;
    }

    .zuna-generated-answer h2,
    .jain-answer h2,
    .chat-answer h2 {
        font-size: 21px !important;
    }

    .zuna-generated-answer h3,
    .jain-answer h3,
    .chat-answer h3 {
        font-size: 18px !important;
    }

    .zuna-generated-answer p,
    .jain-answer p,
    .chat-answer p,
    .zuna-generated-answer li,
    .jain-answer li,
    .chat-answer li {
        font-size: 15px;
    }
}

.answer-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.answer-actions-left,
.answer-actions-right{
    display:flex;
    gap:12px;
    align-items:center;
}

@media (max-width:768px){

    .answer-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .answer-actions-left,
    .answer-actions-right{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

}

