/* ============================================
   Teacher PDP Landing Page Styles
   ============================================ */

/* ---------- Base & Variables ---------- */
:root {
    --pdp-navy: #1a2b4a;
    --pdp-dark-blue: #0d1b3e;
    --pdp-pink: #e91e8c;
    --pdp-magenta: #d6006e;
    --pdp-cyan: #00bcd4;
    --pdp-light-cyan: #e0f7fa;
    --pdp-light-pink: #fce4ec;
    --pdp-gold: #f5c518;
    --pdp-white: #ffffff;
    --pdp-gray-100: #f8f9fa;
    --pdp-gray-200: #e9ecef;
    --pdp-gray-600: #6c757d;
    --pdp-text: #333333;
    --pdp-gradient-pink-blue: linear-gradient(to right, #26abe0, #d41e81);
    --pdp-gradient-blue-pink: linear-gradient(to right, #d41e81, #26abe0);
}

.pdp-landing * {
    box-sizing: border-box;
}

.pdp-landing {
    font-family: 'Roboto', 'Plus Jakarta Sans', sans-serif;
    color: var(--pdp-text);
    overflow-x: hidden;
}

.pdp-landing h1,
.pdp-landing h2,
.pdp-landing h3,
.pdp-landing h4,
.pdp-landing h5,
.pdp-landing h6 {
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    font-weight: 700;
}

.pdp-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pdp-landing section {
    position: relative;
}

/* ---------- Section 1: Hero Banner ---------- */
.pdp-hero {
    position: relative;
    background-image: url('/assets/pdp/banner/banner-1.png');
    background-size: cover;
    background-position: center right;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pdp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(212, 30, 129, 0.95) 0%, rgba(100, 20, 110, 0.92) 25%, rgba(38, 171, 224, 0.85) 60%, transparent 100%);
    z-index: 1;
}

.pdp-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 15px;
}

.pdp-hero-content {
    flex: 1;
    max-width: 55%;
}

