.faq-page {
    --faq-blue: #1a5fa8;
    --faq-blue-light: #2472c8;
    --faq-blue-pale: #e8f1fb;
    --faq-blue-dark: #0f3d72;
    --faq-orange: #f5a020;
    --faq-orange-pale: #fef3e2;
    --faq-green: #1e6b45;
    --faq-green-pale: #e6f4ec;
    --faq-off: #f8f8f6;
    --faq-text: #1a1a1a;
    --faq-border: #e2e8f0;
    width: 100%;
    background: #fff;
    color: var(--faq-text);
}

.faq-page .faq-stripe {
    height: 3px;
    background: linear-gradient(to right, var(--faq-blue), var(--faq-orange), var(--faq-blue));
}

.faq-page .hero {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: auto;
    display: block;
    background: var(--faq-blue);
    padding: 72px 5% 64px;
    position: relative;
    overflow: hidden;
}

.faq-page .hero::before,
.faq-page .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.faq-page .hero::before {
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    background: rgba(245, 160, 32, 0.09);
}

.faq-page .hero::after {
    left: 38%;
    bottom: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
}

.faq-page .hero-inner,
.faq-page .stats-inner,
.faq-page .categories-inner,
.faq-page .faq-main,
.faq-page .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-page .hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-page .hero-badge,
.faq-page .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.faq-page .hero-badge {
    margin-bottom: 18px;
    background: rgba(245, 160, 32, 0.2);
    color: var(--faq-orange);
}

.faq-page h1,
.faq-page .cta-copy h2 {
    margin: 0;
    font-weight: 700;
    line-height: 1.08;
}

.faq-page h1 {
    font-size: clamp(30px, 4.5vw, 52px);
    color: #fff;
    margin-bottom: 14px;
}

.faq-page h1 span,
.faq-page .cta-copy h2 span {
    color: var(--faq-orange);
}

.faq-page .hero-subtitle,
.faq-page .cta-copy p {
    font-size: 16px;
    line-height: 1.72;
}

.faq-page .hero-subtitle {
    max-width: 580px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.72);
}

.faq-page .search-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.faq-page .search-input {
    width: 100%;
    padding: 14px 52px 14px 20px;
    border: none;
    border-radius: 10px;
    font: inherit;
    color: var(--faq-text);
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-page .search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: #aaa;
    fill: none;
    stroke-width: 2;
}

.faq-page .search-count {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
}

.faq-page .stats-row {
    background: var(--faq-off);
    border-bottom: 1px solid var(--faq-border);
}

.faq-page .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.faq-page .stat-cell {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--faq-border);
}

.faq-page .stat-cell:last-child {
    border-right: none;
}

.faq-page .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--faq-blue);
    line-height: 1;
}

.faq-page .stat-number sup {
    color: var(--faq-orange);
    font-size: 16px;
}

.faq-page .stat-label {
    margin-top: 4px;
    font-size: 12px;
    color: #888;
}

.faq-page .categories-bar {
    position: sticky;
    top: 66px;
    z-index: 90;
    padding: 0 5%;
    background: #fff;
    border-bottom: 2px solid var(--faq-border);
    overflow-x: auto;
}

.faq-page .categories-inner {
    display: flex;
    min-width: max-content;
}

.faq-page .category-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 15px 22px;
    margin-bottom: -2px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.faq-page .category-button.is-active {
    color: var(--faq-blue);
    border-bottom-color: var(--faq-orange);
}

.faq-page .category-count {
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--faq-blue-pale);
    color: var(--faq-blue);
    font-size: 10px;
    font-weight: 700;
}

.faq-page .category-button.is-active .category-count {
    background: var(--faq-orange-pale);
    color: #8b5400;
}

.faq-page .faq-main {
    padding: 64px 5% 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 52px;
    align-items: start;
}

.faq-page .category-block {
    margin-bottom: 52px;
}

.faq-page .category-block.is-hidden {
    display: none;
}

.faq-page .category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--faq-border);
}

.faq-page .category-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-page .category-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 2;
}

.faq-page .category-title {
    font-size: 18px;
    font-weight: 700;
}

.faq-page .category-size {
    margin-left: auto;
    font-size: 12px;
    color: #bbb;
}

.faq-page .faq-item,
.faq-page .sidebar-card,
.faq-page .contact-card {
    border: 1.5px solid var(--faq-border);
    border-radius: 14px;
    background: #fff;
}

.faq-page .faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-page .faq-item:hover,
.faq-page .faq-item.is-open {
    border-color: var(--faq-blue);
}

.faq-page .faq-item.is-open {
    box-shadow: 0 4px 16px rgba(26, 95, 168, 0.08);
}

.faq-page .faq-item.no-match {
    display: none;
}

