/* ============================================================
   Profiler — Worker Profiles
   Reference: excellencecenter.ae
   ============================================================ */

/* Theme integration: prefer Elementor globals, then WP block-theme presets,
   then our defaults. Sites can also override --profiler-* directly. */
:root {
    --profiler-navy: var(--e-global-color-primary, var(--wp--preset--color--primary, #0e1f4d));
    --profiler-navy-dark: var(--e-global-color-secondary, #081538);
    --profiler-navy-light: #1c2f63;
    --profiler-gold: var(--e-global-color-accent, var(--wp--preset--color--accent, #f5b400));
    --profiler-gold-dark: #d99e00;
    --profiler-text: var(--e-global-color-text, var(--wp--preset--color--foreground, #1a2240));
    --profiler-muted: #6b7493;
    --profiler-border: #e3e8f3;
    --profiler-bg: #f6f8fc;
    --profiler-bg-light: #eef1fb;
    --profiler-white: #ffffff;
    --profiler-success: #15703f;
    --profiler-success-bg: #e6f6ed;
    --profiler-error: #b3261e;
    --profiler-error-bg: #fde8e8;
    --profiler-radius: 14px;
    --profiler-radius-sm: 8px;
    --profiler-shadow: 0 4px 18px rgba(14, 31, 77, 0.08);
    --profiler-shadow-lg: 0 10px 30px rgba(14, 31, 77, 0.12);
}

.profiler-page,
.profiler-section {
    color: var(--profiler-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
}
.profiler-page *,
.profiler-section * { box-sizing: border-box; }

.profiler-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.profiler-container--narrow { max-width: 760px; }

.profiler-section { padding: 64px 0; background: var(--profiler-bg); }
.profiler-section--plain { background: transparent; }

/* ---------- Typography ---------- */
.profiler-eyebrow {
    display: inline-block;
    background: var(--profiler-bg-light);
    color: var(--profiler-navy);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}
.profiler-heading {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--profiler-navy);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.profiler-intro {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--profiler-muted);
    line-height: 1.7;
    font-size: 15px;
}
.profiler-center { text-align: center; }

/* ---------- Grid ---------- */
.profiler-grid { display: grid; gap: 24px; }
.profiler-grid--cols-1 { grid-template-columns: 1fr; }
.profiler-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.profiler-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profiler-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.profiler-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profiler-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .profiler-grid--cols-4,
    .profiler-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .profiler-grid--cols-3,
    .profiler-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .profiler-grid { grid-template-columns: 1fr !important; gap: 18px; }
}

/* ---------- Categories ---------- */
.profiler-categories { text-align: center; background: var(--profiler-white); }
.profiler-cat-card {
    background: var(--profiler-white);
    border-radius: var(--profiler-radius);
    overflow: hidden;
    box-shadow: var(--profiler-shadow);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profiler-cat-card:hover { transform: translateY(-3px); box-shadow: var(--profiler-shadow-lg); }
.profiler-cat-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--profiler-bg-light);
    overflow: hidden;
}
.profiler-cat-card__media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.profiler-cat-card:hover .profiler-cat-card__media img { transform: scale(1.04); }
.profiler-cat-card__media-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #c8d3ec 0%, #8fa1ce 100%);
    position: relative;
}
.profiler-cat-card__media-placeholder::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
}
.profiler-cat-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.profiler-cat-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 50%);
    pointer-events: none;
}
.profiler-cat-icon svg {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}
.profiler-cat-card:hover .profiler-cat-icon svg { transform: scale(1.08); }
.profiler-cat-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.profiler-cat-card__title {
    margin: 0 0 10px; font-size: 19px; color: var(--profiler-navy); font-weight: 700;
}
.profiler-cat-card__desc {
    margin: 0 0 16px; color: var(--profiler-muted); font-size: 14px; line-height: 1.6;
    flex: 1;
}
.profiler-cat-card__link {
    color: #1f3aa6; text-decoration: underline; font-weight: 600; font-size: 14px;
    align-self: flex-start;
}
.profiler-cat-card__link:hover { color: var(--profiler-navy); }

/* ---------- Worker card ---------- */
.profiler-card {
    background: var(--profiler-white);
    border-radius: var(--profiler-radius);
    overflow: hidden;
    box-shadow: var(--profiler-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profiler-card:hover { transform: translateY(-3px); box-shadow: var(--profiler-shadow-lg); }

.profiler-card__header { position: relative; }
.profiler-card__fee-bar {
    background: var(--profiler-navy);
    color: var(--profiler-white);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    letter-spacing: 0.4px;
    position: relative;
}
.profiler-card__fee-bar::after {
    content: ""; position: absolute; left: 16px; bottom: -6px;
    width: 16px; height: 12px; background: var(--profiler-gold);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.profiler-card__badge-bar {
    background: var(--profiler-gold);
    color: var(--profiler-navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 7px 16px;
    text-align: center;
    text-transform: uppercase;
}

.profiler-card__body {
    padding: 24px 20px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profiler-card__photo {
    display: block;
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--profiler-bg-light);
    border: 3px solid var(--profiler-white);
    box-shadow: 0 2px 8px rgba(14, 31, 77, 0.12);
}
.profiler-card__photo img,
.profiler-card__photo-placeholder {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.profiler-card__photo-placeholder {
    background: linear-gradient(135deg, #c8d3ec 0%, #8fa1ce 100%);
}
.profiler-card__eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--profiler-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.profiler-card__name {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.profiler-card__name a {
    color: var(--profiler-navy);
    text-decoration: none;
}
.profiler-card__name a:hover { color: var(--profiler-navy-light); }
.profiler-card__price {
    margin: 4px 0;
    color: var(--profiler-text);
    font-size: 14px;
}
.profiler-card__price strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--profiler-navy);
}
.profiler-card__package {
    margin: 0 0 14px;
    color: var(--profiler-muted);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.profiler-card__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--profiler-gold);
    color: var(--profiler-white);
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.profiler-card__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.profiler-card__list li {
    position: relative;
    padding-left: 26px;
    font-size: 13px;
    color: var(--profiler-text);
    line-height: 1.4;
}
.profiler-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--profiler-gold);
}
.profiler-card__list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--profiler-white);
    border-bottom: 2px solid var(--profiler-white);
    transform: rotate(-45deg);
}

.profiler-card__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--profiler-border);
}

