/* 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: 5px;
    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: #d15410;
    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: #fcfadd;
    border-radius: 5px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 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: 700px;
    margin-left: auto;
    margin-right: 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;
    }
}
@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-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, #000000);
    margin-bottom: 0.3em;
    margin-top: 0.5em;
    letter-spacing: -0.01em;
}

.permly-bento-bullet-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark, #000000);
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 0.7em 0;
    text-align: left;
}

.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: 14px;
    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);
}

/* Pricing Section Styles */
.pricing-section {
    background: var(--primary-bg, #f8fafc);
    padding: 64px 0 48px 0;
    text-align: center;
    padding-left: 4vw;
    padding-right: 4vw;
}
.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}
.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2.5rem;
}
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    max-width: 950px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    min-width: 0;
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    transition: box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.025);
}
.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.pricing-card-price {
    font-family: 'Syne', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.1rem;
}
.pricing-card-price-unit {
    font-size: 1.1rem;
    font-weight: 400;
    color: #444;
    margin-left: 0.2em;
}
.pricing-card-features {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2563eb;
    text-align: left;
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 220px;
}
.pricing-card-features li {
    margin-bottom: 0.7em;
    color: #222;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.feature-note {
    color: #888;
    font-size: 0.95em;
    font-weight: 400;
}
.pricing-card-btn {
    background: #a78bfa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 0.9em 2.2em;
    margin-top: auto;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-decoration: none;
}
.pricing-card-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.pricing-card-btn-secondary {
    background: #f3f4f6;
    color: #222;
}
.pricing-card-btn-secondary:hover {
    background: #e5e7eb;
    color: #000;
}
.pricing-card-btn-dark {
    background: #111;
    color: #fff;
}
.pricing-card-btn-dark:hover {
    background: #333;
    color: #fff;
}
.pricing-card-pro {
    border: 2.5px solid #2563eb;
    box-shadow: 0 8px 32px rgba(80, 80, 255, 0.10);
}
.pricing-card-badge {
    position: absolute;
    top: -18px;
    right: 18px;
    background: #2563eb;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.2em 1em;
    letter-spacing: 0.04em;
}
@media (max-width: 900px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .pricing-section {
        padding: 36px 0 18px 0;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .pricing-title {
        font-size: 1.7rem;
    }
    .pricing-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
        max-width: 420px;
    }
    .pricing-card-price {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .pricing-section {
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .pricing-card {
        padding: 1.1rem 0.3rem 1.1rem 0.3rem;
        max-width: 95vw;
        border-radius: 28px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    }
}

/* Packages Comparison Table Styles */
.packages-section {
    background: var(--primary-bg, #f8fafc);
    padding: 64px 0 48px 0;
    text-align: center;
    padding-left: 4vw;
    padding-right: 4vw;
}
.packages-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
}
.packages-table-wrapper {
    overflow-x: auto;
    width: 100%;
    max-width: 100vw;
}
.packages-table {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 0;
    background: none;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    max-width: 950px;
    margin: 0 auto;
    min-width: 700px;
}
.packages-features-col {
    background: #f6f8fa;
    border-radius: 18px 0 0 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
    gap: 1.1rem;
    border-right: 1.5px solid #e5e7eb;
}
.packages-feature {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    color: #444;
    font-weight: 500;
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.2em 0;
}
.packages-col {
    background: #fff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    gap: 1.1rem;
    border-right: 1.5px solid #e5e7eb;
    min-width: 180px;
    position: relative;
}
.packages-col:last-child {
    border-right: none;
    border-radius: 0 18px 18px 0;
}
.packages-col-highlight {
    background: #8ed1e9;
    color: #fff;
}
.packages-col-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.2rem;
}
.packages-col-icon {
    font-size: 2.1rem;
    margin-bottom: 0.2rem;
}
.packages-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.1rem;
}
.packages-col-highlight .packages-col-title {
    color: #fff;
}
.packages-col-cell {
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.checkmark {
    color: #22c55e;
    font-size: 1.45rem;
    display: inline-block;
    line-height: 1;
}
.dash {
    color: #bbb;
    font-size: 1.45rem;
    display: inline-block;
    line-height: 1;
}
.packages-col-footer {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.packages-col-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
}
.packages-col-price span {
    font-weight: 700;
    color: #2563eb;
}
.packages-col-highlight .packages-col-price span {
    color: #fff;
}
.packages-col-btn {
    background: #a78bfa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 0.9em 2.2em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.packages-col-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.packages-col-btn-dark {
    background: #2563eb;
    color: #fff;
}
.packages-col-btn-dark:hover {
    background: #111;
    color: #fff;
}
@media (max-width: 1100px) {
    .packages-table {
        max-width: 98vw;
        min-width: 650px;
    }
}
@media (max-width: 900px) {
    .packages-section {
        padding: 36px 0 18px 0;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .packages-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 700px) {
    .packages-table-wrapper {
        padding-bottom: 1.5rem;
    }
    .packages-table {
        min-width: 600px;
        max-width: 100vw;
        font-size: 0.97rem;
    }
    .packages-features-col, .packages-col {
        padding: 0.5rem 0.3rem 0.5rem 0.3rem;
        gap: 0.7rem;
    }
    .packages-col-title {
        font-size: 1rem;
    }
}
@media (max-width: 500px) {
    .packages-section {
        padding-left: 0.5vw;
        padding-right: 0.5vw;
    }
    .packages-table {
        min-width: 420px;
        font-size: 0.93rem;
    }
}

/* Packages Cards Section Styles */
.packages-cards-section {
    background: var(--primary-bg, #f8fafc);
    padding: 64px 0 48px 0;
    text-align: center;
    padding-left: 4vw;
    padding-right: 4vw;
}
.packages-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
}
.package-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.2rem 1.7rem 1.5rem 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    max-width: 320px;
    flex: 1 1 280px;
    transition: box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    justify-content: space-between;
    min-height: 480px;
}
.package-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.01);
}
.package-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.1rem;
    gap: 0.2rem;
}
.package-card-icon {
    font-size: 2.1rem;
    margin-bottom: 0.2rem;
    color: #1a1a1a;
}
.package-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.1rem;
}
.package-card-features {
    list-style: none;
    padding: 0 1em;
    margin: 0 0 1.2rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.package-card-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.25;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.4em;
    justify-content: flex-start;
    background: none;
    border-radius: 7px;
    padding: 0.2em 0.1em;
    text-align: left;
}
.package-card-footer {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
}
.package-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
}
.package-card-price span {
    font-weight: 700;
    color: #2563eb;
}
.package-card-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 0.9em 2.2em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-decoration: none;
}
.package-card-btn:hover {
    transform: translateY(-2px) scale(1.03);
}
.package-card-btn-verify-hover:hover {
    background: #22c55e;
    color: #fff;
}
.package-card-btn-yellow-hover:hover {
    background: #fde047;
    color: #000;
}
.package-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-align: left;
    width: 100%;
}
.package-card-pro-plus-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #444;
    text-align: left;
    width: 100%;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}
