:root {
    --ink: #17202a;
    --muted: #5b6673;
    --line: #dfe5ea;
    --surface: #ffffff;
    --soft: #f7f4ec;
    --brand: #B08E35;
    --brand-dark: #8d7028;
    --accent: #B08E35;
    --danger: #b42318;
    --shadow: 0 18px 45px rgba(16, 32, 42, 0.14);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--soft);
}

a {
    color: inherit;
    text-decoration: none;
}

.top-alert {
    background: #555;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0.7rem 1rem;
    text-align: center;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 4vw, 4rem);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
}

.header-top-row {
    align-items: center;
    display: contents;
    flex: 0 0 auto;
    gap: 1rem;
    justify-content: space-between;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-weight: 850;
    gap: 0.7rem;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    height: 46px;
    max-width: min(58vw, 360px);
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.brand-mark {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.header-nav {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
    font-size: 0.94rem;
}

.header-search {
    align-items: center;
    display: block;
    flex: 1 1 420px;
    max-width: 620px;
    order: 2;
    position: relative;
}

.brand {
    order: 1;
}

.header-nav {
    order: 3;
}

.header-search input {
    background: #fbfaf6;
    min-height: 44px;
    padding: 0.72rem 3.1rem 0.72rem 0.9rem;
}

.header-search-action {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 42px;
}

.header-search-action svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
    width: 19px;
}

.client-link,
.primary-action,
.secondary-action {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    padding: 0.85rem 1rem;
}

.client-link,
.primary-action {
    background: var(--brand);
    color: #fff;
}

.secondary-action {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.hero {
    background:
        linear-gradient(90deg, rgba(10, 20, 26, 0.84), rgba(10, 20, 26, 0.54), rgba(10, 20, 26, 0.06)),
        url("hero-documents.png") center right / cover;
    min-height: min(720px, calc(100vh - 92px));
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 850;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.9rem);
    line-height: 1.02;
    margin: 0;
    max-width: 820px;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.65;
    margin: 1.2rem 0 0.85rem;
}

.hero-rating {
    align-items: center;
    background: rgb(65 62 62 / 72%);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    gap: 0.55rem;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.42rem 0.75rem;
    width: fit-content;
}

.hero-rating-stars {
    color: #ffc400;
    font-size: 1.05rem;
    letter-spacing: 0;
    line-height: 1;
}

input,
select {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    min-width: 0;
    padding: 0.9rem 1rem;
    width: 100%;
}

.services-section,
.quiz-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
}

.section-head {
    align-items: end;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.3fr 0.7fr;
    margin-bottom: 1.5rem;
}

.section-head h2,
.quiz-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 0 0 0.45rem;
}

.quiz-card p {
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.55;
    margin: 0;
}

.quiz-card .primary-action {
    justify-self: center;
}

.quiz-card-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.quiz-icon {
    display: block;
    height: 72px;
    margin-bottom: 0.85rem;
    object-fit: contain;
    width: auto;
}

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

.filter-bar {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.filter-button {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    flex: 0 0 auto;
    font: inherit;
    font-weight: 750;
    padding: 0.72rem 0.95rem;
}

.filter-button.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.service-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
    max-width: 560px;
    width: min(100%, 560px);
}

