/* Professional Services Page CSS */
.ps-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('../../images/professionalServices_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay to ensure text readability */
    z-index: 1;
}

.ps-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.ps-hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 65px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.ps-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .ps-hero {
        height: auto;
        padding: 80px 0;
    }

    .ps-hero__title {
        font-size: 40px;
        line-height: 48px;
    }

    .ps-hero__subtitle {
        font-size: 16px;
        line-height: 26px;
    }
}

/* ══════════════════════════════════════
   CONSULTING SECTION
══════════════════════════════════════ */
.ps-consulting {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.ps-consulting__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ps-consulting__left {
    display: flex;
    flex-direction: column;
}

.ps-consulting__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.ps-consulting__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 90%;
}

.ps-consulting__image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.ps-consulting__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Cards Grid */
.ps-consulting__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ps-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.ps-card:hover {
    transform: translateY(-4px);
}

.ps-card__num {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #b91c1c;
    /* Dark red matching the design */
    margin-bottom: 12px;
    line-height: 1;
}

.ps-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ps-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Tags Layout */
.ps-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.ps-card__tag {
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-consulting__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ps-consulting {
        padding: 60px 20px;
    }

    .ps-consulting__grid {
        grid-template-columns: 1fr;
    }

    .ps-consulting__right {
        grid-template-columns: 1fr;
    }

    .ps-consulting__title {
        font-size: 32px;
    }
}

/* ══════════════════════════════════════
   CUSTOM SARVTR SOLUTIONS SECTION
══════════════════════════════════════ */
.ps-sarvtr {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-sarvtr__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ps-sarvtr__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.ps-sarvtr__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    margin-top: 40px;
}

.ps-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps-feature__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-feature__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ps-feature__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.ps-sarvtr__right {
    width: 100%;
}

.ps-sarvtr__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-sarvtr__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ps-sarvtr {
        padding: 60px 20px;
    }

    .ps-sarvtr__grid {
        grid-template-columns: 1fr;
    }

    .ps-sarvtr__title {
        font-size: 32px;
    }

    .ps-sarvtr__features {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   INDUSTRIES STRIP (MARQUEE)
══════════════════════════════════════ */
.ps-industries {
    padding: 48px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.ps-industries__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.ps-industries__label .label-dash {
    width: 60px;
    height: 1px;
    background-color: #9ca3af;
    display: inline-block;
    flex-shrink: 0;
}

.ps-industries__label .label-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #4b5563;
    text-transform: uppercase;
    white-space: nowrap;
}

.ps-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

.ps-marquee__track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: psMarqueeSlide 30s linear infinite;
}

.ps-marquee:hover .ps-marquee__track {
    animation-play-state: paused;
}

.ps-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    cursor: default;
    user-select: none;
}

.ps-pill:hover {
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    color: #111827;
}

@keyframes psMarqueeSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333333%);
    }
}

