/* =============================================================
   HOME PAGE — REDESIGN 2026
   Minimal · Clean · Professional
   Design tokens from theme.css / site.css
   ============================================================= */


/* =============================================================
   HOME PAGE DESIGN TOKENS
   --hp-dark: dark navy for contrast sections (Why Us, CTA)
   Teal/brand colors are sourced from theme.css variables
   ============================================================= */
:root {
    --hp-dark: #0e1b27;
    --hp-dark2: #162230;
}

[data-theme="dark"] {
    --hp-dark: #07111a;
    --hp-dark2: #0d1d27;
}

/* =============================================================
   SHARED SECTION UTILITIES
   ============================================================= */

.hp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.hp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #209aa2;
    background: rgba(32, 154, 162, 0.08);
    border: 1px solid rgba(32, 154, 162, 0.18);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary, #1a2e35);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hp-section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.65;
    margin: 0;
}


/* =============================================================
   HERO
   ============================================================= */

.hp-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height, 72px));
    display: flex;
    align-items: center;
}

/* Full-bleed background layer */
.hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Gradient veil — fades from the text side to transparent
   RTL (Arabic): text on RIGHT, woman on LEFT  → fade right→left
   LTR (English): text on LEFT, woman on RIGHT → fade left→right */
.hp-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(248, 250, 251, 0.98) 0%,
            rgba(248, 250, 251, 0.95) 32%,
            rgba(248, 250, 251, 0.55) 58%,
            transparent 75%
        ),
        linear-gradient(
            to top,
            rgba(248, 250, 251, 0.6) 0%,
            transparent 30%
        );
}

[dir="rtl"] .hp-hero__veil {
    background:
        linear-gradient(
            to left,
            rgba(248, 250, 251, 0.98) 0%,
            rgba(248, 250, 251, 0.95) 32%,
            rgba(248, 250, 251, 0.55) 58%,
            transparent 75%
        ),
        linear-gradient(
            to top,
            rgba(248, 250, 251, 0.6) 0%,
            transparent 30%
        );
}

[data-theme="dark"] .hp-hero__veil {
    background:
        linear-gradient(
            to right,
            rgba(15, 34, 37, 0.98) 0%,
            rgba(15, 34, 37, 0.95) 32%,
            rgba(15, 34, 37, 0.55) 58%,
            transparent 75%
        ),
        linear-gradient(
            to top,
            rgba(15, 34, 37, 0.6) 0%,
            transparent 30%
        );
}

[data-theme="dark"][dir="rtl"] .hp-hero__veil {
    background:
        linear-gradient(
            to left,
            rgba(15, 34, 37, 0.98) 0%,
            rgba(15, 34, 37, 0.95) 32%,
            rgba(15, 34, 37, 0.55) 58%,
            transparent 75%
        ),
        linear-gradient(
            to top,
            rgba(15, 34, 37, 0.6) 0%,
            transparent 30%
        );
}

/* Text overlay — positioned on the text side, away from the woman */
.hp-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    /* LTR: content hugs left edge */
    justify-content: flex-start;
    padding: 80px max(8vw, 48px);
    min-height: calc(100vh - var(--header-height, 72px));
    pointer-events: none;
}

[dir="rtl"] .hp-hero__content {
    /* RTL: content on right edge (reading-direction start) */
    justify-content: flex-start;
}

[dir="rtl"] .hp-hero__copy-inner {
    margin-left: auto;
    margin-right: 0;
}

.hp-hero__content > * {
    pointer-events: auto;
}

.hp-hero__copy-inner {
    max-width: 520px;
    width: 100%;
}

/* — Copy — */
.hp-hero__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #209aa2;
    background: rgba(32, 154, 162, 0.08);
    border: 1px solid rgba(32, 154, 162, 0.18);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hp-hero__title {
    font-size: clamp(2rem, 3.7vw, 3.1rem);
    font-weight: 900;
    line-height: 1.45;
    color: var(--text-primary, #1a2e35);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hp-hero__title-accent {
    color: #209aa2;
}

.hp-hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 40px;
}

/* Hero buttons */
.hp-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-hp-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #209aa2;
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(32, 154, 162, 0.28);
}

.btn-hp-primary:hover {
    background: #205b5f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 154, 162, 0.35);
}

.btn-hp-primary i {
    transition: transform 0.2s;
}

.btn-hp-primary:hover i {
    transform: translateX(4px);
}

[dir="rtl"] .btn-hp-primary:hover i {
    transform: translateX(-4px);
}

.btn-hp-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: 1.5px solid var(--border-color, #dce8e9);
    border-radius: 10px;
    color: var(--text-primary, #1a2e35);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.btn-hp-ghost:hover {
    border-color: #209aa2;
    background: rgba(32, 154, 162, 0.05);
    color: #209aa2;
    transform: translateY(-2px);
}

/* Social proof */
.hp-hero__proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted, #8da8ab);
    margin: 0;
}

.hp-hero__proof i {
    color: #209aa2;
    font-size: 1rem;
}