/* ---------- Buttons ---------- */
.profiler-btn {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
    font-family: inherit;
}
.profiler-btn:active { transform: scale(0.98); }
.profiler-btn--primary { background: var(--profiler-navy); color: var(--profiler-white); }
.profiler-btn--primary:hover { background: var(--profiler-navy-dark); color: var(--profiler-white); }
.profiler-btn--ghost {
    background: var(--profiler-white);
    color: var(--profiler-navy);
    border-left: 1px solid var(--profiler-border);
}
.profiler-btn--ghost:hover { background: var(--profiler-bg); color: var(--profiler-navy); }
.profiler-btn--block { width: 100%; }
.profiler-btn--lg { padding: 16px 24px; font-size: 14px; }

/* ---------- Single profile ---------- */
.profiler-single { padding: 48px 0 64px; background: var(--profiler-bg); min-height: 60vh; }
.profiler-single__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 860px) {
    .profiler-single__layout { grid-template-columns: 1fr; }
}

.profiler-single__sidebar {
    background: var(--profiler-white);
    border-radius: var(--profiler-radius);
    padding: 22px;
    box-shadow: var(--profiler-shadow);
    text-align: center;
    position: sticky;
    top: 24px;
}
@media (max-width: 860px) { .profiler-single__sidebar { position: static; } }
.profiler-single__photo {
    aspect-ratio: 1;
    background: var(--profiler-bg-light);
    border-radius: var(--profiler-radius-sm);
    overflow: hidden;
    margin-bottom: 18px;
}
.profiler-single__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profiler-single__eyebrow {
    font-size: 11px;
    color: var(--profiler-muted);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}
.profiler-single__name {
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--profiler-navy);
    font-weight: 800;
    line-height: 1.25;
}
.profiler-single__exp {
    margin: 0 0 6px;
    color: var(--profiler-muted);
    font-size: 14px;
}
.profiler-single__price {
    margin: 0 0 18px;
    font-weight: 800;
    color: var(--profiler-navy);
    font-size: 18px;
}

