/* Pay After Placement Specific Styles */

.papl-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 10%, #ffffff 0%, #f4fbf8 100%);
    text-align: center;
}

.papl-hero .hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F9D58;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.papl-hero .hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #202124;
    line-height: 1.1;
}

.papl-hero .hero-title .text-gradient {
    background: linear-gradient(135deg, #0F9D58, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.papl-hero .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #5f6368;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.papl-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.papl-hero .btn-primary {
    background: #0F9D58;
    border-color: #0F9D58;
}
.papl-hero .btn-primary:hover {
    background: #0b8248;
    border-color: #0b8248;
    box-shadow: 0 8px 25px rgba(15, 157, 88, 0.3);
}

.papl-hero .btn-outline {
    border-color: #0F9D58;
    color: #0F9D58;
}
.papl-hero .btn-outline:hover {
    background: rgba(15, 157, 88, 0.05);
}

/* Bento Grid */
.papl-benefits {
    padding: 100px 0;
    background: #fff;
}

.papl-benefits .text-gradient {
    background: linear-gradient(135deg, #0F9D58, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}

.bento-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #f1f3f4;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.bento-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-left: 4px solid #0F9D58;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #e0e0e0;
}

.bento-icon {
    font-size: 2.5rem;
    color: #0F9D58;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #202124;
}

.bento-card p {
    color: #5f6368;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Workflow */
.papl-timeline {
    padding: 100px 0;
    background: #fcfcfc;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-top: 4px solid #0F9D58;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

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

.step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(15, 157, 88, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #202124;
}

.step-card p {
    color: #5f6368;
    line-height: 1.6;
}

/* Call to Action */
.papl-cta {
    padding: 100px 0;
    background: var(--dark-gray, #202124);
    color: #fff;
}

.papl-cta .btn-primary {
    background: #0F9D58;
    border-color: #0F9D58;
}

.papl-cta .btn-primary:hover {
    background: #0b8248;
    border-color: #0b8248;
}

/* Responsiveness */
@media (max-width: 768px) {
    .bento-card.large {
        grid-column: span 1;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .papl-hero .hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }
}

/* --- NEW FEATURES STYLES --- */

/* Marquee */
.partners-marquee {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.marquee-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 20s linear infinite;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    padding: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: none;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Curriculum Grid */
.curriculum-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.curr-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f4;
    transition: transform 0.3s;
}

.curr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.curr-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 157, 88, 0.1);
    color: #0F9D58;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.curr-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.curr-card ul {
    list-style: none;
    padding: 0;
    color: #5f6368;
}

.curr-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.curr-card ul li::before {
    content: "•";
    color: #0F9D58;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.calc-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calc-info p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 30px;
    line-height: 1.6;
}

.calc-features div {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.slider-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.slider-val-container {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 20px;
}

.custom-slider {
    width: 100%;
    margin-bottom: 40px;
    accent-color: #0F9D58;
}

.calc-results {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.result-box span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-box h3 {
    font-size: 1.8rem;
    margin-top: 5px;
    color: #202124;
}

.result-box h3.text-gradient {
    background: linear-gradient(135deg, #0F9D58, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calc-disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 20px;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.t-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #202124;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.t-quote {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin: 20px 0 30px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.t-info strong {
    display: block;
    color: #202124;
}

.t-info span {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Detailed FAQ (Careers Style) */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #0F9D58;
}

.faq-item.active {
    box-shadow: 0 10px 40px rgba(15, 157, 88, 0.1);
    border-color: #0F9D58;
    background: #fcfcfc;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202124;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #5f6368;
    transition: transform 0.3s ease, color 0.3s;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #0F9D58;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Application Fee Section (Material Design) --- */
.app-fee-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.material-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.02);
    padding: 40px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.material-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 14px 28px rgba(0, 0, 0, 0.02);
}

.fee-card-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.fee-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    color: #0F9D58;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.fee-text {
    flex-grow: 1;
}

.fee-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #202124;
    margin-bottom: 12px;
}

.fee-text p {
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.fee-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fee-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #202124;
    font-weight: 500;
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 20px;
}

.fee-features li i {
    color: #0F9D58;
}

.fee-pricing {
    background: #f4fbf8;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    min-width: 250px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.fee-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #202124;
    vertical-align: top;
    margin-right: 2px;
}

.fee-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.fee-period {
    display: block;
    color: #5f6368;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.material-btn {
    background: #0F9D58;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(15, 157, 88, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.material-btn:hover {
    background: #0b8248;
    color: #fff;
    box-shadow: 0 6px 12px rgba(15, 157, 88, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .fee-card-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .fee-icon-wrapper {
        margin: 0 auto;
    }
    
    .fee-features {
        justify-content: center;
    }
    
    .fee-pricing {
        width: 100%;
    }
}

/* --- Timeline Progress Hover --- */
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.step-card.progress-hover {
    cursor: crosshair;
    position: relative;
}

.step-card.progress-hover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 4px;
    width: var(--hover-width, 0%);
    background: linear-gradient(90deg, #0F9D58, #34A853);
    transition: width 0.6s ease-out;
}

.step-progress {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F9D58;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.step-card.progress-hover:hover .step-progress {
    opacity: 1;
    transform: translateY(0);
}


/* --- ESBI Alternative Section --- */
.plan-b-section {
    padding: 100px 0;
    background: #111; /* Dark theme */
    border-top: 1px solid #333;
}

.badge-accent {
    display: inline-block;
    background: rgba(15, 157, 88, 0.15);
    color: #34A853;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid rgba(15, 157, 88, 0.3);
}

.plan-b-section .section-title {
    color: #fff;
    margin-bottom: 20px;
}

.esbi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.esbi-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.esbi-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: #333;
    transition: background 0.3s;
}

.esbi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: #444;
}

.esbi-card:hover::before {
    background: linear-gradient(90deg, #0F9D58, #4285F4);
}

.esbi-card.active-card::before {
    background: #0F9D58;
}

.esbi-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.8;
}

.esbi-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.esbi-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

/* --- FOMO and CTA --- */
.fomo-banner {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #FFC107;
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.fomo-banner .seats-left {
    font-size: 1.2rem;
    margin: 0 5px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #FFC107;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.btn-pulse {
    position: relative;
    z-index: 1;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    animation: btn-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes btn-pulse-anim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0; }
}

/* --- Hero Video Placeholder --- */
.hero-video-wrapper {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.video-placeholder:hover .video-thumbnail {
    opacity: 0.8;
}

.play-btn-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: #0F9D58;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.6);
    animation: pulse-animation-green 2s infinite;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-placeholder:hover .play-btn-pulse {
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-animation-green {
    0% { box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(15, 157, 88, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 157, 88, 0); }
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* --- Target Audience Section --- */
.target-audience-section {
    padding: 100px 0;
}

.audience-split {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.audience-card {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f1f3f4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.audience-card.positive {
    border-top: 5px solid #0F9D58;
}

.audience-card.negative {
    border-top: 5px solid #d93025;
}

.audience-icon {
    font-size: 3rem;
    color: #0F9D58;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #202124;
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.audience-list li i {
    color: #0F9D58;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .audience-split {
        flex-direction: column;
    }
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

/* Show only on smaller screens, and let JS handle scrolling optionally, or just CSS media query */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        transform: translateY(0);
    }
    /* Add padding to body to avoid footer overlap */
    body {
        padding-bottom: 80px;
    }
    .mobile-sticky-cta .material-btn {
        width: 100%;
        display: block;
        text-align: center;
        border-radius: 8px;
    }
}
