.poolys-help-section {
    position: relative;
    z-index: 1;
}

.help-hero {
    padding: clamp(64px, 8vw, 120px) 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.02);
}

.help-hero::before {
    display: none;
}

.help-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--copy-primary);
}

.help-subtitle {
    max-width: 720px;
    margin: 0 auto 32px auto;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--copy-muted);
}

.help-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.help-category-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    padding: 32px;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-strong);
}

.category-icon {
    font-size: 24px;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--hover-bg);
    color: var(--copy-primary);
    border-radius: 50%;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.help-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-link-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: padding-left 0.3s ease;
}

.help-link-item:hover {
    padding-left: 8px;
}

.help-link-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.help-item-link-text {
    color: var(--copy-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.help-item-link-text::before {
    content: "→";
    margin-right: 12px;
    color: var(--copy-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.help-link-item:hover .help-item-link-text {
    color: var(--copy-primary);
}

.help-link-item:hover .help-item-link-text::before {
    opacity: 1;
    transform: translateX(0);
}

.help-search-results-wrapper {
    margin-bottom: 40px;
}

.help-search-result-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
}

.help-search-result-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.help-result-link-block {
    text-decoration: none;
    color: inherit;
    display: block;
}

.help-result-link-block h4 {
    color: var(--copy-primary);
    transition: color 0.3s ease;
    margin-bottom: 8px;
    font-size: 18px;
}

.help-result-link-block:hover h4 {
    color: var(--copy-primary);
}

.help-back-to-hub {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--copy-muted);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: var(--bg-card);
    border-radius: 99px;
    border: 1px solid var(--border-light);
}

.help-back-to-hub:hover {
    color: var(--copy-primary);
    background: var(--hover-bg);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.icon-back-arrow {
    margin-right: 8px;
}

.help-detail-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--copy-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.help-detail-subtitle {
    font-size: 16px;
    color: var(--copy-muted);
}

.help-article-content {
    line-height: 1.8;
    font-size: 18px;
    color: var(--copy-primary);
}

.help-article-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 24px;
    color: var(--copy-primary);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.help-article-content p {
    margin-bottom: 24px;
    color: var(--copy-muted);
}

.help-article-content ul,
.help-article-content ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.help-article-content li {
    margin-bottom: 16px;
    color: var(--copy-muted);
}