.profiler-single__main {
    background: var(--profiler-white);
    border-radius: var(--profiler-radius);
    padding: 32px;
    box-shadow: var(--profiler-shadow);
}
@media (max-width: 600px) { .profiler-single__main { padding: 22px; } }

.profiler-single__h2 {
    font-size: 18px;
    color: var(--profiler-navy);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--profiler-bg-light);
    font-weight: 700;
}
.profiler-single__section { margin-bottom: 32px; }
.profiler-single__section:last-child { margin-bottom: 0; }
.profiler-single__about {
    color: var(--profiler-text);
    line-height: 1.75;
    font-size: 15px;
}
.profiler-single__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
@media (max-width: 720px) { .profiler-single__cols { grid-template-columns: 1fr; gap: 24px; } }
.profiler-info { width: 100%; border-collapse: collapse; }
.profiler-info tr { border-bottom: 1px solid var(--profiler-bg-light); }
.profiler-info tr:last-child { border-bottom: 0; }
.profiler-info th, .profiler-info td {
    text-align: left;
    padding: 10px 0;
    vertical-align: top;
    font-size: 14px;
}
.profiler-info th { font-weight: 600; color: var(--profiler-muted); width: 45%; }
.profiler-info td { color: var(--profiler-text); font-weight: 500; }

.profiler-chip-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.profiler-chip {
    background: var(--profiler-white);
    border: 1px solid var(--profiler-border);
    color: var(--profiler-text);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}
.profiler-chip:hover { background: var(--profiler-bg-light); }
.profiler-chip a { color: inherit; text-decoration: none; }

.profiler-single__related { margin-top: 48px; }
.profiler-single__related .profiler-single__h2 { text-align: left; }

/* ---------- Video ---------- */
.profiler-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--profiler-radius);
    overflow: hidden;
    box-shadow: var(--profiler-shadow);
}
.profiler-video video,
.profiler-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- Gallery ---------- */
.profiler-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.profiler-gallery__item {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--profiler-radius-sm);
    overflow: hidden;
    background: var(--profiler-bg-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: zoom-in;
}
.profiler-gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--profiler-shadow);
}
.profiler-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Lightbox ---------- */
.profiler-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 21, 56, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.profiler-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.profiler-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}
.profiler-lightbox__close,
.profiler-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background 0.15s ease;
}
.profiler-lightbox__close:hover,
.profiler-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.profiler-lightbox__close { top: 20px; right: 20px; }
.profiler-lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.profiler-lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
    .profiler-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .profiler-lightbox__nav { width: 40px; height: 40px; }
    .profiler-lightbox__nav--prev { left: 8px; }
    .profiler-lightbox__nav--next { right: 8px; }
}

/* ---------- Archive page header ---------- */
.profiler-archive-header {
    padding: 56px 0 32px;
    background: linear-gradient(180deg, var(--profiler-bg-light) 0%, var(--profiler-bg) 100%);
}
.profiler-archive-header .profiler-heading { text-align: left; margin-bottom: 8px; }
.profiler-archive-header .profiler-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.profiler-empty {
    text-align: center;
    color: var(--profiler-muted);
    padding: 60px 20px;
    background: var(--profiler-white);
    border-radius: var(--profiler-radius);
    box-shadow: var(--profiler-shadow);
}

.profiler-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.profiler-pagination .page-numbers {
    padding: 10px 14px;
    border-radius: var(--profiler-radius-sm);
    background: var(--profiler-white);
    color: var(--profiler-navy);
    text-decoration: none;
    box-shadow: var(--profiler-shadow);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
}
.profiler-pagination .page-numbers:hover { background: var(--profiler-bg-light); }
.profiler-pagination .page-numbers.current { background: var(--profiler-navy); color: var(--profiler-white); }

/* ---------- Registration Form ----------
   Field visuals (border, padding, focus, checkboxes) inherit from the
   active theme. The form WRAPPER is intentionally styled to feel
   premium: gradient header band, sectioned groups, full-width CTA. */
