/* =============================================
   PLACEMENT SUPPORT PAGE STYLES
   ============================================= */

/* ── HERO ── */
.psp-hero {
    background: linear-gradient(135deg, #0a1020 0%, #0f1922 40%, #1d2330 70%, #243047 100%);
    padding: 80px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psp-hero-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.psp-decor-1 { width: 500px; height: 500px; background: #d4af37; top: -200px; left: -150px; }
.psp-decor-2 { width: 350px; height: 350px; background: #4285F4; bottom: -140px; right: -100px; }
.psp-decor-3 { width: 200px; height: 200px; background: #34A853; top: 40px; right: 18%; }
.psp-decor-4 { width: 120px; height: 120px; background: #EA4335; bottom: 60px; left: 22%; }

.psp-hero-float {
    position: absolute;
    opacity: 0.07;
    font-size: 60px;
    color: #fff;
    pointer-events: none;
    animation: psp-float 7s ease-in-out infinite;
}

.psp-hero-float-1 { top: 12%; left: 6%;  animation-delay: 0s; }
.psp-hero-float-2 { top: 20%; right: 8%; animation-delay: 2.5s; }
.psp-hero-float-3 { bottom: 18%; left: 14%; animation-delay: 4s; }
.psp-hero-float-4 { bottom: 12%; right: 10%; animation-delay: 1.5s; }

@keyframes psp-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-22px); }
}

.psp-hero-content {
    position: relative;
    z-index: 2;
}

.psp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.psp-hero-title {
    font-family: var(--font-heading, 'DM Sans', sans-serif);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 16px;
    line-height: 1.15;
    max-width: 760px;
}

@media (min-width: 768px) { .psp-hero-title { font-size: 58px; } }

.psp-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.70);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.psp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.psp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #d4af37;
    color: #1d2330;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.42);
    transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.psp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.58);
    background: #e8c454;
    color: #1d2330;
}

.psp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: all 0.22s;
}

.psp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

/* ── STATS STRIP ── */
.psp-stats-strip {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.psp-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 22px 0;
}

.psp-stat {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 36px;
}

.psp-stat-icon  { font-size: 24px; color: #d4af37; }
.psp-stat-value { font-size: 20px; font-weight: 800; color: #1d2330; line-height: 1.1; }
.psp-stat-label { font-size: 12px; color: #6b7280; margin-top: 2px; }

.psp-stat-divider {
    width: 1px;
    height: 44px;
    background: #e9ecef;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .psp-stat-divider { display: none; }
    .psp-stat { padding: 10px 20px; flex-basis: 50%; }
}

/* ── SHARED SECTION ELEMENTS ── */
.psp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #B8860B;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.psp-section-title {
    font-family: var(--font-heading, 'DM Sans', sans-serif);
    font-size: 34px;
    font-weight: 800;
    color: #1d2330;
    margin: 0 0 16px;
    line-height: 1.2;
}

@media (min-width: 768px) { .psp-section-title { font-size: 40px; } }

.psp-section-sub {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 580px;
}

/* ── OVERVIEW ── */
.psp-overview {
    background: #fff;
    padding: 76px 0 84px;
}

.psp-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .psp-overview-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.psp-overview-text p {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 16px;
}

.psp-overview-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.psp-overview-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #374151;
}

.psp-overview-points li i {
    color: #d4af37;
    margin-top: 3px;
    flex-shrink: 0;
}

.psp-overview-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
    position: relative;
}

.psp-overview-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.psp-overview-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(29, 35, 48, 0.85), transparent);
    padding: 28px 24px 24px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.psp-overview-image-tag {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.3px;
}

/* ── FEATURES ── */
.psp-features {
    background: #f4f5f7;
    padding: 76px 0 84px;
}

.psp-features-heading {
    text-align: center;
    margin-bottom: 52px;
}

.psp-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .psp-features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 479px) {
    .psp-features-grid { grid-template-columns: 1fr; }
}