.package-card-pro {
    border: 2.5px solid #2563eb;
}
.package-card-badge {
    position: absolute;
    top: -18px;
    right: 18px;
    background: #2563eb;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.2em 1em;
    letter-spacing: 0.04em;
}
.package-card-btn-pro-default:hover {
    background: #2563eb;
    color: #fff;
}
.package-card-btn-enterprise-hover:hover {
    background: #fcfadd;
    color: #1a1a1a;
}
@media (max-width: 900px) {
    .packages-cards-section {
        padding: 36px 0 18px 0;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .packages-title {
        font-size: 1.5rem;
    }
    .packages-cards-grid {
        gap: 1.2rem;
    }
    .package-card {
        max-width: 420px;
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
        min-height: 420px;
    }
}
@media (max-width: 700px) {
    .packages-cards-grid {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .package-card {
        max-width: 380px;
        min-width: 0;
        margin: 0 auto;
        min-height: unset;
        height: auto;
    }
}
@media (max-width: 500px) {
    .packages-cards-section {
        padding-left: 0.5vw;
        padding-right: 0.5vw;
    }
    .package-card {
        padding: 1.1rem 0.3rem 1.1rem 0.3rem;
        border-radius: 28px;
        max-width: 90vw;
    }
}

/* Cost Calculator Section Styles */
.cost-calculator-section {
    background: var(--complimentary-bg, #eeeeea);
    padding: 80px 0 80px 0;
    text-align: center;
    border-top: 1px solid var(--text-gray, #d1d5db);
    border-bottom: 1px solid var(--text-gray, #d1d5db);
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.cost-calculator-container,
.cost-calculator-collapsed,
.cost-calculator-expandable,
.cost-calculator-card,
.total-cost-summary {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cost-calculator-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.cost-calculator-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cost-calculator-card {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    padding: 2rem 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cost-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    margin-top: 0.8rem;
}

.input-group-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.cost-calculator-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.2rem 0;
}

.slider-group,
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.slider-group label,
.input-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    border-radius: 2.5px;
    outline: none;
    transition: background 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.slider-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
    margin-top: 0.4rem;
}

input[type="number"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    box-sizing: border-box;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 18px;
    background: #ccc;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}

input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}

input[type="checkbox"]:checked {
    background: #2563eb;
}

input[type="checkbox"]:checked::before {
    transform: translateX(18px);
}

.category-formula {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.4rem;
}

.total-cost-summary {
    background: #fff;
    border-radius: 5px;
    padding: 2.2rem 2.5rem;
    text-align: center;
    margin-top: 2.8rem;
    box-shadow: 0 6px 32px rgba(0,0,0,0.07);
    border: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.summary-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #2563eb;
    margin-bottom: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.total-cost-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.summary-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
    font-style: italic;
    margin-top: 0.5rem;
}

.summary-explainer {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.summary-cta-btn {
    display: inline-block;
    margin-top: 1.2rem;
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.13rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    padding: 1em 2.5em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    letter-spacing: 0.01em;
}
.summary-cta-btn:hover, .summary-cta-btn:focus {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
@media (max-width: 900px) {
    .summary-explainer {
        font-size: 0.97rem;
    }
    .summary-cta-btn {
        font-size: 1rem;
        padding: 0.9em 2em;
    }
}
@media (max-width: 600px) {
    .summary-explainer {
        font-size: 0.89rem;
    }
    .summary-cta-btn {
        font-size: 0.95rem;
        padding: 0.8em 1.2em;
    }
}

@media (max-width: 900px) {
    .cost-calculator-title {
        font-size: 2rem;
    }
    .cost-calculator-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .cost-calculator-card {
        padding: 1.5rem 2rem;
        gap: 1rem;
    }
    .input-group-title {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    .input-group-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .slider-group,
    .input-group {
        margin-bottom: 0.7rem;
    }
    .category-formula {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
    .total-cost-summary {
        padding: 1.8rem 2rem;
        margin-top: 2.2rem;
        border-radius: 5px;
    }
    .summary-label {
        font-size: 0.95rem;
    }
    .total-cost-value {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .cost-calculator-section {
        padding: 28px 0 28px 0;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .cost-calculator-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .cost-calculator-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .cost-calculator-card {
        padding: 1.2rem 1.5rem;
        gap: 0.8rem;
    }
    .input-group-title {
        font-size: 1rem;
        margin-top: 0.3rem;
    }
    .input-group-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    .slider-group label,
    .input-group label {
        font-size: 0.8rem;
    }
    .slider-value {
        font-size: 0.9rem;
    }
    input[type="number"] {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    input[type="range"] {
        height: 4px;
    }
    input[type="range"]::-webkit-slider-thumb,
    input[type="range"]::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }
    input[type="checkbox"] {
        width: 32px;
        height: 16px;
        border-radius: 5px;
    }
    input[type="checkbox"]::before {
        width: 12px;
        height: 12px;
    }
    input[type="checkbox"]:checked::before {
        transform: translateX(16px);
    }
    .category-formula {
        font-size: 0.7rem;
        margin-top: 0.1rem;
    }
    .total-cost-summary {
        padding: 1.5rem 1.2rem;
        margin-top: 1.2rem;
        border-radius: 5px;
    }
    .total-cost-value {
        font-size: 2.2rem;
    }
    .summary-label {
        font-size: 0.85rem;
    }
    .summary-note {
        font-size: 0.8rem;
    }
}

.cost-calculator-collapsed {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: #f8fafc;
    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;
}

.permly-process-collapsed {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: #f8fafc;
    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;
}

.cost-calculator-collapsed-label,
.permly-process-collapsed-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.cost-calculator-collapsed-icon,
.permly-process-collapsed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cost-calculator-collapsed[aria-expanded="true"] .cost-calculator-collapsed-icon,
.permly-process-collapsed[aria-expanded="true"] .permly-process-collapsed-icon {
    transform: rotate(180deg);
}

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

.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;
}
.cost-calculator-collapsed,
.permly-process-collapsed {
    border-radius: 5px;
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    background: #fff;
}
@media (max-width: 900px) {
    .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-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-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;
}