/* Talent Page Styles */

.talent-hero {
    position: relative;
    color: white;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.talent-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.talent-hero .hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    color: white !important;
}

.talent-cta {
    background: linear-gradient(45deg, var(--accent-color), #333);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.talent-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.talent-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.cta-button {
    background: white;
    color: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .talent-hero h1 {
        font-size: 2.5rem;
    }

    .talent-hero p {
        font-size: 1.2rem;
    }

    .talent-cta h2 {
        font-size: 2rem;
    }
}

.talent-faq-section {
    background: var(--primary-bg);
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
}
.talent-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}
.talent-faq-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.talent-faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.talent-faq-item.open {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
}
.talent-faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
.talent-faq-question[aria-expanded="true"] {
    background: #e8eaf6;
}
.talent-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #444;
    font-size: 1.05rem;
    padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}
.talent-faq-item.open .talent-faq-answer {
    max-height: 1000px;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.talent-hero-bento {
    background: var(--primary-bg);
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.talent-hero-bento-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    background: none;
}
.talent-hero-bento-video {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.talent-hero-bento-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}
.talent-hero-bento-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 48px 40px 40px 40px;
    min-width: 320px;
    max-width: 480px;
}
.talent-hero-badge {
    display: inline-block;
    background: #0e6efd;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    padding: 0.3em 1em;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.talent-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.2em 0;
    line-height: 1.1;
}
.core-highlight {
    color: #0e6efd;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.talent-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #155e75;
    font-weight: 600;
    margin-bottom: 0.2em;
}
.talent-hero-desc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 1.2em;
    font-weight: 500;
}
.talent-hero-cta-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    padding: 1em 2.5em;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 0.5em;
}
.talent-hero-cta-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
    .talent-hero-bento-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .talent-hero-bento-content {
        max-width: 98vw;
        min-width: 0;
        padding: 32px 16px 28px 16px;
    }
    .talent-hero-bento-video {
        min-height: 220px;
    }
    .talent-hero-title {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    .talent-hero-bento {
        padding: 36px 0 18px 0;
    }
    .talent-hero-bento-content {
        padding: 18px 6vw 18px 6vw;
    }
    .talent-hero-title {
        font-size: 1.3rem;
    }
}

.talent-hero-bento-modern {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    padding: 64px 0 48px 0;
}
.talent-hero-bento-modern-bg, .permly-process-step {
    box-sizing: border-box;
}
.talent-hero-bento-modern-bg {
    background: linear-gradient(120deg, #eaf4fb 0%, #dbeafe 100%);
    border-radius: 5px;
    box-shadow: 0 8px 48px rgba(14,110,253,0.07);
    padding: 48px 32px 40px 32px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.talent-hero-bento-modern-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
.talent-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.2em 0;
    line-height: 1.1;
    text-align: center;
}
.core-highlight {
    color: #2563eb;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
}
.talent-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.2em;
    text-align: center;
}
.talent-hero-desc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 1.2em;
    font-weight: 500;
    text-align: center;
}
.talent-hero-bento-modern-video {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 1.5em auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.talent-hero-bento-modern-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.talent-hero-cta-btn-modern {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    padding: 1rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.talent-hero-cta-btn-modern:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
    .talent-hero-bento-modern,
    .talent-hero-bento-modern-bg,
    .permly-process-step {
        max-width: 900px;
        width: 100%;
        padding-left: 4vw;
        padding-right: 4vw;
        padding-top: 48px;
        padding-bottom: 40px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .talent-hero-title {
        font-size: 2rem;
    }
    .talent-hero-bento-modern-video {
        max-width: 98vw;
    }
    .permly-step-content ul {
        font-size: 0.97rem;
    }
    .permly-step-content h3 {
        font-size: 1.08rem;
    }
    .permly-step-content {
        gap: 0.8em;
    }
    .permly-process-step {
        padding-top: 36px;
        padding-bottom: 28px;
    }
    .permly-step-icon {
        font-size: 2.7rem;
        min-width: 70px;
    }
}
@media (max-width: 600px) {
    .talent-hero-bento-modern,
    .talent-hero-bento-modern-bg,
    .permly-process-step {
        max-width: 900px;
        width: 100%;
        padding-left: 2vw;
        padding-right: 2vw;
        padding-top: 48px;
        padding-bottom: 40px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .talent-hero-title {
        font-size: 1.3rem;
    }
    .permly-step-content ul {
        font-size: 0.89rem;
    }
    .permly-step-content h3 {
        font-size: 0.98rem;
    }
    .permly-step-content {
        gap: 0.6em;
    }
    .permly-process-step {
        padding-top: 22px;
        padding-bottom: 16px;
    }
    .permly-step-icon {
        font-size: 1.5rem;
        min-width: 38px;
    }
}

.permly-process-section {
    background: var(--primary-bg);
    padding: 72px 0 56px 0;
    display: flex;
    justify-content: center;
}
.permly-process-container {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2vw;
}
.permly-process-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}
.permly-process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.permly-process-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    padding: 48px 32px 40px 32px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    transition: box-shadow 0.2s;
    gap: 40px;
    opacity: 1;
    transform: none;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.permly-process-step:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.permly-step-icon {
    font-size: 4.2rem;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.permly-step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1em;
    width: 100%;
    margin-left: 0;
}
.permly-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.7em;
    text-align: left;
}
.permly-step-content ul {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
    margin: 0;
    padding: 0;
    list-style: none;
}
.permly-step-content li {
    margin-bottom: 0.7em;
    padding-left: 0;
    text-align: left;
    position: static;
}
.permly-step-content li::before {
    display: none;
}
.permly-step-sublist {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    padding-left: 0.7em;
}
.permly-step-sublist li::before {
    display: none;
}
@media (max-width: 900px) {
    .permly-step-content ul {
        font-size: 0.97rem;
    }
    .permly-step-content h3 {
        font-size: 1.08rem;
    }
    .permly-step-content {
        gap: 0.8em;
    }
    .permly-process-step {
        padding-top: 36px;
        padding-bottom: 28px;
    }
    .permly-step-icon {
        font-size: 2.7rem;
        min-width: 70px;
    }

    .permly-calc-process-section {
        padding: 32px 0 32px 0;
    }
    .permly-calc-process-container {
        max-width: 98vw;
        gap: 1.2rem;
    }
    .cost-calculator-collapsed,
    .permly-process-collapsed {
        border-radius: 5px;
    }


}
@media (max-width: 600px) {
    .permly-step-content ul {
        font-size: 0.89rem;
    }
    .permly-step-content h3 {
        font-size: 0.98rem;
    }
    .permly-step-content {
        gap: 0.6em;
    }
    .permly-process-step {
        padding-top: 22px;
        padding-bottom: 16px;
    }
    .permly-step-icon {
        font-size: 1.5rem;
        min-width: 38px;
    }

    .permly-calc-process-section {
        padding: 16px 0 16px 0;
    }
    .permly-calc-process-container {
        max-width: 100vw;
        gap: 0.7rem;
    }
    .cost-calculator-collapsed,
    .permly-process-collapsed {
        border-radius: 5px;
    }

}
.permly-step-appear {
    opacity: 1 !important;
    transform: none !important;
}
.permly-process-step:not(.permly-step-appear) {
    opacity: 0;
    transform: translateY(40px);
}

.permly-bento-bullet-list {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    opacity: 1 !important;
    margin: 0;
    padding: 0 0 0 0.5em;
    list-style: none;
}
.permly-bento-bullet-list li {
    position: relative;
    padding-left: 1.3em;
    margin-bottom: 0.6em;
}
.permly-bento-bullet-list li::before {
    content: '';
    display: inline-block;
    width: 0.30em;
    height: 0.30em;
    background: #1a1a1a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em;
}

.permly-bento-bullet-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.3em;
    margin-top: 0.5em;
    letter-spacing: -0.01em;
}

