/* ============================================
   OT Bestie Help Center - Professional Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    --help-primary: #3e2fa4;
    --help-primary-light: #3b63d9;
    --help-primary-dark: #302282;
    --help-accent: #335ee0;
    --help-success: #22c55e;
    --help-warning: #f59e0b;
    --help-danger: #ef4444;
    --help-bg: #f7f7fb;
    --help-bg-alt: #f6f7fb;
    --help-card: #ffffff;
    --help-border: #e5e5f5;
    --help-text: #1e293b;
    --help-text-muted: #6a728f;
    --help-text-light: #8b93ad;
    --help-gradient: linear-gradient(135deg, #3e2fa4 0%, #3b63d9 100%);
    --help-soft-gradient: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
    --help-shadow: 0 4px 20px rgba(31, 41, 55, 0.08);
    --help-sidebar-width: 280px;
    --help-header-height: 70px;
    --help-font-body: 'Source Sans 3', 'Poppins', sans-serif;
    --help-font-heading: 'Source Sans 3', 'Poppins', sans-serif;
    --help-font-brand: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: var(--help-font-body);
    color: var(--help-text);
    background: var(--help-bg);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Layout */
.help-layout {
    display: flex;
    min-height: 100vh;
    background: var(--help-bg);
}

/* Sidebar */
.help-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--help-sidebar-width);
    height: 100vh;
    background: var(--help-card);
    border-right: 1px solid var(--help-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
}

.help-sidebar__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--help-border);
    background: var(--help-soft-gradient);
}

.help-sidebar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.help-sidebar__logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--help-primary), var(--help-primary-light));
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--help-font-heading);
}

.help-sidebar__logo-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0;
}

.help-sidebar__logo-text .ot {
    font-weight: 400;
    color: #1e293b;
}

.help-sidebar__logo-text .ot::after {
    content: "\00a0";
}

.help-sidebar__logo-text .bestie {
    font-weight: 700;
    color: #3e2fa4;
    background: linear-gradient(135deg, #3e2fa4, #3b63d9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-sidebar__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--help-text-muted);
}

/* Sidebar Search */
.help-sidebar__search {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--help-border);
}

.help-search-input {
    width: 80%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--help-border);
    border-radius: 8px;
    background: var(--help-bg);
    color: var(--help-text);
    transition: all 0.2s ease;
}

.help-search-input:focus {
    outline: none;
    border-color: var(--help-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(62, 47, 164, 0.1);
}

.help-search-wrapper {
    position: relative;
}

.help-search-wrapper i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--help-text-light);
    font-size: 0.9rem;
}

/* Sidebar Navigation */
.help-sidebar__nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.help-nav-section {
    margin-bottom: 0.5rem;
}

.help-nav-section__title {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--help-text-light);
}

.help-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    color: var(--help-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.help-nav-link:hover {
    background: var(--help-bg);
    color: var(--help-text);
}

.help-nav-link.active {
    background: linear-gradient(90deg, rgba(62, 47, 164, 0.08), transparent);
    color: var(--help-primary);
    border-left-color: var(--help-primary);
    font-weight: 600;
}

.help-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.help-nav-link__badge {
    margin-left: auto;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--help-primary);
    color: #fff;
    border-radius: 999px;
}

/* Sidebar Footer */
.help-sidebar__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--help-border);
    background: var(--help-bg);
}

.help-sidebar__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--help-text-muted);
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.help-sidebar__back:hover {
    color: var(--help-primary);
    border-color: var(--help-primary);
}

/* Main Content */
.help-main {
    flex: 1;
    margin-left: var(--help-sidebar-width);
    min-height: 100vh;
}

/* Header */
.help-header {
    position: sticky;
    top: 0;
    height: var(--help-header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--help-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 50;
}

.help-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--help-text-muted);
}