.pdp-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pdp-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.pdp-hero-tagline {
    display: inline-block;
    background: var(--pdp-gold);
    color: var(--pdp-dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pdp-hero-badges {
    color: var(--pdp-white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.pdp-hero-badges strong {
    font-weight: 700;
}

.pdp-hero-trust {
    color: var(--pdp-white);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pdp-hero-trust strong {
    font-weight: 700;
}

.pdp-hero-cta {
    display: inline-block;
    background: var(--pdp-pink);
    color: var(--pdp-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pdp-hero-cta:hover {
    background: #c4177a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
    color: var(--pdp-white);
    text-decoration: none;
}

.pdp-hero-image {
    display: none;
}

/* Decorative circle */
.pdp-hero-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(0, 188, 212, 0.4);
    border-radius: 50%;
    bottom: 60px;
    left: 55%;
}

/* ---------- Section 2: Why This Matters ---------- */
.pdp-why-matters {
    padding: 80px 0;
    background: var(--pdp-white);
}

.pdp-why-matters .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pdp-why-matters-image {
    flex: 0 0 38%;
    max-width: 38%;
    text-align: center;
}

.pdp-why-matters-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.pdp-why-matters-image .pdp-credential-quote {
    color: var(--pdp-pink);
    font-style: italic;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 16px;
    text-align: center;
}

.pdp-why-matters-content {
    flex: 1;
}

.pdp-why-matters-content h2 {
    font-size: 2.2rem;
    color: var(--pdp-navy);
    margin-bottom: 16px;
    font-weight: 800;
}

.pdp-why-matters-content > p {
    font-size: 1.05rem;
    color: var(--pdp-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.pdp-why-matters-content .pdp-highlight-text {
    color: var(--pdp-pink);
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.pdp-why-matters-content h4 {
    font-size: 1.1rem;
    color: var(--pdp-navy);
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 700;
}

.pdp-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.pdp-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.pdp-checklist .pdp-check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--pdp-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdp-white);
    font-size: 12px;
}

.pdp-checklist.pdp-checklist-green .pdp-check-icon {
    background: #4caf50;
}

/* ---------- Section 3: AI Strip ---------- */
.pdp-ai-strip {
    background: linear-gradient(to right, #26abe0, #d41e81);
    padding: 18px 0;
    text-align: center;
}

.pdp-ai-strip p {
    color: var(--pdp-white);
    font-size: 1.15rem;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

/* ---------- Section 4: What Teachers Will Learn ---------- */
.pdp-what-learn {
    padding: 70px 0 60px;
    background: var(--pdp-white);
    text-align: center;
}

.pdp-what-learn h2 {
    font-size: 2.2rem;
    color: var(--pdp-navy);
    margin-bottom: 8px;
    font-weight: 800;
}

.pdp-what-learn > .container > p {
    color: var(--pdp-gray-600);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.pdp-skills-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1050px;
    margin: 0 auto;
}

.pdp-skill-card {
    text-align: center;
    padding: 24px 12px 20px;
    border: 1.5px solid #d0d8e8;
    border-radius: 12px;
    background: var(--pdp-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 170px;
}

.pdp-skill-card .pdp-skill-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pdp-skill-card:nth-child(1) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }
.pdp-skill-card:nth-child(2) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }
.pdp-skill-card:nth-child(3) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }
.pdp-skill-card:nth-child(4) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }
.pdp-skill-card:nth-child(5) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }
.pdp-skill-card:nth-child(6) .pdp-skill-icon { background: linear-gradient(to right, #26abe0, #d41e81); }

.pdp-skill-card .pdp-skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-skill-card p {
    font-size: 0.85rem;
    color: var(--pdp-navy);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

/* ---------- Section 5: Pricing Plans ---------- */
.pdp-plans {
    padding: 60px 0 40px;
    background: var(--pdp-white);
    text-align: center;
}

.pdp-plans > .container > h2 {
    font-size: 2.2rem;
    color: var(--pdp-navy);
    margin-bottom: 40px;
    font-weight: 800;
}

.pdp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.pdp-plan-img-link {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdp-plan-img-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pdp-plan-img-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.pdp-plan-card.pdp-plan-highlighted {
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.15);
}

.pdp-plan-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #26abe0, #d41e81);
    color: var(--pdp-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(245, 197, 24, 0.4);
    z-index: 2;
}

.pdp-plan-popular-badge svg {
    width: 14px;
    height: 14px;
}

.pdp-plan-card h3 {
    font-size: 1.3rem;
    color: var(--pdp-navy);
    margin-bottom: 4px;
    font-weight: 800;
    text-align: center;
}

.pdp-plan-highlighted h3 {
    color: var(--pdp-pink);
}

.pdp-plan-card .pdp-plan-subtitle {
    font-size: 0.85rem;
    color: var(--pdp-gray-600);
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pdp-gray-200);
    text-align: center;
}

.pdp-plan-card .pdp-plan-tagline {
    color: var(--pdp-pink);
    font-size: 0.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 14px;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--pdp-pink);
    text-underline-offset: 4px;
}

.pdp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    flex: 1;
}

.pdp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--pdp-text);
}

.pdp-plan-features li .pdp-plan-icon {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 6px;
    background: var(--pdp-navy);
    border-radius: 2px;
    flex-shrink: 0;
}

.pdp-plan-features li .pdp-plan-icon img {
    display: none;
}

.pdp-plan-divider {
    height: 1px;
    background: var(--pdp-gray-200);
    margin: 12px 0;
}

.pdp-plan-bottom-text {
    font-size: 0.85rem;
    color: var(--pdp-navy);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
    font-style: italic;
}

.pdp-plan-highlighted .pdp-plan-bottom-text {
    color: var(--pdp-pink);
    font-weight: 700;
}

.pdp-plan-price {
    text-align: center;
    margin-bottom: 16px;
}

.pdp-plan-price .pdp-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pdp-navy);
}

.pdp-plan-price .pdp-price-note {
    font-size: 0.75rem;
    color: var(--pdp-gray-600);
    display: block;
}

.pdp-plan-highlighted .pdp-plan-price .pdp-price-amount {
    color: var(--pdp-pink);
    font-size: 2.4rem;
}

.pdp-plan-cta {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pdp-plan-cta.pdp-cta-outline {
    background: transparent;
    border: 2px solid var(--pdp-navy);
    color: var(--pdp-navy);
}

.pdp-plan-cta.pdp-cta-outline:hover {
    background: var(--pdp-navy);
    color: var(--pdp-white);
}

.pdp-plan-cta.pdp-cta-filled {
    background: var(--pdp-pink);
    color: var(--pdp-white);
    border: 2px solid var(--pdp-pink);
}

.pdp-plan-cta.pdp-cta-filled:hover {
    background: #c4177a;
    border-color: #c4177a;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
    text-decoration: none;
    color: var(--pdp-white);
}

.pdp-plan-cta.pdp-cta-green {
    background: #2e7d32;
    color: var(--pdp-white);
    border: 2px solid #2e7d32;
}

.pdp-plan-cta.pdp-cta-green:hover {
    background: #1b5e20;
    border-color: #1b5e20;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    text-decoration: none;
    color: var(--pdp-white);
}

.pdp-plans-notes {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid var(--pdp-gray-200);
}

.pdp-plans-notes p {
    font-size: 0.78rem;
    color: var(--pdp-gray-600);
    margin-bottom: 2px;
    font-style: italic;
}

.pdp-plans-notes p strong {
    font-weight: 600;
    color: var(--pdp-text);
    font-style: normal;
}

/* ---------- Section 6: How It Works ---------- */
.pdp-how-it-works {
    padding: 70px 0;
    background: var(--pdp-white);
    text-align: center;
}

.pdp-how-it-works h2 {
    font-size: 2.2rem;
    color: var(--pdp-navy);
    margin-bottom: 50px;
    font-weight: 800;
    font-style: italic;
}

.pdp-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.pdp-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.pdp-step-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    min-width: 60px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.pdp-step:nth-child(1) .pdp-step-number {
    background: linear-gradient(to right, #26abe0, #d41e81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdp-step:nth-child(2) .pdp-step-number {
    background: linear-gradient(to right, #26abe0, #d41e81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdp-step:nth-child(3) .pdp-step-number {
    background: linear-gradient(to right, #26abe0, #d41e81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdp-step-box {
    flex: 1;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    padding: 24px 28px 24px 20px;
    margin-left: 3px;
}

.pdp-step:nth-child(1) .pdp-step-box {
    background-image: url('/assets/pdp/how-it-works/box-1.png');
}

.pdp-step:nth-child(2) .pdp-step-box {
    background-image: url('/assets/pdp/how-it-works/box-2.png');
}

.pdp-step:nth-child(3) .pdp-step-box {
    background-image: url('/assets/pdp/how-it-works/box-1.png');
}

.pdp-step-text {
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 2rem;
    width: 8rem;
    color: var(--pdp-navy);
    text-align: left;
    line-height: 1.5;
}

/* ---------- Section 7: Walk Away With Credential ---------- */
.pdp-credential {
    padding: 50px 0;
    background: linear-gradient(to right, #26abe0, #d41e81);
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1100px;
}

.pdp-credential .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pdp-credential-slider {
    flex: 0 0 35%;
    max-width: 35%;
    position: relative;
}

.pdp-credential-slider-track {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    min-height: 250px;
}

.pdp-credential-slide {
    display: none;
    animation: pdpCertFadeIn 0.5s ease;
}

.pdp-credential-slide.active {
    display: block;
}

@keyframes pdpCertFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.pdp-credential-slide img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pdp-credential-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.pdp-credential-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.pdp-credential-dot.active {
    background: var(--pdp-white);
    transform: scale(1.2);
}

.pdp-credential-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.pdp-credential-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.pdp-credential-nav.prev {
    left: 5px;
    font-size: 2rem;
}

.pdp-credential-nav.next {
    right: 5px;
    font-size: 2rem;
}

.pdp-credential-content {
    flex: 1;
}

.pdp-credential-content h2 {
    font-size: 1.8rem;
    color: var(--pdp-white);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.pdp-credential-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdp-credential-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--pdp-white);
}

.pdp-credential-list li .pdp-green-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdp-white);
    font-size: 12px;
}

/* ---------- Section 8: Who Is This For ---------- */
.pdp-who-for {
    padding: 80px 0;
    background: var(--pdp-gray-100);
}

.pdp-who-for .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pdp-who-for-image {
    flex: 0 0 42%;
    max-width: 42%;
}

.pdp-who-for-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.pdp-who-for-content {
    flex: 1;
}

.pdp-who-for-content h2 {
    font-size: 2rem;
    color: var(--pdp-navy);
    margin-bottom: 8px;
    font-weight: 800;
}

.pdp-who-for-content > p {
    font-size: 1rem;
    color: var(--pdp-gray-600);
    margin-bottom: 20px;
}

.pdp-who-for-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pdp-who-for-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pdp-navy);
}

.pdp-who-for-list li .pdp-check-circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.pdp-who-for-list li .pdp-check-circle img {
    width: 100%;
    height: 100%;
}

.pdp-who-for-notes {
    font-size: 0.85rem;
    color: var(--pdp-pink);
    font-style: italic;
    line-height: 1.6;
}

/* ---------- Section 9: Teacher Testimonials ---------- */
.pdp-testimonials {
    padding: 70px 0 80px;
    background: linear-gradient(to right, rgba(38, 171, 224, 0.88), rgba(212, 30, 129, 0.88)),
                url('/assets/pdp/testimonials-bg/background.jpg') center/cover no-repeat;
    text-align: center;
}

.pdp-testimonials h2 {
    font-size: 2rem;
    color: var(--pdp-white);
    margin-bottom: 40px;
    font-weight: 800;
    font-style: italic;
}

.pdp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pdp-testimonial-card {
    background: var(--pdp-white);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.pdp-testimonial-video {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.pdp-testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-testimonial-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px !important;
    height: 56px !important;
    z-index: 2;
    transition: transform 0.3s;
}

.pdp-testimonial-video:hover .pdp-testimonial-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.pdp-testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to right, transparent, rgba(212, 30, 129, 0.7));
    color: var(--pdp-white);
}