.faq-page .faq-question {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-page .faq-question-text {
    flex: 1;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.45;
}

.faq-page .faq-item.is-open .faq-question-text {
    color: var(--faq-blue);
}

.faq-page .faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--faq-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-page .faq-chevron svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--faq-blue);
    stroke-width: 2.5;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.faq-page .faq-item.is-open .faq-chevron {
    background: var(--faq-blue);
}

.faq-page .faq-item.is-open .faq-chevron svg {
    stroke: #fff;
    transform: rotate(180deg);
}

.faq-page .faq-answer {
    display: none;
    padding: 0 20px 18px;
    border-top: 1px solid var(--faq-border);
}

.faq-page .faq-item.is-open .faq-answer {
    display: block;
}

.faq-page .faq-answer p,
.faq-page .faq-answer li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.faq-page .faq-answer p {
    padding-top: 14px;
}

.faq-page .faq-answer ul {
    padding: 14px 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-page .helpful-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--faq-border);
}

.faq-page .helpful-row span {
    font-size: 12px;
    color: #aaa;
}

.faq-page .helpful-button {
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--faq-border);
    background: none;
    font: inherit;
    font-size: 12px;
    color: #888;
    cursor: pointer;
}

.faq-page .helpful-button:hover {
    border-color: var(--faq-blue);
    color: var(--faq-blue);
}

.faq-page .helpful-button.is-clicked {
    border-color: var(--faq-green);
    background: var(--faq-green-pale);
    color: var(--faq-green);
}

.faq-page .no-results {
    display: none;
    padding: 60px 20px;
    text-align: center;
}

.faq-page .no-results.is-visible {
    display: block;
}

.faq-page .no-results svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    stroke: #ddd;
    fill: none;
    stroke-width: 1.5;
}

.faq-page .no-results h4 {
    margin: 0 0 8px;
    color: #bbb;
    font-size: 17px;
}

.faq-page .no-results p {
    color: #ccc;
    font-size: 14px;
}

.faq-page .faq-sidebar {
    position: sticky;
    top: 116px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-page .sidebar-card,
.faq-page .contact-card {
    padding: 22px;
}

.faq-page .sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
}

.faq-page .sidebar-title svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--faq-blue);
    stroke-width: 2;
}

.faq-page .popular-list,
.faq-page .tag-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-page .popular-link,
.faq-page .tag-button {
    text-decoration: none;
    cursor: pointer;
}

.faq-page .popular-link {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 8px;
    border-radius: 7px;
}

.faq-page .popular-link:hover {
    background: var(--faq-blue-pale);
}

.faq-page .popular-number {
    min-width: 18px;
    margin-top: 2px;
    color: var(--faq-orange);
    font-size: 11px;
    font-weight: 700;
}

.faq-page .popular-text {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
}

.faq-page .tag-list {
    flex-direction: row;
    flex-wrap: wrap;
}

.faq-page .tag-button {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--faq-border);
    background: var(--faq-off);
    color: #666;
    font: inherit;
    font-size: 12px;
}

.faq-page .tag-button:hover {
    background: var(--faq-blue-pale);
    border-color: var(--faq-blue);
    color: var(--faq-blue);
}

.faq-page .contact-card {
    background: var(--faq-blue);
    border-color: transparent;
    text-align: center;
}

.faq-page .contact-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
}

.faq-page .contact-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #fff;
}

.faq-page .contact-card p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.faq-page .contact-button,
.faq-page .phone-button,
.faq-page .cta-primary,
.faq-page .cta-secondary {
    display: block;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
}

.faq-page .contact-button {
    padding: 11px 20px;
    margin-bottom: 8px;
    border-radius: 7px;
    background: var(--faq-orange);
    color: #fff;
}

.faq-page .contact-button:hover,
.faq-page .cta-primary:hover {
    background: #ffb84d;
}

.faq-page .phone-button {
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.84);
}

.faq-page .phone-button:hover,
.faq-page .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.faq-page .cta-band {
    padding: 72px 5%;
    background: var(--faq-blue);
}

.faq-page .cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.faq-page .cta-copy h2 {
    font-size: clamp(24px, 3vw, 38px);
    color: #fff;
    margin-bottom: 10px;
}

.faq-page .cta-copy p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.66);
}

.faq-page .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.faq-page .cta-primary,
.faq-page .cta-secondary {
    white-space: nowrap;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 14px;
}

.faq-page .cta-primary {
    background: var(--faq-orange);
    color: #fff;
}

.faq-page .cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.faq-page .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-page .reveal.visible {
    opacity: 1;
    transform: none;
}

.faq-page .delay-1 {
    transition-delay: 0.08s;
}

.faq-page .delay-2 {
    transition-delay: 0.16s;
}

.faq-page .delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1024px) {
    .faq-page .faq-main,
    .faq-page .cta-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .faq-page .faq-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq-page .hero,
    .faq-page .faq-main,
    .faq-page .cta-band {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-page .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-page .stat-cell:nth-child(2) {
        border-right: none;
    }

    .faq-page .categories-bar {
        padding-left: 20px;
        padding-right: 20px;
    }
}