/* — Floating pills — opposite corner from the text */
.hp-hero__pills {
    position: absolute;
    z-index: 3;
    /* LTR: bottom-right, near the woman */
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

[dir="rtl"] .hp-hero__pills {
    right: auto;
    /* RTL: bottom-left, near the woman */
    left: 40px;
}

.hp-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a2e35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hp-pill i {
    font-size: 1rem;
}

.hp-pill--jobs i    { color: #209aa2; }
.hp-pill--courses i { color: #e78a56; }
.hp-pill--ai i      { color: #205b5f; }

[data-theme="dark"] .hp-pill {
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}


/* =============================================================
   STATS BAR — Premium Redesign
   ============================================================= */

.hp-stats {
    padding: 0 0 80px;
    background: var(--bg-body, #f8fafb);
    position: relative;
    z-index: 1;
}

.hp-stats__bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -36px;
}

.hp-stats__item {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light, #eef4f4);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Teal accent bar at top */
.hp-stats__item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-teal, #209aa2), var(--brand-teal-dark, #205b5f));
}

.hp-stats__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(32, 154, 162, 0.14);
}

.hp-stats__value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-teal, #209aa2);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.hp-stats__label {
    font-size: 0.78rem;
    color: var(--text-secondary, #5a7a7e);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hp-stats__sep { display: none; }

[data-theme="dark"] .hp-stats__item {
    background: var(--bg-card, #152e31);
    border-color: var(--border-color, #1e4446);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .hp-stats__item:hover {
    box-shadow: 0 16px 40px rgba(32, 154, 162, 0.2);
}


/* =============================================================
   FEATURES — Premium Redesign
   ============================================================= */

.hp-features {
    padding: 96px 0 112px;
    background: var(--bg-body, #f8fafb);
    position: relative;
    overflow: hidden;
}

.hp-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32,154,162,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Base card */
.hp-feature-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #dce8e9);
    border-radius: 24px;
    padding: 36px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
    border-color: rgba(32, 154, 162, 0.3);
}

/* No top accent bar - replaced by top number badge */
.hp-feature-card__accent { display: none; }

/* Icon */
.hp-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 28px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.2s;
}

.hp-feature-card:hover .hp-feature-card__icon {
    transform: scale(1.1) rotate(-3deg);
}

.hp-feature-card__icon--teal {
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.12) 0%, rgba(32, 154, 162, 0.06) 100%);
    color: #209aa2;
    border: 1.5px solid rgba(32, 154, 162, 0.18);
}

.hp-feature-card__icon--white {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.hp-feature-card__icon--muted {
    background: linear-gradient(135deg, rgba(32, 91, 95, 0.1) 0%, rgba(32, 91, 95, 0.05) 100%);
    color: #205b5f;
    border: 1.5px solid rgba(32, 91, 95, 0.15);
}

/* Text */
.hp-feature-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary, #1a2e35);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hp-feature-card--highlight .hp-feature-card__title {
    color: #ffffff;
}

.hp-feature-card__desc {
    font-size: 0.93rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.75;
    margin-bottom: 32px;
    flex: 1;
}

.hp-feature-card--highlight .hp-feature-card__desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Link */
.hp-feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #209aa2;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(32, 154, 162, 0.08);
    border-radius: 100px;
    border: 1.5px solid rgba(32, 154, 162, 0.18);
    transition: all 0.2s;
    align-self: flex-start;
}

.hp-feature-card--highlight .hp-feature-card__link {
    color: #209aa2;
    background: #ffffff;
    border-color: transparent;
}

.hp-feature-card__link:hover {
    background: rgba(32, 154, 162, 0.14);
    border-color: rgba(32, 154, 162, 0.35);
    gap: 14px;
}

.hp-feature-card--highlight .hp-feature-card__link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Highlighted (middle) card */
.hp-feature-card--highlight {
    background: linear-gradient(145deg, #209aa2 0%, #177e86 50%, #145f65 100%);
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(32, 154, 162, 0.35);
}

.hp-feature-card--highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(32, 154, 162, 0.45);
}


/* =============================================================
   HOW IT WORKS
   ============================================================= */

.hp-steps {
    padding: 96px 0 112px;
    background: var(--bg-card, #ffffff);
    border-top: 1px solid var(--border-light, #eef4f4);
    border-bottom: 1px solid var(--border-light, #eef4f4);
    position: relative;
    overflow: hidden;
}

/* Subtle teal glow in top-left */
.hp-steps::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32,154,162,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hp-steps__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Continuous track line — centered with the 84px circles */
.hp-steps__row::before {
    content: '';
    position: absolute;
    top: 42px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background: repeating-linear-gradient(
        to left,
        var(--brand-teal, #209aa2) 0,
        var(--brand-teal, #209aa2) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
}

[dir="rtl"] .hp-steps__row::before {
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    background: repeating-linear-gradient(
        to right,
        var(--brand-teal, #209aa2) 0,
        var(--brand-teal, #209aa2) 8px,
        transparent 8px,
        transparent 16px
    );
}

.hp-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Circle — replaces old num-wrap + icon combo */
.hp-step__circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--bg-body, #f8fafb);
    border: 2px solid var(--border-color, #dce8e9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}

.hp-step:hover .hp-step__circle {
    background: var(--brand-teal, #209aa2);
    border-color: var(--brand-teal, #209aa2);
    box-shadow: 0 0 0 10px rgba(32, 154, 162, 0.12);
}

.hp-step__n {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--brand-teal, #209aa2);
    transition: color 0.25s;
    letter-spacing: -0.01em;
}

.hp-step:hover .hp-step__n {
    color: #ffffff;
}

/* Legacy — kept hidden to avoid layout shift */
.hp-step__num-wrap,
.hp-step__line,
.hp-step__line--last,
.hp-step__icon { display: none; }

.hp-step__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.hp-step__desc {
    font-size: 0.88rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.7;
    margin: 0;
}

/* Keep old connector hidden */
.hp-step__connector { display: none; }


/* =============================================================
   SEO SECTION (Arabic only)
   ============================================================= */

.hp-seo {
    padding: 56px 0;
    background: var(--bg-body, #f8fafb);
    border-top: 1px solid var(--border-light, #eef4f4);
}

.hp-seo h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary, #5a7a7e);
    margin-bottom: 14px;
}

.hp-seo p {
    font-size: 0.88rem;
    color: var(--text-muted, #8da8ab);
    line-height: 1.85;
    max-width: 820px;
    margin-bottom: 10px;
}

.hp-seo p:last-child {
    margin-bottom: 0;
}

.hp-seo strong {
    color: var(--text-secondary, #5a7a7e);
}


/* =============================================================
   CTA STRIP — dark full-bleed
   ============================================================= */

.hp-cta {
    background: var(--brand-teal, #209aa2);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-cta .container {
    position: relative;
    z-index: 1;
}

/* Decorative ring — top-right */
.hp-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 90px solid rgba(32, 154, 162, 0.07);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

/* Decorative ring — bottom-left */
.hp-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(32, 154, 162, 0.05);
    bottom: -180px;
    left: -80px;
    pointer-events: none;
}

.hp-cta__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.12;
}

.hp-cta__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 440px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.btn-hp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #ffffff;
    color: var(--brand-teal-dark, #205b5f);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.01em;
}

.btn-hp-cta:hover {
    background: #eef9f9;
    color: var(--brand-teal-dark, #205b5f);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.btn-hp-cta i {
    font-size: 1.15rem;
    transition: transform 0.2s;
}

.btn-hp-cta:hover i {
    transform: translateX(4px);
}

[dir="rtl"] .btn-hp-cta:hover i {
    transform: translateX(-4px);
}


/* =============================================================
   TRUST STRIP (guest only)
   ============================================================= */

.hp-trust {
    padding: 24px 0 48px;
    background: var(--bg-body, #f8fafb);
}

.hp-trust__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted, #8da8ab);
    margin: 0 0 18px;
}

.hp-trust__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 22px;
    opacity: 0.85;
}

.hp-trust__logo {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-secondary, #5a7a7e);
    padding: 6px 4px;
    transition: color 0.2s, transform 0.2s;
}

.hp-trust__row:hover .hp-trust__logo {
    color: var(--text-muted, #8da8ab);
}

.hp-trust__logo:hover {
    color: #209aa2 !important;
    transform: translateY(-1px);
}

.hp-trust__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-color, #dce8e9);
    flex-shrink: 0;
}


/* =============================================================
   AUDIENCE SPLIT (guest only)
   ============================================================= */

.hp-audience {
    padding: 96px 0;
    background: var(--bg-body, #f8fafb);
    position: relative;
    overflow: hidden;
}

.hp-audience::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32,154,162,0.05) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.hp-audience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    max-width: 860px;
    margin-inline: auto;
}

.hp-aud-card {
    position: relative;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #dce8e9);
    border-radius: 24px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.hp-aud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #209aa2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

[dir="rtl"] .hp-aud-card::before {
    transform-origin: right;
}

.hp-aud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
    border-color: rgba(32, 154, 162, 0.3);
}

.hp-aud-card:hover::before {
    transform: scaleX(1);
}

.hp-aud-card--seeker::before { background: linear-gradient(90deg, #209aa2, #1a8289); }
.hp-aud-card--company::before { background: linear-gradient(90deg, #e78a56, #d97a3e); }
.hp-aud-card--expert::before { background: linear-gradient(90deg, #205b5f, #18484c); }

.hp-aud-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 24px;
    transition: transform 0.25s, background 0.25s;
}

.hp-aud-card--seeker .hp-aud-card__icon {
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.14), rgba(32, 154, 162, 0.05));
    color: #209aa2;
    border: 1.5px solid rgba(32, 154, 162, 0.2);
}

.hp-aud-card--company .hp-aud-card__icon {
    background: linear-gradient(135deg, rgba(231, 138, 86, 0.14), rgba(231, 138, 86, 0.05));
    color: #e78a56;
    border: 1.5px solid rgba(231, 138, 86, 0.2);
}

.hp-aud-card--expert .hp-aud-card__icon {
    background: linear-gradient(135deg, rgba(32, 91, 95, 0.14), rgba(32, 91, 95, 0.05));
    color: #205b5f;
    border: 1.5px solid rgba(32, 91, 95, 0.2);
}

.hp-aud-card:hover .hp-aud-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.hp-aud-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary, #1a2e35);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hp-aud-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.7;
    margin-bottom: 22px;
}

.hp-aud-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hp-aud-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-primary, #1a2e35);
    line-height: 1.5;
}

.hp-aud-card__list i {
    color: #209aa2;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.hp-aud-card--company .hp-aud-card__list i { color: #e78a56; }
.hp-aud-card--expert .hp-aud-card__list i { color: #205b5f; }

.hp-aud-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.hp-aud-card--seeker .hp-aud-card__cta {
    background: #209aa2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 154, 162, 0.28);
}
.hp-aud-card--seeker .hp-aud-card__cta:hover {
    background: #1a8289;
    color: #ffffff;
    gap: 14px;
    transform: translateY(-1px);
}

.hp-aud-card--company .hp-aud-card__cta {
    background: rgba(231, 138, 86, 0.1);
    color: #d97a3e;
    border: 1.5px solid rgba(231, 138, 86, 0.3);
}
.hp-aud-card--company .hp-aud-card__cta:hover {
    background: #e78a56;
    color: #ffffff;
    border-color: transparent;
    gap: 14px;
}

.hp-aud-card--expert .hp-aud-card__cta {
    background: rgba(32, 91, 95, 0.08);
    color: #205b5f;
    border: 1.5px solid rgba(32, 91, 95, 0.2);
}
.hp-aud-card--expert .hp-aud-card__cta:hover {
    background: #205b5f;
    color: #ffffff;
    border-color: transparent;
    gap: 14px;
}


/* =============================================================
   POPULAR CATEGORIES (guest only)
   ============================================================= */

.hp-categories {
    padding: 96px 0;
    background: var(--bg-card, #ffffff);
    border-top: 1px solid var(--border-light, #eef4f4);
    border-bottom: 1px solid var(--border-light, #eef4f4);
}

.hp-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.hp-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 20px;
    background: var(--bg-body, #f8fafb);
    border: 1px solid var(--border-color, #dce8e9);
    border-radius: 18px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.hp-cat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 154, 162, 0.4);
    background: var(--bg-card, #ffffff);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.hp-cat-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.2s;
}

.hp-cat-card:hover .hp-cat-card__icon {
    transform: scale(1.1) rotate(-4deg);
}

.hp-cat-card__icon--tech    { background: rgba(32,154,162,0.12);  color: #209aa2; }
.hp-cat-card__icon--biz     { background: rgba(231,138,86,0.14);  color: #d97a3e; }
.hp-cat-card__icon--design  { background: rgba(168,85,247,0.12);  color: #a855f7; }
.hp-cat-card__icon--health  { background: rgba(239,68,68,0.10);   color: #ef4444; }
.hp-cat-card__icon--edu     { background: rgba(59,130,246,0.10);  color: #3b82f6; }
.hp-cat-card__icon--eng     { background: rgba(32,91,95,0.12);    color: #205b5f; }
.hp-cat-card__icon--mkt     { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.hp-cat-card__icon--fin     { background: rgba(16,185,129,0.12);  color: #10b981; }

.hp-cat-card__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
    text-align: center;
    letter-spacing: -0.01em;
}

.hp-cat-card__en {
    font-size: 0.75rem;
    color: var(--text-muted, #8da8ab);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

.hp-categories__more {
    text-align: center;
}

.hp-categories__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(32, 154, 162, 0.08);
    border: 1.5px solid rgba(32, 154, 162, 0.2);
    color: #209aa2;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: gap 0.2s, background 0.2s, border-color 0.2s;
}

.hp-categories__link:hover {
    gap: 12px;
    background: rgba(32, 154, 162, 0.14);
    border-color: rgba(32, 154, 162, 0.35);
    color: #1a8289;
}

[dir="rtl"] .hp-categories__link:hover i,
[dir="rtl"] .hp-aud-card__cta:hover i {
    transform: translateX(-2px);
}


/* =============================================================
   TESTIMONIALS (guest only)
   ============================================================= */

.hp-testimonials {
    padding: 96px 0;
    background: var(--bg-body, #f8fafb);
    position: relative;
    overflow: hidden;
}

.hp-testimonials::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,138,86,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hp-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-testi-card {
    position: relative;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #dce8e9);
    border-radius: 22px;
    padding: 40px 32px 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hp-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.hp-testi-card__quote-mark {
    position: absolute;
    top: 22px;
    inset-inline-end: 28px;
    color: rgba(32, 154, 162, 0.18);
    font-size: 2.4rem;
    line-height: 1;
    pointer-events: none;
}

.hp-testi-card__quote {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-primary, #1a2e35);
    font-weight: 500;
    quotes: none;
}

.hp-testi-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--border-light, #eef4f4);
}

.hp-testi-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #209aa2, #177e86);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(32, 154, 162, 0.25);
}

.hp-testi-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hp-testi-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
}

.hp-testi-card__role {
    font-size: 0.82rem;
    color: var(--text-muted, #8da8ab);
}

.hp-testi-card--accent {
    background: linear-gradient(145deg, #209aa2 0%, #177e86 60%, #145f65 100%);
    border-color: transparent;
    box-shadow: 0 18px 44px rgba(32, 154, 162, 0.28);
}

.hp-testi-card--accent .hp-testi-card__quote {
    color: #ffffff;
}

.hp-testi-card--accent .hp-testi-card__quote-mark {
    color: rgba(255, 255, 255, 0.25);
}

.hp-testi-card--accent .hp-testi-card__author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.hp-testi-card--accent .hp-testi-card__name {
    color: #ffffff;
}

.hp-testi-card--accent .hp-testi-card__role {
    color: rgba(255, 255, 255, 0.78);
}

.hp-testi-card--accent .hp-testi-card__avatar {
    background: #ffffff;
    color: #209aa2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}


/* =============================================================
   FAQ TEASER (guest only)
   ============================================================= */

.hp-faq {
    padding: 96px 0;
    background: var(--bg-card, #ffffff);
    border-top: 1px solid var(--border-light, #eef4f4);
}

.hp-faq__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.hp-faq__copy {
    position: sticky;
    top: 110px;
}

.hp-faq__copy .hp-section-label {
    margin-bottom: 18px;
}

.hp-faq__copy .hp-section-title {
    text-align: start;
    margin-bottom: 14px;
}

.hp-faq__copy .hp-section-sub {
    text-align: start;
    margin-bottom: 28px;
}

.hp-faq__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #209aa2;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(32, 154, 162, 0.28);
    transition: gap 0.2s, background 0.2s, transform 0.2s;
}

.hp-faq__link:hover {
    background: #1a8289;
    color: #ffffff;
    gap: 14px;
    transform: translateY(-1px);
}

.hp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hp-faq-item {
    background: var(--bg-body, #f8fafb);
    border: 1px solid var(--border-color, #dce8e9);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.hp-faq-item:hover {
    border-color: rgba(32, 154, 162, 0.3);
}

.hp-faq-item[open] {
    border-color: rgba(32, 154, 162, 0.4);
    background: var(--bg-card, #ffffff);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.hp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

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

.hp-faq-item summary::marker {
    display: none;
}

.hp-faq-item summary:hover {
    color: #209aa2;
}

.hp-faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(32, 154, 162, 0.1);
    color: #209aa2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.25s, background 0.2s;
}

.hp-faq-item[open] .hp-faq-item__icon {
    transform: rotate(45deg);
    background: #209aa2;
    color: #ffffff;
}

.hp-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 0.93rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.75;
}


/* =============================================================
   DARK MODE OVERRIDES
   ============================================================= */

[data-theme="dark"] .hp-stats__bar {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hp-stats__item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .hp-feature-card {
    background: var(--bg-card, #1a2e31);
    border-color: var(--border-color, #1e4446);
}

[data-theme="dark"] .hp-feature-card:hover {
    border-color: rgba(32, 154, 162, 0.4);
}

[data-theme="dark"] .hp-steps {
    background: var(--bg-card, #152e31);
    border-color: var(--border-color, #1e4446);
}

[data-theme="dark"] .hp-steps::before {
    background: radial-gradient(circle, rgba(32,154,162,0.1) 0%, transparent 70%);
}

[data-theme="dark"] .hp-step__icon {
    background: rgba(32, 154, 162, 0.1);
    border-color: rgba(32, 154, 162, 0.25);
}

[data-theme="dark"] .hp-step__circle {
    background: var(--bg-card-hover, #1a3a3d);
    border-color: var(--border-color, #1e4446);
}

[data-theme="dark"] .hp-feature-card--highlight {
    background: linear-gradient(145deg, #209aa2 0%, #177e86 100%);
    border-color: transparent;
}

[data-theme="dark"] .hp-cta__box::before {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .hp-cta__box::after {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .hp-aud-card,
[data-theme="dark"] .hp-cat-card,
[data-theme="dark"] .hp-testi-card,
[data-theme="dark"] .hp-faq-item {
    background: var(--bg-card, #1a2e31);
    border-color: var(--border-color, #1e4446);
}

[data-theme="dark"] .hp-cat-card {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .hp-cat-card:hover {
    background: var(--bg-card, #1a2e31);
}

[data-theme="dark"] .hp-faq-item {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .hp-faq-item[open] {
    background: var(--bg-card, #1a2e31);
}

[data-theme="dark"] .hp-categories {
    background: var(--bg-card, #152e31);
}

[data-theme="dark"] .hp-faq {
    background: var(--bg-card, #152e31);
}

[data-theme="dark"] .hp-trust__logo {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .hp-testi-card--accent {
    background: linear-gradient(145deg, #209aa2 0%, #177e86 100%);
    border-color: transparent;
}


/* =============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================= */

@media (max-width: 1100px) {
    .hp-hero__content {
        padding: 60px max(5vw, 32px);
    }

    .hp-hero__veil {
        background:
            linear-gradient(
                to right,
                rgba(248, 250, 251, 0.98) 0%,
                rgba(248, 250, 251, 0.97) 38%,
                rgba(248, 250, 251, 0.6) 65%,
                transparent 82%
            ),
            linear-gradient(to top, rgba(248, 250, 251, 0.6) 0%, transparent 30%);
    }

    [dir="rtl"] .hp-hero__veil {
        background:
            linear-gradient(
                to left,
                rgba(248, 250, 251, 0.98) 0%,
                rgba(248, 250, 251, 0.97) 38%,
                rgba(248, 250, 251, 0.6) 65%,
                transparent 82%
            ),
            linear-gradient(to top, rgba(248, 250, 251, 0.6) 0%, transparent 30%);
    }

    .hp-stats__bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-stats__item:nth-child(2n)::after {
        display: none;
    }

    .hp-stats__item:nth-child(2n+1):not(:nth-last-child(-n+2))::after {
        display: block;
    }

    .hp-features__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    .hp-feature-card--highlight {
        transform: translateY(0);
    }

    .hp-feature-card--highlight:hover {
        transform: translateY(-6px);
    }

    .hp-steps__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .hp-steps__row::before {
        display: none;
    }

    .hp-audience__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    .hp-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-testi__grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-inline: auto;
    }

    .hp-faq__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-faq__copy {
        position: static;
        text-align: center;
    }

    .hp-faq__copy .hp-section-title,
    .hp-faq__copy .hp-section-sub {
        text-align: center;
    }
}


/* =============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */

@media (max-width: 768px) {
    .hp-hero {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
    }

    .hp-hero__bg {
        position: relative;
        height: 56vw;
        min-height: 260px;
        max-height: 400px;
        z-index: 0;
    }

    .hp-hero__photo {
        object-position: 65% top;
    }

    .hp-hero__veil {
        /* On mobile: fade bottom edge of photo into background */
        background: linear-gradient(
            to bottom,
            transparent 40%,
            rgba(248, 250, 251, 0.85) 75%,
            rgba(248, 250, 251, 1) 100%
        );
    }

    [dir="rtl"] .hp-hero__veil {
        background: linear-gradient(
            to bottom,
            transparent 40%,
            rgba(248, 250, 251, 0.85) 75%,
            rgba(248, 250, 251, 1) 100%
        );
    }

    .hp-hero__content {
        position: relative;
        z-index: 2;
        min-height: auto;
        padding: 32px 24px 48px;
        justify-content: flex-start;
    }

    [dir="rtl"] .hp-hero__content {
        justify-content: flex-start;
    }

    .hp-hero__copy-inner {
        max-width: 100%;
    }

    .hp-hero__pills {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 24px 40px;
        gap: 8px;
    }

    [dir="rtl"] .hp-hero__pills {
        right: auto;
        left: auto;
        justify-content: flex-end;
    }

    .hp-hero__desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .hp-stats__bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        border-radius: 16px;
    }

    .hp-stats__item {
        padding: 28px 16px;
    }

    .hp-stats__value {
        font-size: 1.9rem;
    }

    .hp-steps__row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hp-steps__row::before {
        display: none;
    }

    .hp-features {
        padding: 72px 0;
    }

    .hp-steps {
        padding: 72px 0;
    }

    .hp-cta__box {
        flex-direction: column;
        padding: 48px 32px;
        text-align: center;
        gap: 28px;
        border-radius: 20px;
    }

    .btn-hp-cta {
        width: 100%;
        justify-content: center;
    }

    .hp-section-header {
        margin-bottom: 48px;
    }

    .hp-audience,
    .hp-categories,
    .hp-testimonials,
    .hp-faq {
        padding: 64px 0;
    }

    .hp-trust {
        padding: 16px 0 32px;
    }

    .hp-trust__row {
        gap: 12px 16px;
    }

    .hp-categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hp-cat-card {
        padding: 24px 16px;
    }

    .hp-aud-card {
        padding: 28px 24px 24px;
    }
}


/* =============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================= */

@media (max-width: 480px) {
    .hp-hero__title {
        font-size: 1.75rem;
    }

    .hp-hero__actions {
        flex-direction: column;
    }

    .btn-hp-primary,
    .btn-hp-ghost {
        width: 100%;
        justify-content: center;
    }

    .hp-stats__bar {
        grid-template-columns: 1fr 1fr;
    }

    .hp-stats__item {
        padding: 24px 12px;
    }

    .hp-stats__value {
        font-size: 1.6rem;
    }

    .hp-steps__row {
        grid-template-columns: 1fr;
    }

    .hp-step {
        max-width: 320px;
        margin-inline: auto;
    }

    .hp-features__grid {
        max-width: 100%;
    }

    .hp-cta__box {
        padding: 40px 24px;
    }

    .hp-categories__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-testi-card {
        padding: 32px 24px 24px;
    }

}

/* =============================================================
   SPOTLIGHT SECTIONS — Community & Services
   Follows site design tokens (theme.css variables).
   Community accent: brand teal  |  Services accent: brand orange
   ============================================================= */

.hp-spotlight {
    padding: 96px 0;
    position: relative;
}

/* Alternating backgrounds matching the rest of the page rhythm */
.hp-spotlight--community {
    background: var(--bg-card, #ffffff);
    border-top: 1px solid var(--border-light, #eef4f4);
    border-bottom: 1px solid var(--border-light, #eef4f4);
}

.hp-spotlight--services {
    background: var(--bg-body, #f8fafb);
    border-bottom: 1px solid var(--border-light, #eef4f4);
}

/* ── Two-column layout ── */
.hp-spotlight__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Copy side ── */
.hp-spotlight__copy .hp-section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.hp-spotlight__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text-primary, #1a2e35);
    line-height: 1.25;
    margin: 0 0 16px;
}

.hp-spotlight__sub {
    font-size: 1rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 440px;
}

/* ── CTA Buttons ── */
.hp-spotlight__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    color: #fff !important;
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.15s;
}

.hp-spotlight--community .hp-spotlight__btn {
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
    box-shadow: 0 4px 14px rgba(32, 154, 162, 0.25);
}

.hp-spotlight--community .hp-spotlight__btn:hover {
    box-shadow: 0 6px 20px rgba(32, 154, 162, 0.45);
    transform: translateY(-1px);
}

/* Services uses brand orange — site's secondary accent color */
.hp-spotlight--services .hp-spotlight__btn {
    background: linear-gradient(135deg, #e78a56 0%, #c9673a 100%);
    box-shadow: 0 4px 14px rgba(231, 138, 86, 0.25);
}

.hp-spotlight--services .hp-spotlight__btn:hover {
    box-shadow: 0 6px 20px rgba(231, 138, 86, 0.45);
    transform: translateY(-1px);
}

/* ── Feature cards stack ── */
.hp-spotlight__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hp-scard {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-body, #f8fafb);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid var(--border-color, #dce8e9);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

/* In the services section (bg-body), cards flip to bg-card */
.hp-spotlight--services .hp-scard {
    background: var(--bg-card, #ffffff);
}

.hp-spotlight--community .hp-scard:hover {
    border-color: rgba(32, 154, 162, 0.35);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    transform: translateY(-2px);
}

.hp-spotlight--services .hp-scard:hover {
    border-color: rgba(231, 138, 86, 0.35);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    transform: translateY(-2px);
}

/* ── Icon badges ── */
.hp-scard__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.hp-scard__icon--teal {
    background: rgba(32, 154, 162, 0.12);
    color: #209aa2;
}

.hp-scard__icon--orange {
    background: rgba(231, 138, 86, 0.12);
    color: #e78a56;
}

/* ── Card text ── */
.hp-scard__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
    margin: 0 0 5px;
}

.hp-scard__desc {
    font-size: 0.85rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.6;
    margin: 0;
}

/* ── Dark mode overrides ── */
[data-theme="dark"] .hp-scard__icon--teal {
    background: rgba(134, 183, 186, 0.15);
    color: #86b7ba;
}

[data-theme="dark"] .hp-scard__icon--orange {
    background: rgba(231, 138, 86, 0.18);
    color: #e78a56;
}

[data-theme="dark"] .hp-spotlight--community .hp-spotlight__btn {
    background: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
}

[data-theme="dark"] .hp-spotlight--services .hp-spotlight__btn {
    background: linear-gradient(135deg, #e78a56 0%, #c9673a 100%);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hp-spotlight__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* On mobile, services copy (title + button) floats above its cards */
    .hp-spotlight--services .hp-spotlight__copy {
        order: -1;
    }

    .hp-spotlight__copy {
        text-align: center;
    }

    .hp-spotlight__sub {
        margin-inline: auto;
    }
}


/* =============================================================
   AUDIENCE SPLIT — full-bleed teal + dark panels
   ============================================================= */

.hp-audience {
    background: var(--bg-body, #f8fafb);
    padding-top: 96px;
}

.hp-audience .hp-section-header {
    margin-bottom: 56px;
}

.hp-audience__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hp-aud-panel {
    padding: 72px 64px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-aud-panel--seeker { background: var(--brand-teal, #209aa2); }
.hp-aud-panel--company {
    background: var(--brand-teal, #209aa2);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
}

/* Badge pill */
.hp-aud-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 5px 14px 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    width: fit-content;
    letter-spacing: 0.05em;
}

.hp-aud-panel__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* Heading */
.hp-aud-panel__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.025em;
}

/* Desc */
.hp-aud-panel__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    max-width: 440px;
    margin: 0;
}

/* Feature list */
.hp-aud-panel__feats {
    padding: 16px 0;
    border-block: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-aud-panel__feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.hp-aud-panel__dot-sm {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

/* CTA buttons */
.btn-hp-aud {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    width: fit-content;
    margin-top: 8px;
    transition: all 0.22s ease;
}

.btn-hp-aud--white {
    background: #ffffff;
    color: var(--hp-dark, #0e1b27);
}

.btn-hp-aud--white:hover {
    background: #f0f9f9;
    color: var(--brand-teal-dark, #205b5f);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hp-aud--teal {
    background: var(--brand-teal, #209aa2);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-hp-aud--teal:hover {
    background: var(--brand-teal-dark, #205b5f);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .hp-audience__split {
        grid-template-columns: 1fr;
    }

    .hp-aud-panel {
        padding: 52px 40px 60px;
    }
}

@media (max-width: 576px) {
    .hp-aud-panel {
        padding: 40px 24px 48px;
    }
}


/* =============================================================
   WHY US — dark navy stats columns
   ============================================================= */

.hp-why {
    background: var(--brand-teal, #209aa2);
    padding: 100px 0;
}

.hp-why__head {
    text-align: center;
    margin-bottom: 72px;
}

.hp-why__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hp-why__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.hp-why__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.hp-why__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hp-why__col {
    padding: 44px 52px;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-why__col:first-child {
    border-inline-start: none;
}

/* Large stat number */
.hp-why__num {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* Text-based display for 3rd column */
.hp-why__num-text {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.hp-why__col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.hp-why__col-desc {
    font-size: 0.9rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.48);
    flex: 1;
    margin: 0;
}

.hp-why__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    width: fit-content;
    margin-top: 4px;
}

.hp-why__link:hover {
    color: #ffffff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1100px) {
    .hp-why__col {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .hp-why__cols {
        grid-template-columns: 1fr;
    }

    .hp-why__col {
        border-inline-start: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 32px 0;
    }

    .hp-why__col:first-child {
        border-top: none;
    }

    .hp-why {
        padding: 72px 0;
    }
}


/* =============================================================
   COMMUNITY — side copy + 2×3 card grid
   ============================================================= */

.hp-community {
    background: var(--bg-body, #f8fafb);
    padding: 100px 0;
}

.hp-community__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.hp-community__lead {
    position: sticky;
    top: 110px;
}

.hp-community__lead .hp-section-label {
    margin-bottom: 18px;
}

.hp-community__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--text-primary, #1a2e35);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.hp-community__sub {
    font-size: 1rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hp-community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .hp-community__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hp-comm-card {
    background: var(--bg-card, #ffffff);
    border: 1.5px solid var(--border-color, #dce8e9);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.hp-comm-card:hover {
    border-color: var(--brand-teal, #209aa2);
    box-shadow: 0 8px 28px rgba(32, 154, 162, 0.1);
    transform: translateY(-2px);
}

.hp-comm-card__num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-teal, #209aa2);
}

.hp-comm-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1a2e35);
    margin: 0;
}

.hp-comm-card__desc {
    font-size: 0.83rem;
    color: var(--text-secondary, #5a7a7e);
    line-height: 1.65;
    margin: 0;
}

/* Dark mode */
[data-theme="dark"] .hp-comm-card {
    background: var(--bg-card, #152e31);
    border-color: var(--border-color, #1e4446);
}

/* Responsive */
@media (max-width: 1100px) {
    .hp-community__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hp-community__lead {
        position: static;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hp-community {
        padding: 72px 0;
    }
}


/* =============================================================
   SERVICES — solid teal full-bleed centered CTA
   ============================================================= */

.hp-services {
    background: var(--brand-teal, #209aa2);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle radial highlights */
.hp-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 85% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 15% 75%, rgba(0, 0, 0, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative ring */
.hp-services::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(255, 255, 255, 0.05);
    top: -160px;
    left: -100px;
    pointer-events: none;
}

.hp-services__content {
    position: relative;
    z-index: 1;
}

.hp-services__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hp-services__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.hp-services__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hp-services__points {
    list-style: none;
    padding: 0;
    margin: 0 auto 44px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.hp-services__points li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.hp-services__points li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.btn-hp-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--brand-teal-dark, #205b5f);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-hp-services:hover {
    background: #f0f9f9;
    color: var(--brand-teal-dark, #205b5f);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

/* Dark mode — all teal sections use the same dark teal */
[data-theme="dark"] .hp-why,
[data-theme="dark"] .hp-services,
[data-theme="dark"] .hp-cta,
[data-theme="dark"] .hp-aud-panel--seeker,
[data-theme="dark"] .hp-aud-panel--company {
    background: #0f4a50;
}

[data-theme="dark"] .hp-community {
    background: var(--bg-body, #0f2224);
}

/* Responsive */
@media (max-width: 768px) {
    .hp-services {
        padding: 72px 0;
    }
}


/* =============================================================
   STEPS — responsive overrides for new circle structure
   ============================================================= */

@media (max-width: 768px) {
    .hp-step__circle {
        width: 68px;
        height: 68px;
    }

    .hp-step__n {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hp-steps__row {
        grid-template-columns: 1fr 1fr;
    }

    .hp-steps__row::before {
        display: none;
    }
}


/* =============================================================
   CTA — dark mode tweak
   ============================================================= */

@media (max-width: 768px) {
    .hp-cta {
        padding: 80px 0;
    }
}


/* =============================================================
   SCROLL REVEAL ANIMATIONS
   Elements with [data-reveal] start hidden and fade-up into view.
   JS adds .visible via IntersectionObserver (see Index.cshtml).
   ============================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

[data-reveal].visible {
    opacity: 1;
    transform: none;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Stats responsive tweaks */
@media (max-width: 1100px) {
    .hp-stats__bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hp-stats__bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hp-stats__item {
        padding: 28px 16px;
    }
    .hp-stats__value {
        font-size: 1.9rem;
    }
}