.psp-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.psp-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
}

.psp-feature-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.psp-feature-card:hover .psp-feature-icon-wrap {
    background: rgba(212, 175, 55, 0.22);
}

.psp-feature-icon-wrap i {
    font-size: 24px;
    color: #B8860B;
}

.psp-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #1d2330;
    margin-bottom: 10px;
}

.psp-feature-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.72;
}

/* ── RECRUITERS TICKER ── */
.psp-recruiters {
    background: linear-gradient(135deg, #0f1922 0%, #1d2330 60%, #243047 100%);
    padding: 76px 0 84px;
    overflow: hidden;
}

.psp-recruiters-heading {
    text-align: center;
    margin-bottom: 52px;
}

.psp-recruiters-heading .psp-section-title { color: #fff; }
.psp-recruiters-heading .psp-section-sub { color: rgba(255, 255, 255, 0.62); margin: 0 auto; }

.psp-ticker-container {
    position: relative;
    overflow: hidden;
}

.psp-ticker-container::before,
.psp-ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.psp-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, #1d2330 0%, transparent 100%);
}

.psp-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, #1d2330 0%, transparent 100%);
}

.psp-ticker-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: psp-marquee 55s linear infinite;
    padding: 6px 0;
}

.psp-ticker-track:hover {
    animation-play-state: paused;
}

.psp-ticker-track-rev {
    animation-duration: 60s;
    animation-direction: reverse;
    margin-top: 14px;
}

@keyframes psp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.psp-logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 10px 20px;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
    user-select: none;
}

.psp-logo-chip:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(212, 175, 55, 0.45);
    transform: scale(1.05);
}

.psp-logo-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.psp-logo-name {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.3px;
}