.pdp-testimonial-overlay .pdp-review-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdp-testimonial-overlay .pdp-reviewer-name-overlay {
    font-size: 0.9rem;
    font-weight: 700;
}

.pdp-testimonial-overlay .pdp-reviewer-title-overlay {
    font-size: 0.7rem;
    opacity: 0.8;
}

.pdp-testimonial-quote {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pdp-testimonial-quote blockquote {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--pdp-text);
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 16px;
    border: none;
    flex: 1;
}

.pdp-testimonial-quote blockquote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.5rem;
    color: var(--pdp-pink);
    font-weight: 700;
}

.pdp-testimonial-quote blockquote::after {
    content: '\201D';
    font-size: 1.5rem;
    color: var(--pdp-pink);
    font-weight: 700;
    display: inline;
    line-height: 0;
    vertical-align: baseline;
}

.pdp-testimonial-author {
    padding-top: 10px;
    margin-top: 16px;
    border-top: 1px solid var(--pdp-gray-200);
}

.pdp-testimonial-author .pdp-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pdp-pink);
}

.pdp-testimonial-author .pdp-author-title {
    font-size: 0.8rem;
    color: var(--pdp-gray-600);
}

/* ---------- Section 10: FAQ ---------- */
.pdp-faq {
    padding: 70px 0 80px;
    background: var(--pdp-white);
}