@media (max-width: 768px) {
    .ps-industries {
        padding: 36px 0;
    }

    .ps-industries__label {
        gap: 12px;
        margin-bottom: 24px;
    }

    .ps-industries__label .label-dash {
        width: 36px;
    }

    .ps-industries__label .label-text {
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .ps-pill {
        padding: 10px 22px;
        font-size: 14px;
    }

    .ps-marquee__track {
        gap: 12px;
        animation-duration: 22s;
    }
}

/* ══════════════════════════════════════
   INDUSTRIES SECTION (GRID)
══════════════════════════════════════ */
.ps-industries-grid {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-ind-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.ps-ind-card {
    background: #ffffff;
    width: calc(20% - 16px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.ps-ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

.ps-ind-card__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: invert(18%) sepia(88%) saturate(5412%) hue-rotate(352deg) brightness(92%) contrast(92%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ps-ind-card:hover .ps-ind-card__icon {
    transform: scale(1.08);
    filter: invert(18%) sepia(88%) saturate(5412%) hue-rotate(352deg) brightness(92%) contrast(92%) drop-shadow(0 4px 8px rgba(185, 28, 28, 0.3));
}

.ps-ind-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-ind-card {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .ps-industries-grid {
        padding: 60px 20px;
    }

    .ps-ind-card {
        width: calc(50% - 10px);
    }
}

/* ══════════════════════════════════════
   TRAINING & CAPABILITY DEVELOPMENT
══════════════════════════════════════ */
.ps-training {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-training__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ps-training__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ps-training__right {
    display: flex;
    flex-direction: column;
}

.ps-training__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.ps-training__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-training__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ps-training {
        padding: 60px 20px;
    }

    .ps-training__grid {
        grid-template-columns: 1fr;
    }

    .ps-training__left {
        order: 2;
    }

    .ps-training__right {
        order: 1;
    }

    .ps-training__title {
        font-size: 32px;
    }

    .ps-training__features {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   SUBSCRIPTION SERVICES
══════════════════════════════════════ */
.ps-subscription {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-subscription__card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ps-subscription__left {
    display: flex;
    flex-direction: column;
}

.ps-subscription__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 40px;
}

.ps-subscription__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-sub-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ps-sub-item:hover {
    border-color: #fca5a5;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.08);
}

.ps-sub-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff1f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-sub-item__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ps-sub-item__icon img:not([src*="Medical"]) {
    width: 20px;
    height: 20px;
}

.ps-sub-item__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.ps-subscription__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-subscription__card {
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .ps-subscription {
        padding: 60px 20px;
    }

    .ps-subscription__card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .ps-subscription__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .ps-sub-item {
        padding: 16px;
    }
}

/* ══════════════════════════════════════
   CUSTOM SYSTEM DEVELOPMENT
══════════════════════════════════════ */
.ps-csd {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-csd__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label--center {
    justify-content: center;
}

.ps-csd__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-top: 16px;
    margin-bottom: 0;
}

.ps-csd__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.ps-csd-card {
    position: relative;
    width: calc(25% - 18px);
    /* 4 columns minus gap */
    aspect-ratio: 4 / 3;
    overflow: hidden;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
    /* Chamfered top-left corner */
    transition: transform 0.3s ease;
    background: #000;
}

.ps-csd-card:hover {
    transform: translateY(-5px);
}

.ps-csd-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ps-csd-card:hover .ps-csd-card__image {
    transform: scale(1.05);
}

.ps-csd-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.ps-csd-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-csd-card {
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    .ps-csd {
        padding: 60px 20px;
    }

    .ps-csd__header {
        margin-bottom: 40px;
    }

    .ps-csd__title {
        font-size: 32px;
    }

    .ps-csd-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .ps-csd-card {
        width: 100%;
    }
}

/* ══════════════════════════════════════
   ENGAGEMENT MODEL
══════════════════════════════════════ */
.ps-engagement {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ps-engagement__header {
    margin-bottom: 60px;
}

.ps-engagement__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-top: 16px;
    margin-bottom: 0;
}

.ps-eng-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ps-eng-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 160px;
}

.ps-eng-step__circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.ps-eng-step:hover .ps-eng-step__circle {
    transform: scale(1.08);
}

.ps-eng-step__circle img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ps-eng-step__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.4;
}

.ps-eng-arrow {
    display: flex;
    align-items: center;
    height: 100px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .ps-eng-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .ps-eng-step {
        max-width: calc(25% - 40px);
    }

    .ps-eng-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .ps-engagement {
        padding: 60px 20px;
    }

    .ps-engagement__title {
        font-size: 32px;
    }

    .ps-eng-step {
        max-width: calc(33.333% - 30px);
    }
}

@media (max-width: 480px) {
    .ps-eng-step {
        max-width: calc(50% - 20px);
    }
}

/* ══════════════════════════════════════
   BANNER SECTION
══════════════════════════════════════ */
.ps-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.ps-banner__content {
    max-width: 650px;
}

.ps-banner__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ps-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f3f4f6;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ps-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.ps-btn--red {
    background: #b91c1c;
    color: #ffffff;
    border: 1px solid #b91c1c;
}

.ps-btn--red:hover {
    background: #991b1b;
    border-color: #991b1b;
}

.ps-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.ps-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .ps-banner {
        padding: 80px 20px;
    }

    .ps-banner__title {
        font-size: 36px;
    }

    .ps-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ps-btn {
        width: 100%;
    }
}

/* ══════════════════════════════════════
   DARK MODE STYLES (body.dark)
══════════════════════════════════════ */
body.dark .ps-consulting__title,
body.dark .ps-sarvtr__title,
body.dark .ps-training__title,
body.dark .ps-subscription__title,
body.dark .ps-csd__title,
body.dark .ps-ind-card__name,
body.dark .ps-engagement__title,
body.dark .ps-banner__title {
    color: #ffffff;
}

body.dark .section-label .label-text,
body.dark .ps-industries__label .label-text {
    color: #9ca3af;
}

body.dark .section-label .label-dash,
body.dark .ps-industries__label .label-dash {
    background-color: #4b5563;
}

/* Consulting Section */
body.dark .ps-consulting__desc {
    color: #9ca3af;
}

body.dark .ps-card {
    background: #111827;
    border: 1px solid #1f2937;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark .ps-card:hover {
    border-color: #374151;
}

body.dark .ps-card__num {
    color: #ef4444;
}

body.dark .ps-card__title {
    color: #f9fafb;
}

body.dark .ps-card__desc {
    color: #9ca3af;
}

body.dark .ps-card__tag {
    background: #1f2937;
    color: #e5e7eb;
}

/* Custom SARVTR Solutions */
body.dark .ps-feature__text {
    color: #e5e7eb;
}

/* Industries Marquee Strip */
body.dark .ps-industries {
    background-color: #0f172a;
}

body.dark .ps-pill {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.dark .ps-pill:hover {
    border-color: #64748b;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Subscription Services */
body.dark .ps-subscription__card {
    background: #111827;
    border: 1px solid #1f2937;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark .ps-sub-item {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark .ps-sub-item:hover {
    border-color: #ef4444;
}

body.dark .ps-sub-item__text {
    color: #f8fafc;
}

/* Custom System Development */
body.dark .ps-csd-card {
    border: 1px solid #1f2937;
}

/* Industries Grid */
body.dark .ps-ind-card {
    background: #111827;
    border: 1px solid #1f2937;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.dark .ps-ind-card:hover {
    border-color: #374151;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

body.dark .ps-ind-card__name {
    color: #e5e7eb;
}

body.dark .ps-ind-card__icon {
    filter: invert(32%) sepia(93%) saturate(4522%) hue-rotate(345deg) brightness(97%) contrast(93%);
}

body.dark .ps-ind-card:hover .ps-ind-card__icon {
    filter: invert(32%) sepia(93%) saturate(4522%) hue-rotate(345deg) brightness(97%) contrast(93%) drop-shadow(0 4px 12px rgba(239, 68, 68, 0.6));
}

/* Engagement Model */
body.dark .ps-eng-step__circle {
    background: #111827;
    border: 1px solid #1f2937;
}

body.dark .ps-eng-step__text {
    color: #e5e7eb;
}

body.dark .ps-eng-arrow svg path {
    stroke: #ef4444;
}

/* CTA Banner */
body.dark .ps-banner__text {
    color: #d1d5db;
}

body.dark .ps-btn--outline {
    border-color: #ffffff;
    color: #ffffff;
}

body.dark .ps-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
}