.service-button {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(176, 142, 53, 0.24);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(16, 32, 42, 0.05);
    display: flex;
    justify-content: space-between;
    min-height: 74px;
    padding: 1rem 1.1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-button::after {
    color: var(--brand);
    content: "›";
    flex: 0 0 auto;
    font-size: 1.75rem;
    font-weight: 900;
    margin-left: 1rem;
    line-height: 1;
}

.service-button:hover {
    border-color: rgba(176, 142, 53, 0.58);
    box-shadow: 0 12px 28px rgba(16, 32, 42, 0.1);
    transform: translateY(-2px);
}

.service-button span {
    flex: 1 1 auto;
    font-weight: 800;
    line-height: 1.25;
}

.service-button small {
    color: var(--brand);
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 850;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.load-wrap {
    margin-top: 1.5rem;
    text-align: center;
}

.empty-state {
    color: var(--muted);
    font-weight: 700;
}

.recent-testimonials {
    margin: clamp(2rem, 4vw, 3.2rem) auto 0;
    max-width: 1120px;
}

.recent-testimonials-head {
    margin: 0 auto 0.85rem;
    max-width: 560px;
    text-align: center;
}

.recent-testimonials-head .eyebrow {
    margin-bottom: 0;
}

.testimonial-scroller {
    display: grid;
    gap: 0.9rem;
    grid-auto-columns: minmax(280px, 340px);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.2rem 0 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(176, 142, 53, 0.5) transparent;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(176, 142, 53, 0.2);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(16, 32, 42, 0.07);
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 1rem;
    scroll-snap-align: start;
}

.testimonial-author {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.testimonial-avatar {
    align-items: center;
    background: #93bee4;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.95rem;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.testimonial-identity {
    align-items: center;
    display: flex;
    gap: 0.3rem;
    min-width: 0;
}

.testimonial-identity span:first-child {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    min-width: 0;
}

.testimonial-identity strong {
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 850;
}

.testimonial-identity small {
    color: #697381;
    font-size: 0.8rem;
    white-space: nowrap;
}

.testimonial-check {
    align-items: center;
    background: #4a90e2;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 18px;
    justify-content: center;
    margin-left: -0.12rem;
    width: 18px;
}

.testimonial-check svg {
    fill: currentColor;
}

.testimonial-stars {
    color: #ffc400;
    font-size: 1.05rem;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.testimonial-card h3 {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0 0 0.45rem;
}

.testimonial-card p {
    color: var(--muted);
    flex: 1 1 auto;
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
}

.quiz-section {
    background: #fff;
}

.quiz-card,
.quiz-flow {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    justify-items: center;
    margin: 0 auto;
    max-width: 1120px;
    padding: clamp(1.2rem, 3vw, 2rem);
    text-align: center;
}

.quiz-flow {
    align-items: stretch;
    display: block;
    margin-top: 1rem;
}

.quiz-question {
    font-size: 1.2rem;
    font-weight: 850;
    margin: 0 0 1rem;
}

.quiz-options {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quiz-option {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 58px;
    padding: 0.8rem;
}

.text-action {
    background: transparent;
    border: 0;
    color: var(--brand);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    margin-top: 1rem;
    padding: 0;
}

.payment-section {
    background: #4d5b78;
    color: #fff;
    padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem);
    text-align: center;
}

.quiz-site-header {
    position: static;
}

.quiz-page {
    background: #fff;
    min-height: 70vh;
}

.quiz-hero {
    align-items: center;
    background: #e9edf2;
    color: #4b5875;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: clamp(2.2rem, 5vw, 3.2rem) 1rem 0;
    text-align: center;
}

.quiz-hero h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    line-height: 1.15;
    margin: 0;
}

.quiz-progress {
    align-items: center;
    display: flex;
    gap: 4.5rem;
    height: 40px;
    justify-content: space-between;
    margin-top: 1.6rem;
    max-width: 320px;
    position: relative;
    transform: translateY(50%);
    width: min(76vw, 320px);
}

.quiz-progress::before {
    background: #d8dde5;
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 17px;
}

.quiz-progress::after {
    background: var(--brand);
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 28px;
    position: absolute;
    top: 17px;
    transition: width 0.25s ease;
    width: 0;
}

.quiz-page[data-current-step="categories"] .quiz-progress::after {
    width: calc((100% - 56px) / 2);
}

.quiz-page[data-current-step="results"] .quiz-progress::after {
    width: calc(100% - 56px);
}

.quiz-progress span {
    align-items: center;
    background: #fff;
    border: 3px solid #d8dde5;
    border-radius: 50%;
    color: #4b5875;
    display: inline-flex;
    font-weight: 900;
    height: 40px;
    justify-content: center;
    position: relative;
    width: 40px;
    z-index: 2;
}

.quiz-progress span.is-active {
    background: var(--brand);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(176, 142, 53, 0.18);
    color: #fff;
}

.quiz-step {
    margin: 0 auto;
    max-width: 980px;
    padding: clamp(3.4rem, 6vw, 5rem) 1rem 4rem;
}

.quiz-step h2 {
    color: #4b5875;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    line-height: 1.35;
    margin: 0 auto 2rem;
    max-width: 760px;
    text-align: center;
}

.quiz-group-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiz-group-card,
.quiz-category-card {
    align-items: center;
    background: #fbfbfc;
    border: 1px solid #b9c3d6;
    border-radius: 3px;
    color: #4b5875;
    cursor: pointer;
    display: grid;
    gap: 1rem;
    min-height: 118px;
    padding: 1.1rem;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quiz-group-card {
    grid-template-columns: 54px minmax(0, 1fr) 28px;
}

.quiz-group-card:hover,
.quiz-category-card:hover,
.quiz-result-button:hover {
    border-color: var(--brand);
    box-shadow: 0 14px 28px rgba(20, 24, 28, 0.08);
    transform: translateY(-1px);
}

.quiz-group-icon {
    align-items: center;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.quiz-group-icon svg {
    display: block;
    fill: none;
    height: 38px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 38px;
}

.quiz-group-title,
.quiz-category-card span {
    font-size: clamp(1.35rem, 2.8vw, 1.8rem);
    font-weight: 650;
    line-height: 1.35;
}

.quiz-card-chevron {
    color: var(--brand);
    font-size: 2.2rem;
    font-weight: 300;
    justify-self: end;
    line-height: 1;
}

.quiz-category-list {
    display: grid;
    gap: 0.85rem;
    margin: 0 auto;
    max-width: 760px;
}

.quiz-category-card {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto 28px;
    min-height: 86px;
}

.quiz-category-card strong {
    color: var(--brand);
    font-size: 0.9rem;
}

.quiz-result-list {
    display: grid;
    gap: 0.85rem;
}

.quiz-result-button {
    align-items: center;
    background: #fff;
    border: 1px solid #dfe5ee;
    border-radius: 3px;
    color: #4b5875;
    display: grid;
    gap: 1rem;
    grid-template-columns: 48px minmax(0, 1fr) auto 34px;
    min-height: 90px;
    padding: 1rem 1.2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quiz-result-icon {
    color: #4b5875;
    font-size: 2rem;
}

.quiz-result-name {
    font-size: clamp(1.15rem, 2.6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.3;
}

.quiz-result-price {
    color: var(--brand);
    display: grid;
    min-width: 136px;
}

.quiz-result-price small {
    color: var(--brand-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

.quiz-result-price strong {
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    font-weight: 500;
}

.quiz-result-chevron {
    color: var(--brand);
    font-size: 2.5rem;
    line-height: 1;
}

.quiz-back-link {
    background: transparent;
    border: 0;
    color: #477cff;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 1.15rem;
    margin: 1.6rem auto 0;
    padding: 0;
    text-decoration: underline;
}

.trust-grid {
    display: grid;
    gap: clamp(0.65rem, 1.2vw, 0.95rem);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 500px;
}

.trust-card {
    align-self: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: block;
    height: auto;
    object-fit: contain;
    padding: 0.18rem;
    width: 100%;
}

.trust-card-wide {
    grid-column: 1 / -1;
    max-height: 86px;
}

.trust-card-security,
.trust-card-quality {
    grid-column: span 4;
    max-height: 82px;
}

.trust-card-half {
    grid-column: span 6;
    max-height: 92px;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background-image: linear-gradient(180deg, #303030 0%, #000000 100%) !important;
    color: #fff;
    padding: 3rem clamp(1rem, 4vw, 4rem);
}

.site-footer-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1.3fr;
    margin: 0 auto;
    max-width: 1280px;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-badges {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-top: 1rem;
    max-width: 100%;
}

.footer-badge {
    display: block;
    height: auto;
    max-width: 150px;
    object-fit: contain;
    width: min(31%, 150px);
}

.site-footer nav {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    grid-column: 1 / -1;
    padding-top: 1rem;
    text-align: center;
}

.page-shell {
    margin: 0 auto;
    max-width: 980px;
    min-height: 52vh;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.page-shell h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.05;
    margin: 0 0 1rem;
}

.page-shell p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.page-content {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.page-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.4rem;
}

.page-card h2,
.page-card h3 {
    margin: 0 0 0.65rem;
}

.page-card ul {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    padding-left: 1.2rem;
}

.rich-policy {
    color: var(--muted);
    line-height: 1.75;
}

.rich-policy p,
.rich-policy ul,
.rich-policy h2,
.rich-policy h3 {
    margin: 0 0 1rem;
}

.rich-policy h2 {
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    margin-top: 1.4rem;
}

.rich-policy ul {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.2rem;
}

.rich-policy li {
    margin: 0;
}

.rich-policy strong {
    color: var(--ink);
}

.rich-policy a {
    color: var(--brand);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.reviews-table-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 24, 28, 0.06);
    overflow: hidden;
}

.reviews-table {
    border-collapse: collapse;
    width: 100%;
}

.reviews-table th,
.reviews-table td {
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    text-align: left;
    vertical-align: top;
}

.reviews-table th {
    background: #fbfaf6;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.reviews-table th:nth-child(1),
.reviews-table td:nth-child(1) {
    width: 150px;
}

.reviews-table th:nth-child(2),
.reviews-table td:nth-child(2) {
    width: 125px;
}

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

.reviews-table td > strong {
    color: var(--ink);
    display: block;
    line-height: 1.35;
}

.reviews-table td p {
    color: var(--muted);
    font-size: 0.95rem !important;
    line-height: 1.6;
    margin: 0.35rem 0 0 !important;
}

.reviews-stars {
    color: #ffc400;
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
}

.faq-grid,
.testimonial-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-panel {
    display: grid;
    gap: 1.1rem;
}

.faq-search {
    position: relative;
}

.faq-search input {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(20, 24, 28, 0.06);
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    min-height: 54px;
    outline: none;
    padding: 0.95rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.faq-search input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(176, 142, 53, 0.16), 0 12px 28px rgba(20, 24, 28, 0.06);
}

.faq-search-results {
    display: grid;
    gap: 0.75rem;
}

.faq-result-count {
    color: var(--brand-dark) !important;
    font-size: 0.9rem !important;
    font-weight: 850;
    margin: 0 !important;
}

.faq-tabs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin: 0.2rem 0 0.35rem;
}

.faq-tab {
    appearance: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 850;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-tab:hover {
    border-color: rgba(176, 142, 53, 0.55);
    transform: translateY(-1px);
}

.faq-tab.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.faq-category {
    min-width: 0;
}

.faq-accordion-list {
    display: grid;
    gap: 0.75rem;
}

.faq-accordion {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion[open] {
    border-color: rgba(176, 142, 53, 0.5);
    box-shadow: 0 14px 34px rgba(20, 24, 28, 0.08);
}

.faq-accordion summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 0.25rem;
    grid-template-columns: minmax(0, 1fr) auto;
    list-style: none;
    min-height: 58px;
    padding: 1rem 3rem 1rem 1rem;
    position: relative;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    color: var(--brand);
    content: "+";
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-accordion[open] summary::after {
    content: "-";
}

.faq-accordion summary span {
    color: var(--ink);
    font-weight: 900;
    line-height: 1.3;
}

.faq-accordion summary small {
    color: var(--brand-dark);
    font-size: 0.74rem;
    font-weight: 850;
    justify-self: start;
    text-transform: uppercase;
}

.faq-accordion p {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 1rem !important;
    line-height: 1.7;
    margin: 0 !important;
    padding: 1rem;
}

@media (max-width: 980px) {
    .service-grid,
    .quiz-options,
    .faq-grid,
    .testimonial-grid,
    .section-head,
    .site-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header {
        align-items: stretch;
        display: flex;
        flex-direction: column;
    }

    .header-top-row {
        display: flex;
        width: 100%;
    }

    .header-search {
        flex: 0 0 auto;
        max-width: none;
        width: 100%;
    }

    .header-nav {
        justify-content: flex-start;
    }

    .trust-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .trust-card-wide,
    .trust-card-quality {
        grid-column: 1 / -1;
    }

    .trust-card-half,
    .trust-card-security {
        grid-column: span 3;
    }
}

@media (max-width: 720px) {
    .top-alert {
        font-size: 0.73rem;
        padding: 0.62rem 0.8rem;
    }

    .site-header {
        gap: 0.7rem;
        padding: 0.85rem 1rem 0.9rem;
        position: static;
    }

    .header-top-row {
        width: 100%;
    }

    .brand-mark {
        height: 36px;
        width: 36px;
    }

    .brand {
        font-size: 1rem;
    }

    .brand-logo {
        height: 38px;
        max-width: 52vw;
        width: auto;
    }

    .client-link {
        min-height: 40px;
        padding: 0.68rem 0.8rem;
    }

    .header-search input {
        min-height: 44px;
    }

    .filter-bar {
        justify-content: flex-start;
    }

    .testimonial-scroller {
        grid-auto-columns: minmax(260px, 82vw);
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .services-section,
    .quiz-section {
        padding: 2rem 1rem;
    }

    .hero {
        min-height: auto;
    }

    .service-grid,
    .quiz-card,
    .quiz-options,
    .faq-grid,
    .testimonial-grid,
    .section-head,
    .site-footer-inner,
    .site-footer nav {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        gap: 0.6rem;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        max-width: 100%;
    }

    .trust-card-wide {
        grid-column: 1 / -1;
        max-height: 64px;
    }

    .trust-card-half {
        grid-column: span 3;
        max-height: 56px;
    }

    .trust-card-security,
    .trust-card-quality {
        grid-column: span 2;
        max-height: 46px;
    }

    .payment-section {
        padding: 1rem;
    }

    .quiz-group-grid {
        grid-template-columns: 1fr;
    }

    .quiz-group-card {
        min-height: 118px;
    }

    .quiz-result-button {
        gap: 0.7rem;
        grid-template-columns: 34px minmax(0, 1fr) auto 24px;
        min-height: 78px;
        padding: 0.9rem;
    }

    .quiz-result-icon {
        font-size: 1.55rem;
    }

    .quiz-result-price {
        min-width: 92px;
    }

    .quiz-result-price small {
        font-size: 0.75rem;
    }

    .quiz-result-price strong {
        font-size: 1.15rem;
    }

    .faq-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-left: -1rem;
        margin-right: -1rem;
        overflow-x: auto;
        padding: 0 1rem 0.2rem;
        scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .faq-accordion summary {
        align-items: start;
        min-height: 54px;
        padding: 0.9rem 2.7rem 0.9rem 0.9rem;
    }

    .faq-accordion summary small {
        grid-column: 1 / -1;
    }

    .quiz-card {
        align-items: stretch;
        display: grid;
    }

    .reviews-table,
    .reviews-table tbody,
    .reviews-table tr,
    .reviews-table td {
        display: block;
        width: 100%;
    }

    .reviews-table thead {
        display: none;
    }

    .reviews-table tr {
        border-bottom: 1px solid var(--line);
        padding: 0.95rem;
    }

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

    .reviews-table td {
        border-bottom: 0;
        padding: 0.2rem 0;
    }

    .reviews-table td::before {
        color: var(--brand-dark);
        content: attr(data-label);
        display: block;
        font-size: 0.72rem;
        font-weight: 900;
        margin-bottom: 0.15rem;
        text-transform: uppercase;
    }

    .reviews-table td + td {
        margin-top: 0.55rem;
    }
}