.pdp-faq .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.pdp-faq-image {
    flex: 0 0 35%;
    max-width: 35%;
}

.pdp-faq-image img {
    max-width: 100%;
    height: auto;
}

.pdp-faq-content {
    flex: 1;
}

.pdp-faq-content h2 {
    font-size: 2rem;
    color: var(--pdp-navy);
    margin-bottom: 8px;
    font-weight: 800;
    font-style: italic;
}

.pdp-faq-content > p {
    font-size: 0.95rem;
    color: var(--pdp-gray-600);
    margin-bottom: 24px;
}

.pdp-faq-accordion {
    border-radius: 8px;
    overflow: hidden;
}

.pdp-faq-item {
    border: 1px solid var(--pdp-gray-200);
    margin-bottom: -1px;
}

.pdp-faq-item:first-child {
    border-radius: 8px 8px 0 0;
}

.pdp-faq-item:last-child {
    border-radius: 0 0 8px 8px;
}

.pdp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--pdp-navy);
    background: var(--pdp-white);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s;
}

.pdp-faq-question:hover {
    background: var(--pdp-gray-100);
}

.pdp-faq-question.active {
    background: linear-gradient(to right, #26abe0, #d41e81);
    color: var(--pdp-white);
    border-radius: 8px 8px 0 0;
}

.pdp-faq-question .pdp-faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.pdp-faq-question.active .pdp-faq-toggle {
    transform: rotate(180deg);
}

.pdp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--pdp-gray-600);
    line-height: 1.6;
    background: var(--pdp-white);
}

.pdp-faq-answer.open {
    max-height: 300px;
    padding: 16px 20px;
}