/* Dot color variants */
.dot-blue   { background: #4285F4; }
.dot-green  { background: #34A853; }
.dot-red    { background: #EA4335; }
.dot-amber  { background: #FBBC05; }
.dot-purple { background: #7B1FA2; }
.dot-teal   { background: #0097A7; }
.dot-gold   { background: #d4af37; }
.dot-pink   { background: #E91E63; }
.dot-orange { background: #F57C00; }
.dot-indigo { background: #3949AB; }

/* ── ANIMATED COUNTERS ── */
.psp-counters {
    background: #1d2330;
    padding: 76px 0 84px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.psp-counters-heading {
    text-align: center;
    margin-bottom: 52px;
}

.psp-counters-heading .psp-section-title { color: #fff; }
.psp-counters-heading .psp-section-sub { color: rgba(255, 255, 255, 0.58); margin: 0 auto; }

.psp-counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .psp-counter-grid { grid-template-columns: repeat(4, 1fr); }
}

.psp-counter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 38px 24px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.psp-counter-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.28);
    transform: translateY(-5px);
}

.psp-counter-icon {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 16px;
    display: block;
}

.psp-counter-num {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.psp-counter-label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

/* ── TESTIMONIALS ── */
.psp-testimonials {
    background: #f9fafb;
    padding: 76px 0 84px;
}

.psp-testimonials-heading {
    text-align: center;
    margin-bottom: 52px;
}

.psp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) { .psp-testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .psp-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.psp-quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.psp-quote-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

.psp-quote-mark {
    font-size: 80px;
    line-height: 0.7;
    color: #d4af37;
    opacity: 0.22;
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 24px;
}

.psp-quote-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: #f5c518;
    font-size: 14px;
}

.psp-quote-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.82;
    font-style: italic;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.psp-quote-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.psp-quote-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.psp-quote-name {
    font-size: 14px;
    font-weight: 700;
    color: #1d2330;
}

.psp-quote-role {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
}

/* ── CAREER READINESS TIMELINE ── */
.psp-timeline {
    background: #fff;
    padding: 76px 0 84px;
}

.psp-timeline-heading {
    text-align: center;
    margin-bottom: 60px;
}

.psp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

@media (min-width: 992px) {
    .psp-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .psp-steps::before {
        content: '';
        position: absolute;
        top: 29px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: linear-gradient(to right, #d4af37 0%, rgba(212, 175, 55, 0.25) 100%);
        z-index: 0;
    }
}

.psp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

@media (max-width: 991px) {
    .psp-step {
        flex-direction: row;
        text-align: left;
        padding: 0;
        margin-bottom: 28px;
    }
}

.psp-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1d2330;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #d4af37;
    flex-shrink: 0;
    margin-bottom: 16px;
    transition: background 0.3s, transform 0.3s;
}

.psp-step:hover .psp-step-num {
    background: #d4af37;
    color: #1d2330;
    transform: scale(1.12);
}

@media (max-width: 991px) {
    .psp-step-num { margin-bottom: 0; margin-right: 18px; }
}

.psp-step-body {}

.psp-step-icon {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 991px) {
    .psp-step-icon { display: none; }
}

.psp-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1d2330;
    margin-bottom: 5px;
}

.psp-step-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 110px;
}

@media (max-width: 991px) {
    .psp-step-desc { max-width: none; }
}

/* ── MOTIVATIONAL QUOTE BANNER ── */
.psp-quote-banner {
    background: linear-gradient(135deg, #080e1c 0%, #0f1922 40%, #1d2330 70%, #243047 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psp-quote-banner-decor {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-size: 320px;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.psp-quote-banner-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.psp-quote-banner-icon {
    font-size: 28px;
    color: #d4af37;
    opacity: 0.7;
    margin-bottom: 20px;
}

.psp-quote-banner-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 20px;
}

@media (min-width: 768px) { .psp-quote-banner-text { font-size: 34px; } }

.psp-quote-banner-author {
    font-size: 15px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ── CTA ── */
.psp-cta {
    background: linear-gradient(135deg, #B8860B 0%, #d4af37 50%, #EAA400 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231d2330' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.psp-cta-content {
    position: relative;
    z-index: 1;
}

.psp-cta-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    color: #1d2330;
    opacity: 0.5;
    margin-bottom: 18px;
}

.psp-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #1d2330;
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (min-width: 768px) { .psp-cta-title { font-size: 46px; } }

.psp-cta-sub {
    font-size: 17px;
    color: rgba(29, 35, 48, 0.72);
    margin: 0 auto 36px;
    max-width: 500px;
    line-height: 1.65;
}

.psp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.psp-btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d2330;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(29, 35, 48, 0.32);
    transition: transform 0.22s, box-shadow 0.22s;
}

.psp-btn-cta-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(29, 35, 48, 0.48);
    color: #fff;
}

.psp-btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.28);
    color: #1d2330;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 50px;
    border: 1.5px solid rgba(29, 35, 48, 0.28);
    text-decoration: none;
    transition: all 0.22s;
}

.psp-btn-cta-white:hover {
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(29, 35, 48, 0.48);
    color: #1d2330;
    transform: translateY(-3px);
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 575px) {
    .psp-hero            { padding: 56px 0 48px; }
    .psp-hero-title      { font-size: 30px; }
    .psp-section-title   { font-size: 26px !important; }
    .psp-overview        { padding: 52px 0 60px; }
    .psp-features        { padding: 52px 0 60px; }
    .psp-recruiters      { padding: 52px 0 60px; }
    .psp-counters        { padding: 52px 0 60px; }
    .psp-testimonials    { padding: 52px 0 60px; }
    .psp-timeline        { padding: 52px 0 60px; }
    .psp-quote-banner    { padding: 60px 0; }
    .psp-cta             { padding: 52px 0; }
    .psp-cta-title       { font-size: 28px; }
    .psp-quote-banner-text { font-size: 21px; }
    .psp-counter-num     { font-size: 36px; }
    .psp-hero-float      { display: none; }
    .psp-hero-actions    { flex-direction: column; align-items: center; }
}
