/* ============================================================
   PANCHAYAT WORK — Homepage styles (Rocket-LMS inspired)
   Scope: .pw-home  ·  Font: Montserrat
   Brand: green #078b5e · orange #ffa000 · white · black text
   ============================================================ */

.pw-home, .pw-home * { box-sizing: border-box; }
.pw-home {
    font-family: var(--pw-font);
    color: var(--pw-body-c);
    font-size: 1rem;
    line-height: 1.7;
    background: #fff;
    overflow-x: clip;
}
/* :where() keeps these resets at zero specificity so component rules can size images */
:where(.pw-home) p { margin: 0; }
:where(.pw-home) img { max-width: 100%; border: 0; vertical-align: middle; }
:where(.pw-home) a { color: inherit; }

/* ---------------- Typography ---------------- */
.pw-h1, .pw-h2, .pw-h3, .pw-h4, .pw-h5, .pw-h6 {
    color: var(--pw-ink);
    font-family: var(--pw-font);
    margin: 0;
    font-weight: 800;
}
.pw-h1 { font-size: 3.1rem;  line-height: 1.15; letter-spacing: -.5px; }
.pw-h2 { font-size: 2.25rem; line-height: 1.2;  letter-spacing: -.5px; }
.pw-h3 { font-size: 1.75rem; line-height: 1.3; }
.pw-h4 { font-size: 1.35rem; line-height: 1.35; }
.pw-h5 { font-size: 1.1rem;  line-height: 1.45; font-weight: 700; }
.pw-h6 { font-size: 1rem;    line-height: 1.5;  font-weight: 700; }
.pw-accent { color: var(--pw-green); }
.pw-accent-orange { color: var(--pw-orange); }

.pw-text     { font-size: 1.05rem; color: var(--pw-body-c); margin: 0; }
.pw-text-md  { font-size: .975rem; color: var(--pw-body-c); margin: 0; }
.pw-text-sm  { font-size: .875rem; color: var(--pw-grey);   margin: 0; }

.pw-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--pw-orange-tint);
    color: var(--pw-orange-dark);
    border-radius: 2rem;
    padding: .4rem 1.1rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}
.pw-kicker i { display: inline-flex; transform: translateY(1px); }
.pw-kicker.is-green { background: var(--pw-tint); color: var(--pw-green); }

.pw-section-head {
    max-width: 44rem;
    margin: 0 auto 3.5rem;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 1rem;
}
.pw-section-head.is-left { margin-left: 0; text-align: left; justify-items: start; }

/* Split header row: text left, action button right */
.pw-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.pw-head-row .pw-section-head { margin: 0; }

.pw-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.pw-btn-group.is-center { justify-content: center; }

.pw-btn-link {
    color: var(--pw-green);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: gap .25s, color .25s;
}
.pw-btn-link:hover { gap: .8rem; color: var(--pw-green-dark); }
.pw-btn-link i { display: inline-flex; transform: translateY(1px); }

.pw-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    background: var(--pw-tint-2);
    border: 1px dashed #cfe0d8;
    border-radius: 1rem;
    color: var(--pw-grey);
    font-weight: 500;
}