/* ---------- Section 11: Success Stories ---------- */
.pdp-success {
    padding: 70px 0 80px;
    background: var(--pdp-gray-100);
    text-align: center;
}

.pdp-success h2 {
    font-size: 2rem;
    color: var(--pdp-navy);
    margin-bottom: 40px;
    font-weight: 800;
    font-style: italic;
}

.pdp-success h2 .pdp-highlight {
    color: var(--pdp-pink);
    font-weight: 900;
}

.pdp-success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pdp-success-card {
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pdp-success-card.pdp-card-pink {
    background: var(--pdp-light-pink);
    border: 2px solid #f8bbd0;
}

.pdp-success-card.pdp-card-blue {
    background: var(--pdp-light-cyan);
    border: 2px solid #b2ebf2;
}

.pdp-success-card .pdp-success-logo {
    height: 50px;
    margin-bottom: 12px;
    object-fit: contain;
}

.pdp-success-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.3;
}

.pdp-success-card.pdp-card-pink h4 {
    color: var(--pdp-pink);
}

.pdp-success-card.pdp-card-blue h4 {
    color: var(--pdp-navy);
}

.pdp-success-card p {
    font-size: 0.82rem;
    color: var(--pdp-text);
    line-height: 1.5;
    margin: 0;
}

.pdp-success-card p strong {
    font-weight: 700;
}

/* ---------- Enrollment Form ---------- */
.pdp-enroll-form {
    padding: 70px 0 80px;
    background: var(--pdp-gray-100);
    text-align: center;
}

.pdp-enroll-form h2 {
    font-size: 2rem;
    color: var(--pdp-navy);
    margin-bottom: 8px;
    font-weight: 800;
}

.pdp-enroll-form > .container > p {
    color: var(--pdp-gray-600);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.pdp-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: var(--pdp-white);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: left;
}

/* Floating label group */
.pdp-float-group {
    position: relative;
    margin-bottom: 24px;
}

.pdp-float-group input,
.pdp-float-group select {
    width: 100%;
    padding: 14px 14px 8px;
    border: 1.5px solid #d0d8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--pdp-text);
    background: var(--pdp-white);
    outline: none;
    transition: border-color 0.25s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.pdp-float-group input:focus,
.pdp-float-group select:focus {
    border-color: var(--pdp-pink);
}

.pdp-float-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.92rem;
    color: #8e99a8;
    pointer-events: none;
    transition: all 0.2s ease;
    background: var(--pdp-white);
    padding: 0 4px;
    line-height: 1;
}

.pdp-float-group label .pdp-required {
    color: var(--pdp-pink);
}

/* Float up on focus or when input has content */
.pdp-float-group input:focus ~ label,
.pdp-float-group input:not(:placeholder-shown) ~ label,
.pdp-float-group select:focus ~ label,
.pdp-float-group select:valid ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--pdp-pink);
    font-weight: 600;
}

/* Select with empty disabled option needs special handling */
.pdp-float-group select option[disabled] {
    display: none;
}

/* Float row for side-by-side fields */
.pdp-float-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pdp-float-row .pdp-float-group {
    flex: 1;
}

/* Phone code select - smaller width */
.pdp-float-group.pdp-float-phone-code {
    flex: 0 0 100px;
}

.pdp-float-group.pdp-float-phone-code select {
    padding: 14px 8px 8px;
    text-align: center;
}

.pdp-float-group.pdp-float-phone-code label {
    left: 8px;
}

.pdp-form-submit {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #26abe0, #d41e81);
    color: var(--pdp-white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.pdp-form-submit:hover {
    background: linear-gradient(to right, #d41e81, #26abe0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}

.pdp-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pdp-form-note {
    font-size: 0.82rem;
    color: var(--pdp-gray-600);
    margin-top: 16px;
}

.pdp-form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.pdp-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

.pdp-form-message.error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

.pdp-form-error {
    font-size: 0.8rem;
    color: #c62828;
    margin-top: 4px;
    display: none;
}

/* ---------- WhatsApp Float Button ---------- */
.pdp-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
    text-decoration: none;
}

.pdp-whatsapp-float:hover {
    transform: scale(1.1);
}

.pdp-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--pdp-white);
}

/* Notification dot */
.pdp-whatsapp-float::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #f44336;
    border-radius: 50%;
    border: 2px solid var(--pdp-white);
}