.profiler-register {
    background: var(--profiler-bg);
    background-image: radial-gradient(circle at 0% 0%, rgba(14, 31, 77, 0.04), transparent 40%),
                      radial-gradient(circle at 100% 100%, rgba(245, 180, 0, 0.06), transparent 40%);
}
.profiler-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: var(--profiler-white);
    padding: 0;
    border-radius: var(--profiler-radius);
    box-shadow: var(--profiler-shadow-lg);
    overflow: hidden;
}
.profiler-form__hero {
    background: linear-gradient(135deg, var(--profiler-navy) 0%, var(--profiler-navy-light) 100%);
    color: var(--profiler-white);
    padding: 36px 36px 30px;
    text-align: center;
    position: relative;
}
.profiler-form__hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--profiler-gold), transparent);
}
.profiler-form__hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--profiler-white);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.profiler-form__hero-title {
    margin: 0 0 8px;
    color: var(--profiler-white);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
}
.profiler-form__hero-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.55;
}
.profiler-form__body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 22px; }
@media (max-width: 600px) {
    .profiler-form__hero { padding: 28px 22px 24px; }
    .profiler-form__body { padding: 22px; }
}
.profiler-form__section { display: flex; flex-direction: column; gap: 16px; }
.profiler-form__section-title {
    margin: 0;
    padding: 14px 0 8px;
    border-top: 1px solid var(--profiler-bg-light);
    color: var(--profiler-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.profiler-form__section-title::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--profiler-gold);
    border-radius: 2px;
}
.profiler-form__section:first-of-type .profiler-form__section-title { border-top: 0; padding-top: 0; }
.profiler-form__submit {
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.profiler-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Some themes hide native <select> (to swap in JS widgets like Select2).
   Force ours visible and match the visible text-input look. */
.profiler-form select {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background-color: #fff;
    border: 1px solid #d8def0;
    border-radius: 6px;
    font: inherit;
    color: inherit;
    line-height: 1.4;
    min-height: 42px;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}
.profiler-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.profiler-form__fieldset {
    margin: 0;
    padding: 16px 18px;
}
.profiler-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.profiler-checkbox {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
}
.profiler-checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    margin: 0;
}

.profiler-muted {
    color: var(--profiler-muted);
    font-size: 13px;
    text-align: center;
    margin: 0;
}

.profiler-notice {
    padding: 14px 18px;
    border-radius: var(--profiler-radius-sm);
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 500;
}
.profiler-notice--success {
    background: var(--profiler-success-bg);
    color: var(--profiler-success);
    border-left: 4px solid var(--profiler-success);
}
.profiler-notice--error {
    background: var(--profiler-error-bg);
    color: var(--profiler-error);
    border-left: 4px solid var(--profiler-error);
}

/* ---------- Call to Book revealed state ---------- */
.profiler-call-to-book.is-revealed {
    background: var(--profiler-gold);
    color: var(--profiler-navy);
}
.profiler-call-to-book.is-revealed:hover {
    background: var(--profiler-gold-dark);
    color: var(--profiler-navy);
}

/* ---------- Admin Help Page ---------- */
.profiler-admin-wrap { max-width: 1100px; }
.profiler-admin-wrap h1 { color: var(--profiler-navy); }
.profiler-admin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 20px;
}
@media (max-width: 960px) { .profiler-admin-grid { grid-template-columns: 1fr; } }
.profiler-admin-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}
.profiler-admin-card h2 {
    margin-top: 0;
    color: var(--profiler-navy);
    font-size: 17px;
    border-bottom: 1px solid var(--profiler-bg-light);
    padding-bottom: 10px;
}
.profiler-admin-card code {
    background: var(--profiler-bg-light);
    color: var(--profiler-navy);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
}
.profiler-admin-card pre {
    background: var(--profiler-navy);
    color: #d8e2f7;
    padding: 14px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 13px;
    margin: 10px 0;
}
.profiler-admin-card pre code { background: transparent; color: inherit; padding: 0; }
.profiler-admin-card ul { padding-left: 22px; }
.profiler-admin-card li { margin-bottom: 8px; }
.profiler-admin-stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--profiler-bg-light);
}
.profiler-admin-stat:last-child { border-bottom: 0; }
.profiler-admin-stat strong { color: var(--profiler-navy); }