/* Stars */
.pw-stars { display: inline-flex; gap: .15rem; color: var(--pw-orange); font-size: .8rem; }
.pw-stars i { display: inline-flex; }
.pw-stars i.is-dim { color: #dddfdd; }

/* ============================================================
   HERO
   ============================================================ */
.pw-hero {
    background:
        radial-gradient(46rem 30rem at 110% -10%, rgba(7, 139, 94, .10), transparent 60%),
        radial-gradient(30rem 24rem at -10% 110%, rgba(255, 160, 0, .12), transparent 60%),
        var(--pw-tint-2);
    position: relative;
    overflow: hidden;
}
.pw-hero .pw-section { padding-top: 5rem; padding-bottom: 5.5rem; }
.pw-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.pw-hero-content { position: relative; z-index: 2; display: grid; gap: 1.4rem; justify-items: start; }
.pw-hero-content .pw-text { max-width: 33rem; }

/* Course search */
.pw-hero-search {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    width: 100%;
    max-width: 33rem;
    background: #fff;
    border: 1px solid #dfe6e2;
    border-radius: 1rem;
    padding: .4rem .4rem .4rem 1.2rem;
    box-shadow: 0 16px 40px rgba(9, 36, 25, .08);
}
.pw-hero-search input {
    border: 0; outline: none;
    font-family: var(--pw-font);
    font-size: .95rem;
    color: var(--pw-ink);
    background: transparent;
    min-height: 2.9rem;
    width: 100%;
}
.pw-hero-search input::placeholder { color: #9aa39e; }
.pw-hero-search button {
    border: 0; cursor: pointer;
    background: var(--pw-green);
    color: #fff;
    font-family: var(--pw-font);
    font-weight: 700;
    font-size: .9rem;
    border-radius: .7rem;
    padding: .8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background-color .25s;
}
.pw-hero-search button:hover { background: var(--pw-green-dark); }
.pw-hero-search button i { display: inline-flex; }

/* Trust row */
.pw-hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: .4rem; }
.pw-trust-avatars { display: flex; }
.pw-trust-avatars span {
    width: 2.6rem; height: 2.6rem;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    background: var(--pw-green);
}
.pw-trust-avatars span:first-child { margin-left: 0; }
.pw-trust-avatars span:nth-child(2) { background: var(--pw-orange); color: var(--pw-ink); }
.pw-trust-avatars span:nth-child(3) { background: var(--pw-green-deep); }
.pw-trust-avatars span:nth-child(4) { background: var(--pw-orange-dark); color: #fff; }
.pw-hero-trust p { margin: 0; font-size: .85rem; color: var(--pw-grey); line-height: 1.5; }
.pw-hero-trust strong { color: var(--pw-ink); }

/* Hero media */
.pw-hero-media { position: relative; z-index: 1; display: flex; justify-content: center; }
.pw-hero-img {
    width: 100%;
    max-width: 29rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(9, 36, 25, .18);
}
.pw-hero-media::before {
    /* offset dashed brand frame behind the photo */
    content: "";
    position: absolute;
    inset: -1.1rem -1.1rem 1.1rem 1.1rem;
    border: 2px dashed rgba(7, 139, 94, .4);
    border-radius: 1.8rem;
}
.pw-hero-media::after {
    /* orange dot-grid accent */
    content: "";
    position: absolute;
    width: 7rem; height: 7rem;
    right: -1rem; top: -2rem;
    background-image: radial-gradient(rgba(255, 160, 0, .55) 2px, transparent 2.5px);
    background-size: 1rem 1rem;
    z-index: 1;
}
.pw-float {
    position: absolute;
    z-index: 3;
    max-width: 11rem;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(9, 36, 25, .18));
    animation: pw-float 5s ease-in-out infinite;
}
.pw-float.is-tr { top: -4%; right: -5%; }
.pw-float.is-tl { top: 38%; left: -6%; max-width: 9rem; animation-delay: 1.2s; }
.pw-float.is-bl { bottom: -5%; left: -6%; max-width: 11.5rem; animation-delay: 2.4s; }
@keyframes pw-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Floating chip built in CSS (portal focus, sits over hero image) */
.pw-hero-chip {
    position: absolute;
    z-index: 3;
    bottom: 8%;
    right: -1%;
    background: #fff;
    border-radius: .9rem;
    box-shadow: 0 18px 30px rgba(9, 36, 25, .15);
    padding: .7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--pw-ink);
    animation: pw-float 5s ease-in-out infinite;
    animation-delay: .8s;
}
.pw-hero-chip i {
    width: 2.1rem; height: 2.1rem;
    background: var(--pw-orange-tint);
    color: var(--pw-orange-dark);
    border-radius: .6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ============================================================
   PERKS (4 feature boxes under hero)
   ============================================================ */
.pw-perks .pw-section { padding-top: 5rem; padding-bottom: 2rem; }
.pw-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pw-perk {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    padding: 1.8rem 1.6rem;
    display: grid;
    gap: .9rem;
    align-content: start;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
/* Soft blurred grid-pattern backdrop (fades out from the top of the card) */
.pw-perk::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(7, 139, 94, .14) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(7, 139, 94, .14) 1px, transparent 1px);
    background-size: 20px 30px;
    filter: blur(.6px);
    opacity: .75;
    transition: opacity .3s;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
}
.pw-perk:nth-child(even)::before {
    background-image: linear-gradient(to right, rgba(255, 160, 0, .18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 160, 0, .18) 1px, transparent 1px);
}
.pw-perk > * { position: relative; z-index: 1; }
.pw-perk:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(9, 36, 25, .10);
    border-color: transparent;
}
.pw-perk:hover::before { opacity: 1; }
.pw-perk-icon {
    width: 3.4rem; height: 3.4rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--pw-tint);
    color: var(--pw-green);
}
.pw-perk:nth-child(even) .pw-perk-icon { background: var(--pw-orange-tint); color: var(--pw-orange-dark); }
.pw-perk-icon i { display: inline-flex; }
.pw-perk p { margin: 0; font-size: .875rem; color: var(--pw-grey); }