/* ---------- Video Modal ---------- */
.pdp-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.pdp-video-modal.active {
    display: flex;
}

.pdp-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.pdp-video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.pdp-video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--pdp-white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1200px) {
    .pdp-plans-grid {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .pdp-hero .container {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .pdp-hero-content {
        max-width: 100%;
    }

    .pdp-hero-image {
        display: none;
    }

    .pdp-why-matters {
        padding: 50px 0;
    }

    .pdp-why-matters .container {
        flex-direction: column;
        text-align: center;
    }

    .pdp-why-matters-image {
        flex: 0 0 100%;
        max-width: 60%;
    }

    .pdp-why-matters-content {
        text-align: left;
    }

    .pdp-skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdp-plans {
        padding: 50px 0 30px;
    }

    .pdp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }

    .pdp-steps-row {
        flex-direction: column;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .pdp-credential .container {
        flex-direction: column;
        text-align: center;
    }

    .pdp-credential-slider {
        flex: 0 0 100%;
        max-width: 60%;
    }

    .pdp-who-for {
        padding: 50px 0;
    }

    .pdp-who-for .container {
        flex-direction: column;
        text-align: center;
    }

    .pdp-who-for-image {
        flex: 0 0 100%;
        max-width: 70%;
    }

    .pdp-who-for-content {
        text-align: left;
    }

    .pdp-testimonials {
        padding: 50px 0 60px;
    }

    .pdp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }

    .pdp-testimonials-grid .pdp-testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .pdp-faq {
        padding: 50px 0 60px;
    }

    .pdp-faq .container {
        flex-direction: column;
    }

    .pdp-faq-image {
        flex: 0 0 100%;
        max-width: 50%;
        margin: 0 auto;
    }

    .pdp-success {
        padding: 50px 0 60px;
    }

    .pdp-success-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp-enroll-form {
        padding: 50px 0 60px;
    }
}

@media (max-width: 768px) {
    .pdp-hero {
        min-height: 340px;
    }

    .pdp-hero .container {
        padding: 30px 15px;
    }

    .pdp-hero-content h1 {
        font-size: 1.8rem;
    }

    .pdp-hero-badges,
    .pdp-hero-trust {
        font-size: 0.85rem;
    }

    .pdp-why-matters {
        padding: 40px 0;
    }

    .pdp-why-matters-content h2,
    .pdp-what-learn h2,
    .pdp-plans > .container > h2,
    .pdp-how-it-works h2,
    .pdp-who-for-content h2,
    .pdp-testimonials h2,
    .pdp-faq-content h2,
    .pdp-success h2,
    .pdp-enroll-form h2,
    .pdp-credential-content h2 {
        font-size: 1.5rem;
    }

    .pdp-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp-skill-card {
        min-height: 140px;
        padding: 16px 10px 14px;
    }

    .pdp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
    }

    .pdp-how-it-works {
        padding: 50px 0;
    }

    .pdp-step-number {
        font-size: 3.5rem;
        min-width: 45px;
    }

    .pdp-step-box {
        min-height: 110px;
        padding: 16px 20px 16px 14px;
    }

    .pdp-step-text {
        font-size: 0.85rem;
        margin-left: 1rem;
        width: auto;
    }

    .pdp-credential {
        border-radius: 12px;
        margin: 0 15px;
        padding: 40px 0;
    }

    .pdp-credential-slider {
        max-width: 70%;
    }

    .pdp-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pdp-testimonials-grid .pdp-testimonial-card:last-child {
        max-width: 100%;
    }

    .pdp-success-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pdp-success-card {
        padding: 18px 14px;
        min-height: 160px;
    }

    .pdp-float-row {
        flex-direction: column;
        gap: 0;
    }

    .pdp-float-group.pdp-float-phone-code {
        flex: 1;
    }

    .pdp-form-wrapper {
        padding: 28px 20px;
    }

    .pdp-whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .pdp-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    .pdp-hero {
        min-height: auto;
    }

    .pdp-hero .container {
        padding: 24px 12px;
    }

    .pdp-hero-content h1 {
        font-size: 1.35rem;
    }

    .pdp-hero-tagline {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .pdp-hero-cta {
        font-size: 0.9rem;
        padding: 10px 24px;
    }

    .pdp-hero-circle {
        display: none;
    }

    .pdp-why-matters {
        padding: 30px 0;
    }

    .pdp-why-matters .container {
        gap: 30px;
    }

    .pdp-why-matters-image {
        max-width: 80%;
    }

    .pdp-why-matters-content h2 {
        font-size: 1.3rem;
    }

    .pdp-ai-strip {
        padding: 12px 0;
    }

    .pdp-ai-strip p {
        font-size: 0.95rem;
    }

    .pdp-what-learn {
        padding: 40px 0 30px;
    }

    .pdp-skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pdp-skill-card {
        min-height: 120px;
        padding: 14px 8px 12px;
    }

    .pdp-skill-card .pdp-skill-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .pdp-skill-card p {
        font-size: 0.78rem;
    }

    .pdp-plans {
        padding: 30px 0 20px;
    }

    .pdp-plans > .container > h2 {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .pdp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .pdp-plans-notes {
        padding-top: 14px;
    }

    .pdp-plans-notes p {
        font-size: 0.7rem;
    }

    .pdp-how-it-works {
        padding: 30px 0;
    }

    .pdp-how-it-works h2 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .pdp-step-number {
        font-size: 2.8rem;
        min-width: 36px;
    }

    .pdp-step{
        margin-left: 1.5rem;
    }

    .pdp-step-box {
        background-size: 70% 100%
    }

    .pdp-step-box {
        padding: 12px 14px 12px 10px;
    }

    .pdp-step-text {
        font-size: 0.8rem;
        margin-left: 4.5rem;
        width: 7rem;
    }

    .pdp-credential {
        margin: 0 10px;
        padding: 30px 0;
    }

    .pdp-credential .container {
        gap: 24px;
    }

    .pdp-credential-slider {
        max-width: 85%;
    }

    .pdp-credential-slider-track {
        padding: 12px;
        min-height: 180px;
    }

    .pdp-credential-content h2 {
        font-size: 1.2rem;
    }

    .pdp-credential-list li {
        font-size: 0.9rem;
    }

    .pdp-who-for {
        padding: 30px 0;
    }

    .pdp-who-for .container {
        gap: 24px;
    }

    .pdp-who-for-image {
        max-width: 100%;
    }

    .pdp-who-for-content h2 {
        font-size: 1.3rem;
    }

    .pdp-who-for-list li {
        font-size: 0.95rem;
    }

    .pdp-testimonials {
        padding: 30px 0 40px;
    }

    .pdp-testimonials h2 {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .pdp-testimonial-video {
        height: 160px;
    }

    .pdp-testimonial-quote {
        padding: 14px;
    }

    .pdp-testimonial-quote blockquote {
        font-size: 0.82rem;
    }

    .pdp-faq {
        padding: 30px 0 40px;
    }

    .pdp-faq .container {
        gap: 24px;
    }

    .pdp-faq-image {
        max-width: 60%;
    }

    .pdp-faq-content h2 {
        font-size: 1.3rem;
    }

    .pdp-faq-question {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .pdp-faq-answer {
        font-size: 0.85rem;
    }

    .pdp-faq-tabs {
        gap: 6px;
    }

    .pdp-faq-tab {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .pdp-success {
        padding: 30px 0 40px;
    }

    .pdp-success h2 {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .pdp-success-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pdp-success-card {
        min-height: auto;
        padding: 20px 16px;
    }

    .pdp-success-card h4 {
        font-size: 0.9rem;
    }

    .pdp-success-card p {
        font-size: 0.78rem;
    }

    .pdp-enroll-form {
        padding: 30px 0 40px;
    }

    .pdp-enroll-form h2 {
        font-size: 1.3rem;
    }

    .pdp-form-wrapper {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .pdp-form-submit {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .pdp-whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 12px;
        right: 12px;
    }

    .pdp-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .pdp-whatsapp-float::after {
        width: 12px;
        height: 12px;
    }
}

/* ---------- Smooth scrolling ---------- */
html {
    scroll-behavior: smooth;
}

/* ---------- FAQ Category tabs ---------- */
.pdp-faq-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pdp-faq-tab {
    padding: 6px 16px;
    border: 1px solid var(--pdp-gray-200);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pdp-gray-600);
    background: var(--pdp-white);
    cursor: pointer;
    transition: all 0.3s;
}

.pdp-faq-tab.active,
.pdp-faq-tab:hover {
    background: var(--pdp-navy);
    color: var(--pdp-white);
    border-color: var(--pdp-navy);
}