.help-header__breadcrumb a {
    color: var(--help-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-header__breadcrumb a:hover {
    color: var(--help-primary);
}

.help-header__breadcrumb span {
    color: var(--help-text-light);
}

.help-header__breadcrumb-current {
    color: var(--help-text) !important;
    font-weight: 600;
}

.help-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-header__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--help-text-muted);
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.help-header__btn:hover {
    color: var(--help-primary);
    border-color: var(--help-primary);
}

.help-header__btn--primary {
    background: var(--help-primary);
    border-color: var(--help-primary);
    color: #fff;
}

.help-header__btn--primary:hover {
    background: var(--help-primary-dark);
    color: #fff;
}

/* Mobile Menu Toggle */
.help-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    color: var(--help-text);
    font-size: 1.25rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Content Area */
.help-content {
    padding: 2.5rem;
    max-width: 900px;
}

/* Hub Page Styles */
.help-hub {
    max-width: 1100px;
}

.help-hub__hero {
    text-align: center;
    padding: 3rem 2rem 3.5rem;
    background: var(--help-soft-gradient);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
}

.help-hub__hero::before {
    content: none;
}

.help-hub__hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--help-text);
    margin: 0 0 0.75rem;
    font-family: var(--help-font-heading);
}

.help-hub__hero-title span {
    color: var(--help-primary);
    background: var(--help-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-hub__hero-subtitle {
    font-size: 1.1rem;
    color: var(--help-text-muted);
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.help-hub__search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.help-hub__search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.25rem;
    font-size: 1rem;
    border: 2px solid var(--help-border);
    border-radius: 8px;
    background: #fff;
    color: var(--help-text);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.help-hub__search-input:focus {
    outline: none;
    border-color: var(--help-primary);
    box-shadow: 0 4px 25px rgba(62, 47, 164, 0.15);
}

.help-hub__search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--help-text-light);
    font-size: 1.1rem;
}

/* Category Cards */
.help-hub__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.help-category-card {
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--help-shadow);
    border-color: var(--help-primary);
}

.help-category-card__icon {
    width: 52px;
    height: 52px;
    background: var(--help-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.help-category-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 0 0 0.5rem;
}

.help-category-card__desc {
    font-size: 0.9rem;
    color: var(--help-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.help-category-card__count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--help-primary);
}

/* Article List */
.help-hub__section {
    margin-bottom: 2.5rem;
}

.help-hub__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.help-hub__section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-hub__section-title i {
    color: var(--help-primary);
}

.help-hub__section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--help-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.help-hub__section-link:hover {
    text-decoration: underline;
}

.help-article-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-article-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.help-article-item:hover {
    border-color: var(--help-primary);
    background: linear-gradient(90deg, rgba(62, 47, 164, 0.04), transparent);
}

.help-article-item__icon {
    width: 40px;
    height: 40px;
    background: var(--help-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--help-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.help-article-item__content {
    flex: 1;
    min-width: 0;
}

.help-article-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--help-text);
    margin: 0 0 0.25rem;
}

.help-article-item__meta {
    font-size: 0.8rem;
    color: var(--help-text-light);
}

.help-article-item__arrow {
    color: var(--help-text-light);
    transition: all 0.2s ease;
}

.help-article-item:hover .help-article-item__arrow {
    color: var(--help-primary);
    transform: translateX(3px);
}

/* Article Page Styles */
.help-article {
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    overflow: hidden;
}

.help-article__header {
    padding: 2rem 2.5rem;
    background: var(--help-gradient) !important;
    color: #fff;
    position: relative;
}

.help-article__header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.help-article__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    position: relative;
}

.help-article__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    position: relative;
    font-family: var(--help-font-heading);
}

.help-article__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
}

.help-article__meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Article Body */
.help-article__body {
    padding: 2.5rem;
    color: var(--help-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.help-article__body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--help-border);
    font-family: var(--help-font-heading);
}

.help-article__body h2:first-child {
    margin-top: 0;
}

.help-article__body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 2rem 0 0.75rem;
}

.help-article__body p {
    margin: 0 0 1.25rem;
}

.help-article__body ul,
.help-article__body ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.help-article__body li {
    margin-bottom: 0.5rem;
}