/* ============================================================
   PORTALS STRIP (trusted-by)
   ============================================================ */
.pw-portals .pw-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pw-brands-head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.pw-brands-head .pw-h6 { color: var(--pw-grey); font-weight: 600; }
.pw-portal-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.pw-portal-chip {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 2.5rem;
    padding: .65rem 1.4rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--pw-ink);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pw-portal-chip:hover { border-color: var(--pw-green); box-shadow: 0 10px 24px rgba(7, 139, 94, .12); transform: translateY(-3px); }
.pw-portal-chip i { display: inline-flex; color: var(--pw-green); font-size: 1.05rem; }
.pw-brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 3.5rem; }
.pw-brands img { max-height: 2.6rem; width: auto; opacity: .65; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.pw-brands img:hover { opacity: 1; filter: none; }
.pw-brands a { display: inline-flex; align-items: center; }
.pw-brands a:hover img { opacity: 1; filter: none; }

/* Auto-scrolling marquee for the logo / portal strip (all devices).
   The track holds two identical copies; translateX(-50%) loops seamlessly. */
.pw-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.pw-marquee-track {
    display: flex;
    width: max-content;
    animation: pw-marquee var(--pw-mq-dur, 28s) linear infinite;
}
.pw-marquee-track:hover { animation-play-state: paused; }
.pw-brands.is-marquee { flex-wrap: nowrap; padding: 0 1.75rem; }
.pw-portal-chips.is-marquee { flex-wrap: nowrap; padding: .35rem .5rem; }
@keyframes pw-marquee {
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .pw-marquee-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
    .pw-marquee-track > [aria-hidden="true"] { display: none; }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.pw-cats { background: var(--pw-tint-2); }
.pw-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pw-cat-card {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    padding: 1.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pw-cat-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(9, 36, 25, .10); border-color: transparent; }
.pw-cat-icon {
    flex: 0 0 auto;
    width: 3.3rem; height: 3.3rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: var(--pw-tint);
    color: var(--pw-green);
    transition: background-color .3s, color .3s;
}
.pw-cat-card:hover .pw-cat-icon { background: var(--pw-green); color: #fff; }
.pw-cat-icon i { display: inline-flex; }
.pw-cat-name { font-weight: 700; color: var(--pw-ink); font-size: .95rem; line-height: 1.4; }
.pw-cat-count { font-size: .8rem; color: var(--pw-grey); font-weight: 500; }

/* ============================================================
   COURSES
   ============================================================ */
.pw-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.pw-course-card {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
}
.pw-course-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(9, 36, 25, .12); border-color: transparent; }
/* Whole-card click: title link stretches to cover the card */
.pw-course-title::after { content: ""; position: absolute; inset: 0; z-index: 1; }
/* Keep genuinely different links (category, author, View Details) above the overlay */
.pw-course-cat, .pw-course-author, .pw-course-bottom .pw-author-name[href] { position: relative; z-index: 2; }
.pw-course-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pw-tint);
}
.pw-course-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.pw-course-card:hover .pw-course-thumb img { transform: scale(1.06); }
.pw-thumb-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--pw-green); font-size: 2.5rem;
}
.pw-course-flag {
    position: absolute;
    top: .9rem; left: .9rem;
    background: var(--pw-orange);
    color: var(--pw-ink);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    border-radius: .5rem;
    padding: .3rem .7rem;
}
.pw-course-flag.is-free { background: var(--pw-green); color: #fff; }
.pw-course-content {
    padding: 1.4rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.1rem;
    flex: 1;
}
.pw-course-cat {
    display: inline-block;
    background: var(--pw-tint);
    color: var(--pw-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    border-radius: .5rem;
    padding: .3rem .7rem;
    text-decoration: none;
    margin-bottom: .7rem;
    transition: background-color .25s, color .25s;
}
.pw-course-cat:hover { background: var(--pw-green); color: #fff; }
.pw-course-title { text-decoration: none; display: block; }
.pw-course-title .pw-h5 { transition: color .25s; }
.pw-course-title:hover .pw-h5 { color: var(--pw-green); }
.pw-course-desc { font-size: .85rem; color: var(--pw-grey); margin-top: .5rem; }
.pw-course-rating {
    display: flex; align-items: center; gap: .4rem;
    margin-top: .7rem;
    font-size: .85rem; font-weight: 700; color: var(--pw-ink);
}
.pw-course-rating .pw-count { color: var(--pw-grey); font-weight: 500; }
.pw-course-meta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: .8rem;
    font-size: .8rem; color: var(--pw-grey); font-weight: 500;
}
.pw-course-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.pw-course-meta i { display: inline-flex; color: var(--pw-green); font-size: .85rem; }
.pw-course-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--pw-line);
    padding-top: 1.1rem;
}
.pw-course-author { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.pw-course-author img, .pw-avatar-ph {
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}
.pw-avatar-ph {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pw-green); color: #fff;
    font-weight: 700; font-size: .95rem;
}
.pw-author-name { font-size: .82rem; font-weight: 700; color: var(--pw-ink); display: block; line-height: 1.3; }
.pw-author-date { font-size: .72rem; color: var(--pw-grey); }
.pw-course-price { font-size: 1.15rem; font-weight: 800; color: var(--pw-green); white-space: nowrap; }
.pw-price-old {
    font-size: .8rem; font-weight: 600;
    color: #a3a8a5;
    text-decoration: line-through;
    margin-left: .45rem;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.pw-stats {
    background:
        radial-gradient(30rem 18rem at 90% -20%, rgba(255, 160, 0, .18), transparent 55%),
        radial-gradient(24rem 16rem at 5% 120%, rgba(255, 255, 255, .10), transparent 60%),
        var(--pw-green);
}
.pw-stats .pw-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.pw-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.pw-stat {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: #fff;
    justify-content: center;
}
.pw-stat-icon {
    flex: 0 0 auto;
    width: 3.6rem; height: 3.6rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}
.pw-stat-icon i { display: inline-flex; }
.pw-stat-num { font-size: 1.9rem; font-weight: 800; line-height: 1.1; color: #fff; }
.pw-stat-label { font-size: .85rem; font-weight: 500; color: #dff0e9; }

/* ============================================================
   WHY US (feature w/ image)
   ============================================================ */
.pw-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.pw-feature-content { display: grid; gap: 1.3rem; justify-items: start; }
.pw-feature-list { display: grid; gap: .9rem; margin-top: .4rem; width: 100%; }
.pw-feature-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: var(--pw-tint-2);
    border: 1px solid var(--pw-line);
    border-radius: .9rem;
    padding: .85rem 1.2rem;
    font-weight: 600;
    color: var(--pw-ink);
    font-size: .95rem;
}
.pw-check {
    flex: 0 0 auto;
    width: 1.7rem; height: 1.7rem;
    border-radius: 50%;
    background: var(--pw-tint);
    color: var(--pw-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}
.pw-check i { display: inline-flex; }
.pw-feature-media { position: relative; display: flex; justify-content: center; }
.pw-feature-img {
    width: 100%;
    max-width: 30rem;
    height: auto;
    border-radius: 1.4rem;
    position: relative;
    z-index: 2;
}
.pw-feature-media::before {
    content: "";
    position: absolute;
    width: 9rem; height: 9rem;
    left: -1.5rem; top: -1.5rem;
    background-image: radial-gradient(rgba(7, 139, 94, .4) 2px, transparent 2.5px);
    background-size: 1rem 1rem;
    z-index: 1;
}
.pw-feature-media::after {
    content: "";
    position: absolute;
    width: 11rem; height: 11rem;
    right: 0; bottom: -2rem;
    background: var(--pw-orange-tint);
    border-radius: 50%;
    z-index: 1;
}
.pw-feature-badge {
    position: absolute;
    z-index: 3;
    left: 0; bottom: 8%;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 18px 36px rgba(9, 36, 25, .16);
    padding: .9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}
.pw-feature-badge i {
    width: 2.6rem; height: 2.6rem;
    border-radius: .8rem;
    background: var(--pw-tint);
    color: var(--pw-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.pw-feature-badge strong { display: block; color: var(--pw-ink); font-size: 1rem; line-height: 1.2; }
.pw-feature-badge small { color: var(--pw-grey); font-size: .75rem; font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.pw-tst { background: var(--pw-tint-2); }
.pw-tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.pw-tst-card {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    padding: 1.9rem 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pw-tst-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(9, 36, 25, .10); border-color: transparent; }
.pw-tst-quote-icon {
    width: 2.8rem; height: 2.8rem;
    border-radius: .8rem;
    background: var(--pw-orange-tint);
    color: var(--pw-orange-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}
.pw-tst-quote-icon i { display: inline-flex; }
.pw-tst-quote { font-size: .95rem; color: var(--pw-body-c); line-height: 1.75; }
.pw-tst-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--pw-line);
    padding-top: 1.2rem;
}
.pw-tst-person { display: flex; align-items: center; gap: .8rem; }
.pw-tst-avatar, .pw-tst-avatar-ph {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}
.pw-tst-avatar-ph {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pw-green); color: #fff;
    font-weight: 700; font-size: 1.1rem;
}
.pw-tst-card:nth-child(2) .pw-tst-avatar-ph { background: var(--pw-orange); color: var(--pw-ink); }
.pw-tst-card:nth-child(3) .pw-tst-avatar-ph { background: var(--pw-green-deep); }
.pw-tst-name { margin: 0; font-weight: 700; color: var(--pw-ink); font-size: .92rem; }
.pw-tst-role { margin: 0; font-size: .78rem; color: var(--pw-grey); font-weight: 500; }

/* ============================================================
   INSTRUCTORS
   ============================================================ */
.pw-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}
.pw-team-card {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    overflow: hidden;
    text-align: center;
    padding: 2rem 1.4rem 1.8rem;
    display: grid;
    gap: 1rem;
    justify-items: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pw-team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(9, 36, 25, .10); border-color: transparent; }
.pw-team-img, .pw-team-img-ph {
    width: 7.5rem; height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pw-tint);
    transition: border-color .3s;
}
.pw-team-card:hover .pw-team-img, .pw-team-card:hover .pw-team-img-ph { border-color: var(--pw-orange-tint); }
.pw-team-img-ph {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pw-green); color: #fff;
    font-weight: 800; font-size: 2.2rem;
}
.pw-team-body { display: grid; gap: .9rem; justify-items: center; }
.pw-team-role { font-size: .82rem; color: var(--pw-grey); font-weight: 500; margin-top: .3rem; }
.pw-team-social { display: flex; gap: .5rem; }
.pw-team-social a {
    width: 2.1rem; height: 2.1rem;
    border-radius: .6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pw-tint);
    color: var(--pw-green);
    font-size: .9rem;
    text-decoration: none;
    transition: background-color .25s, color .25s, transform .25s;
}
.pw-team-social a:hover { background: var(--pw-green); color: #fff; transform: translateY(-2px); }
.pw-team-social a i { display: inline-flex; }

/* ============================================================
   FAQ
   ============================================================ */
.pw-container-sm { width: 100%; max-width: 52rem; margin: 0 auto; }
.pw-faq-list { display: grid; gap: 1rem; }
.pw-faq-item {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.pw-faq-item[open] { border-color: rgba(7, 139, 94, .35); box-shadow: 0 16px 32px rgba(9, 36, 25, .08); }
.pw-faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: var(--pw-ink);
    font-size: .98rem;
    user-select: none;
}
.pw-faq-q::-webkit-details-marker { display: none; }
.pw-faq-icon {
    flex: 0 0 auto;
    width: 2rem; height: 2rem;
    border-radius: .6rem;
    background: var(--pw-tint);
    color: var(--pw-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color .3s, color .3s;
}
.pw-faq-icon::before {
    content: "";
    width: .8rem; height: 2px;
    background: currentColor;
    position: absolute;
    border-radius: 2px;
}
.pw-faq-icon::after {
    content: "";
    width: 2px; height: .8rem;
    background: currentColor;
    position: absolute;
    border-radius: 2px;
    transition: transform .3s;
}
.pw-faq-item[open] .pw-faq-icon { background: var(--pw-green); color: #fff; }
.pw-faq-item[open] .pw-faq-icon::after { transform: scaleY(0); }
.pw-faq-a {
    padding: 0 1.5rem 1.4rem 4.5rem;
    color: var(--pw-body-c);
    font-size: .92rem;
    line-height: 1.75;
}
.pw-faq-bottom {
    margin-top: 3rem;
    text-align: center;
    background: var(--pw-tint-2);
    border: 1px solid var(--pw-line);
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    display: grid;
    gap: .6rem;
    justify-items: center;
}
.pw-faq-bottom .pw-btn-group { margin-top: 1rem; }

/* ============================================================
   BLOG
   ============================================================ */
.pw-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.pw-blog-card {
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 1.1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pw-blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(9, 36, 25, .12); border-color: transparent; }
.pw-blog-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pw-tint);
}
.pw-blog-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s;
}
.pw-blog-card:hover .pw-blog-thumb img { transform: scale(1.06); }
.pw-blog-body { padding: 1.4rem 1.4rem 1.6rem; display: grid; gap: .8rem; align-content: start; }
.pw-blog-meta { display: flex; align-items: center; gap: 1rem; font-size: .78rem; }
.pw-blog-cat {
    background: var(--pw-orange-tint);
    color: var(--pw-orange-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-radius: .5rem;
    padding: .25rem .7rem;
    text-decoration: none;
}
.pw-blog-read { color: var(--pw-grey); font-weight: 500; display: inline-flex; align-items: center; gap: .35rem; }
.pw-blog-read i { display: inline-flex; color: var(--pw-green); }
.pw-blog-title { text-decoration: none; }
.pw-blog-title .pw-h5 { transition: color .25s; }
.pw-blog-title:hover .pw-h5 { color: var(--pw-green); }
.pw-blog-excerpt { font-size: .88rem; color: var(--pw-grey); }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.pw-cta .pw-section { padding-top: 0; padding-bottom: 6.5rem; }
.pw-cta-inner {
    background:
        radial-gradient(26rem 18rem at 100% 0%, rgba(255, 160, 0, .22), transparent 55%),
        radial-gradient(22rem 16rem at 0% 100%, rgba(255, 255, 255, .10), transparent 55%),
        var(--pw-green-deep);
    border-radius: 1.6rem;
    padding: 4.5rem 3rem;
    text-align: center;
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    position: relative;
    overflow: hidden;
}
.pw-cta-inner .pw-h2, .pw-cta-inner .pw-text { color: #fff; }
.pw-cta-inner .pw-text { max-width: 34rem; color: #d7ebe2; }
.pw-cta-inner .pw-form { margin-top: 1rem; width: 100%; }
.pw-cta-inner .pw-input { background: #fff; border-color: #fff; }
.pw-cta-inner .pw-btn { background: var(--pw-orange); border-color: var(--pw-orange); color: var(--pw-ink); }
.pw-cta-inner .pw-btn:hover { background: var(--pw-orange-dark); border-color: var(--pw-orange-dark); }
.pw-cta-inner .pw-form-msg.is-ok { color: #9fe8c9; }
.pw-cta-inner .pw-form-msg.is-err { color: #ffc9c9; }
.pw-cta-inner .pw-contact-field label { color: #d7ebe2; }
.pw-cta-inner .pw-contact-field label span { color: var(--pw-orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .pw-h1 { font-size: 2.7rem; }
    .pw-perks-grid, .pw-cats-grid, .pw-team-grid { grid-template-columns: repeat(2, 1fr); }
    .pw-courses-grid, .pw-blog-grid, .pw-tst-grid { grid-template-columns: repeat(2, 1fr); }
    .pw-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .pw-h1 { font-size: 2.4rem; }
    .pw-h2 { font-size: 1.9rem; }
    .pw-hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .pw-hero-content { justify-items: center; text-align: center; }
    .pw-hero-content .pw-text { max-width: 38rem; }
    .pw-hero-search { max-width: 34rem; }
    .pw-hero .pw-section { padding-top: 3.5rem; padding-bottom: 4rem; }
    .pw-feature-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .pw-head-row { flex-direction: column; align-items: flex-start; }
    .pw-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

@media (max-width: 640px) {
    .pw-home { font-size: .95rem; }
    .pw-h1 { font-size: 1.9rem; }
    .pw-h2 { font-size: 1.6rem; }
    .pw-perks-grid, .pw-cats-grid, .pw-team-grid,
    .pw-courses-grid, .pw-blog-grid, .pw-tst-grid,
    .pw-stats-grid { grid-template-columns: 1fr; }
    .pw-stat { justify-content: flex-start; }
    .pw-hero-search { grid-template-columns: 1fr; padding: .6rem; gap: .5rem; }
    .pw-hero-search input { padding-left: .6rem; }
    .pw-hero-search button { justify-content: center; }
    .pw-float { max-width: 8rem; }
    .pw-float.is-tl { display: none; }
    .pw-hero-trust { flex-direction: column; text-align: center; }
    .pw-faq-a { padding-left: 1.5rem; }
    .pw-cta-inner { padding: 3rem 1.5rem; }
    .pw-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