.notice-board-section {
    display: flex;
    justify-content: center;
    margin: 0 auto 3.5rem auto;
    width: 100%;
    background: var(--complimentary-bg, #eeeeea);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--text-gray);
    border-bottom: 1px solid var(--text-gray);
}
.notice-board-borders {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border: none;
}
.notice-board {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin: 0 auto;
    transition: box-shadow 0.2s, transform 0.2s;
    opacity: 1;
    transform: none;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.notice-board-logo {
    max-width: 180px;
    width: 100%;
    margin: 0.5em auto 0.7em auto;
    display: block;
}
.notice-board:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.01);
}
.notice-board-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2563eb;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 0.2em;
    opacity: 0.7;
}
.notice-board-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.2em 0;
    text-align: center;
}
.notice-board-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark, #1a1a1a);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0.5em;
    opacity: 0.85;
}
.notice-board-btn,
.talent-hero-cta-btn-modern {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 5px;
    padding: 0.9em 2.2em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 0.3em;
}
.notice-board-btn:hover,
.talent-hero-cta-btn-modern:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 700px) {
    .notice-board-borders {
        max-width: 98vw;
    }
    .notice-board {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .notice-board-title {
        font-size: 1.05rem;
    }
    .notice-board-desc {
        font-size: 0.97rem;
    }
}
@media (max-width: 900px) {
    .notice-board-section {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}
@media (max-width: 600px) {
    .notice-board-section {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}
.notice-board-appear {
    opacity: 1 !important;
    transform: none !important;
}
.notice-board:not(.notice-board-appear) {
    opacity: 0;
    transform: translateY(40px);
}

/* Collapsible Permly Process Section (matching employer style) */
.permly-calc-process-section {
    background: none;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    box-shadow: none;
}

.permly-calc-process-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    padding: 0;
}

.permly-process-collapsed {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.permly-process-collapsed[aria-expanded="true"] .permly-process-collapsed-icon {
    transform: rotate(180deg);
}
.permly-process-collapsed-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.permly-process-collapsed-icon svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}

.permly-process-collapsed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.permly-process-expandable {
    width: 100%;
    background: none;
    border-radius: 5px;
    margin-bottom: 2.5rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}


.permly-verified-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}
.permly-verified-link:hover {
  color: #0077b5; /* LinkedIn blue or your accent color */
  text-decoration: underline;
}