.help-article__body strong {
    color: var(--help-text);
    font-weight: 700;
}

.help-article__body code {
    background: var(--help-bg);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--help-primary);
}

/* Callout Boxes */
.help-callout {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.help-callout--tip {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-left: 4px solid var(--help-success);
}

.help-callout--warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 4px solid var(--help-warning);
}

.help-callout--info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid var(--help-accent);
}

.help-callout--danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid var(--help-danger);
}

.help-callout__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.help-callout--tip .help-callout__title { color: #166534; }
.help-callout--tip .help-callout__title i { color: var(--help-success); }
.help-callout--warning .help-callout__title { color: #92400e; }
.help-callout--warning .help-callout__title i { color: var(--help-warning); }
.help-callout--info .help-callout__title { color: #1e40af; }
.help-callout--info .help-callout__title i { color: var(--help-accent); }
.help-callout--danger .help-callout__title { color: #991b1b; }
.help-callout--danger .help-callout__title i { color: var(--help-danger); }

.help-callout p {
    margin: 0;
    font-size: 0.95rem;
}

.help-callout--tip p { color: #166534; }
.help-callout--warning p { color: #92400e; }
.help-callout--info p { color: #1e40af; }
.help-callout--danger p { color: #991b1b; }

/* Steps */
.help-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.help-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--help-border);
}

.help-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.help-step__number {
    counter-increment: step-counter;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--help-primary), var(--help-primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.help-step__number::before {
    content: counter(step-counter);
}

.help-step__content h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--help-text);
}

.help-step__content p {
    margin: 0;
    color: var(--help-text-muted);
    font-size: 0.95rem;
}

/* Article Footer */
.help-article__footer {
    padding: 1.5rem 2.5rem;
    background: var(--help-bg);
    border-top: 1px solid var(--help-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.help-article__helpful {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--help-text-muted);
    font-size: 0.9rem;
}

.help-article__helpful-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--help-border);
    border-radius: 10px;
    background: var(--help-card);
    color: var(--help-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-article__helpful-btn:hover {
    border-color: var(--help-primary);
    color: var(--help-primary);
}

.help-article__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--help-primary);
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.help-article__contact:hover {
    background: var(--help-primary);
    border-color: var(--help-primary);
    color: #fff;
}

/* Related Articles */
.help-related {
    margin-top: 2.5rem;
}

.help-related__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 0 0 1rem;
}

.help-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.help-related__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.help-related__item:hover {
    border-color: var(--help-primary);
}

.help-related__item i {
    width: 32px;
    height: 32px;
    background: var(--help-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--help-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.help-related__item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--help-text);
}

/* Search Results */
.help-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 200;
}

.help-search-results.active {
    display: block;
}

.help-search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    border-bottom: 1px solid var(--help-border);
    transition: background 0.2s ease;
}

.help-search-result:last-child {
    border-bottom: none;
}

.help-search-result:hover {
    background: var(--help-bg);
}

.help-search-result__icon {
    width: 32px;
    height: 32px;
    background: var(--help-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--help-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.help-search-result__content {
    flex: 1;
    min-width: 0;
}

.help-search-result__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--help-text);
    margin: 0;
}

.help-search-result__category {
    font-size: 0.75rem;
    color: var(--help-text-light);
}

.help-search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--help-text-muted);
}

.help-trademark-disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #556274;
    box-shadow: none;
}

.help-contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--help-soft-gradient);
    border: 1px solid var(--help-border);
    border-radius: 8px;
    margin-top: 2rem;
}

.help-contact-card__icon {
    width: 56px;
    height: 56px;
    background: var(--help-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.35rem;
}

.help-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--help-text);
    margin: 0 0 0.5rem;
}

.help-contact-card p {
    color: var(--help-text-muted);
    margin: 0 0 1.5rem;
}

.help-contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--help-primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.help-contact-card a:hover {
    background: var(--help-primary-dark);
}

.help-trademark-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #556274 !important;
}

/* Practical support hub */
.help-hub--support {
    max-width: 1120px;
}

.help-hub--support .help-hub__hero {
    text-align: left;
    padding: 2.25rem;
    margin-bottom: 1.5rem;
    background:
        linear-gradient(135deg, rgba(62, 47, 164, 0.08), rgba(59, 99, 217, 0.08)),
        #ffffff;
}

.help-hub__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.6rem;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(62, 47, 164, 0.18);
    border-radius: 999px;
    color: var(--help-primary);
    background: rgba(62, 47, 164, 0.06);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.help-hub--support .help-hub__hero-title {
    max-width: 700px;
    font-size: 2.05rem;
    line-height: 1.15;
}

.help-hub--support .help-hub__hero-subtitle {
    max-width: 720px;
    margin: 0 0 1.5rem;
    color: #536071;
    line-height: 1.65;
}

.help-hub--support .help-hub__search {
    max-width: 720px;
    margin: 0;
}

.help-paths {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.help-path {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.72rem;
    row-gap: 0.12rem;
    align-items: start;
    min-height: 92px;
    padding: 1rem;
    border: 1px solid var(--help-border);
    border-radius: 8px;
    background: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.help-path:hover {
    border-color: rgba(62, 47, 164, 0.38);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

.help-path i {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--help-primary);
    background: rgba(62, 47, 164, 0.08);
}

.help-path span {
    color: var(--help-text-muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

.help-path strong {
    color: var(--help-text);
    font-size: 0.95rem;
    line-height: 1.35;
}

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

.help-workspace .help-hub__section {
    margin: 0;
    padding: 1.25rem;
    border: 1px solid var(--help-border);
    border-radius: 8px;
    background: #ffffff;
}

.help-workspace .help-hub__section-header {
    display: block;
    margin-bottom: 1rem;
}

.help-workspace .help-hub__section-title {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.help-workspace .help-hub__section-header p {
    margin: 0;
    color: var(--help-text-muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.help-workspace .help-article-list {
    gap: 0.55rem;
}

.help-workspace .help-article-item {
    padding: 0.78rem 0.85rem;
    gap: 0.72rem;
    box-shadow: none;
}

.help-workspace .help-article-item__icon {
    width: 34px;
    height: 34px;
    font-size: 0.86rem;
}

.help-workspace .help-article-item__title {
    font-size: 0.92rem;
}

.help-workspace .help-article-item__meta {
    display: block;
    max-width: 100%;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.4;
}

.help-hub--support .help-contact-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
}

.help-hub--support .help-contact-card__icon {
    margin: 0;
}

.help-hub--support .help-contact-card h3 {
    margin-bottom: 0.2rem;
}

.help-hub--support .help-contact-card p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .help-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .help-sidebar.active {
        transform: translateX(0);
    }

    .help-main {
        margin-left: 0;
    }

    .help-mobile-toggle {
        display: flex;
    }

    .help-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .help-sidebar-overlay.active {
        display: block;
    }

    .help-paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-workspace {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .help-content {
        padding: 1.5rem;
    }

    .help-hub__hero {
        padding: 2rem 1.5rem 2.5rem;
    }

    .help-hub__hero-title {
        font-size: 1.75rem;
    }

    .help-hub__categories {
        grid-template-columns: 1fr;
    }

    .help-article__header {
        padding: 1.5rem;
    }

    .help-article__title {
        font-size: 1.35rem;
    }

    .help-article__body {
        padding: 1.5rem;
    }

    .help-article__footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .help-trademark-disclaimer {
        margin-top: 1.5rem;
        padding: 0.95rem 1rem;
    }

    .help-header {
        padding: 0 1rem;
    }

    .help-header__breadcrumb {
        display: none;
    }

    .help-hub--support .help-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .help-hub--support .help-contact-card__icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .help-hub__hero-title {
        font-size: 1.5rem;
    }

    .help-related__grid {
        grid-template-columns: 1fr;
    }

    .help-paths {
        grid-template-columns: 1fr;
    }
}
