/**
 * Samarpit — Premium homepage (mobile-first).
 * Requires body.samarpit-theme + premium-site.css for design tokens.
 * Prefix: ph- (premium home). Loaded only on index.html.
 */

.ph-section {
    padding: var(--ph-space-section, clamp(2.25rem, 5vw, 4rem)) 0;
    position: relative;
}

.ph-section--gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f9 45%, #f5f7fb 100%);
}

.ph-section--dark {
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(232, 163, 23, 0.12), transparent),
        linear-gradient(165deg, var(--ph-navy) 0%, var(--ph-navy-mid) 55%, #0a1633 100%);
    color: #e8eef8;
}

.ph-section--dark .ph-eyebrow {
    color: var(--ph-gold-soft);
    border-color: rgba(232, 163, 23, 0.45);
    background: rgba(232, 163, 23, 0.12);
}

.ph-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ph-navy-mid);
    background: rgba(11, 31, 77, 0.06);
    border: 1px solid rgba(11, 31, 77, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* —— Hero —— */
.ph-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem);
    background: linear-gradient(135deg, #050d1f 0%, var(--ph-navy-mid) 42%, #0d2248 100%);
    color: #f1f5ff;
    isolation: isolate;
}

.ph-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 70% 0%, rgba(232, 163, 23, 0.15), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.ph-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: center;
}

@media (min-width: 900px) {
    .ph-hero__inner {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.ph-hero h1 {
    font-family: var(--ph-font-display);
    font-size: clamp(1.85rem, 4.2vw, 3.15rem);
    line-height: 1.12;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.ph-hero__lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    color: rgba(226, 232, 255, 0.92);
    max-width: 36rem;
    margin: 0 0 1.5rem;
}

.ph-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 420px) {
    .ph-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .ph-hero__ctas .ph-btn {
        width: 100%;
        text-align: center;
    }
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.ph-btn:active {
    transform: scale(0.98);
}

.ph-btn--primary {
    background: linear-gradient(135deg, var(--ph-gold) 0%, #c9890a 100%);
    color: #1a1204;
    box-shadow: 0 8px 28px rgba(232, 163, 23, 0.35);
}

.ph-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(232, 163, 23, 0.45);
}

.ph-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.ph-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.ph-btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.ph-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.ph-btn--soon,
.ph-btn--soon:disabled {
    background: rgba(11, 31, 77, 0.07);
    color: var(--ph-muted);
    border: 1px solid rgba(11, 31, 77, 0.12);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.ph-btn--soon:hover,
.ph-btn--soon:disabled:hover {
    transform: none;
    filter: none;
}

.ph-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 0.25rem;
}

.ph-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
}

.ph-trust-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.9;
}

.ph-hero__collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, minmax(0, 52px));
    gap: 0.5rem;
    max-width: 520px;
    margin-inline: auto;
}

@media (min-width: 480px) {
    .ph-hero__collage {
        grid-template-rows: repeat(4, minmax(0, 64px));
    }
}

@media (min-width: 900px) {
    .ph-hero__collage {
        margin-inline: 0;
        max-width: none;
    }
}

.ph-hero__img {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    position: relative;
}

.ph-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ph-hero__img--a {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.ph-hero__img--b {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
}

.ph-hero__img--c {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
}

.ph-hero__img--d {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.ph-hero__img--e {
    grid-column: 3 / 7;
    grid-row: 3 / 5;
}

.ph-hero__cert {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    left: auto;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ph-navy);
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 9rem;
    line-height: 1.25;
}

/* Hero: entrance + subtle glow (keyframes sp-fade-up in premium-site.css) */
@media (prefers-reduced-motion: no-preference) {
    .samarpit-theme.home-page .ph-hero::before {
        animation: sp-soft-glow 8s ease-in-out infinite alternate;
    }

    .samarpit-theme.home-page .ph-hero .ph-eyebrow {
        animation: sp-fade-up 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero h1 {
        animation: sp-fade-up 0.68s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__lead {
        animation: sp-fade-up 0.68s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__ctas {
        animation: sp-fade-up 0.68s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-trust-row {
        animation: sp-fade-up 0.68s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__collage {
        animation: sp-fade-up 0.78s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__img--a {
        animation: sp-fade-up 0.55s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__img--b {
        animation: sp-fade-up 0.55s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__img--c {
        animation: sp-fade-up 0.55s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__img--d {
        animation: sp-fade-up 0.55s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .samarpit-theme.home-page .ph-hero .ph-hero__img--e {
        animation: sp-fade-up 0.55s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
}

/* —— Stats —— */
.ph-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .ph-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .ph-stats {
        grid-template-columns: repeat(6, 1fr);
    }
}

.ph-stat-card {
    background: var(--ph-white);
    border-radius: var(--ph-radius-lg);
    padding: 1.15rem 1rem;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ph-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ph-shadow-hover);
}

.ph-stat-card__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.65rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 163, 23, 0.2), rgba(11, 31, 77, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-navy-mid);
}

.ph-stat-card__num {
    font-family: var(--ph-font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--ph-navy-mid);
    line-height: 1.1;
}

.ph-stat-card__label {
    font-size: 0.78rem;
    color: var(--ph-muted);
    margin-top: 0.35rem;
    line-height: 1.35;
}

/* —— Section headers —— */
.ph-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.ph-head h2 {
    font-family: var(--ph-font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    margin: 0 0 0.75rem;
    color: var(--ph-text);
    line-height: 1.2;
}

.ph-section--dark .ph-head h2 {
    color: #fff;
}

.ph-head p {
    margin: 0;
    color: var(--ph-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

.ph-section--dark .ph-head p {
    color: rgba(226, 232, 255, 0.85);
}

/* —— Testimonials carousel —— */
.ph-carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.ph-carousel__track-wrap {
    overflow: hidden;
    border-radius: var(--ph-radius-xl);
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
    background: var(--ph-white);
}

.ph-carousel__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.ph-slide {
    flex: 0 0 100%;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-sizing: border-box;
}

.ph-slide__quote {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: var(--ph-text);
    margin: 0 0 1.25rem;
    font-style: italic;
}

.ph-slide__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ph-slide__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ph-gold);
}

.ph-slide__name {
    font-weight: 700;
    color: var(--ph-navy-mid);
}

.ph-slide__role {
    font-size: 0.85rem;
    color: var(--ph-muted);
}

.ph-slide__stars {
    color: var(--ph-gold);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.ph-carousel__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.ph-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 77, 0.15);
    background: var(--ph-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.ph-carousel__btn:hover {
    background: rgba(232, 163, 23, 0.12);
    border-color: var(--ph-gold);
}

.ph-carousel__dots {
    display: flex;
    gap: 0.35rem;
}

.ph-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.ph-carousel__dot[aria-selected="true"] {
    background: var(--ph-navy-mid);
    transform: scale(1.2);
}

/* —— Program cards —— */
.ph-program-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .ph-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .ph-program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ph-program-card {
    background: var(--ph-white);
    border-radius: var(--ph-radius-lg);
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ph-program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ph-gold), var(--ph-navy-mid));
    opacity: 0.9;
}

.ph-program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ph-shadow-hover);
}

.ph-program-card h3 {
    margin: 0.5rem 0 0.65rem;
    font-size: 1.15rem;
    color: var(--ph-navy-mid);
}

.ph-program-card p {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--ph-muted);
    flex: 1;
}

.ph-program-card__meta {
    font-size: 0.82rem;
    color: var(--ph-navy-soft);
    margin-bottom: 0.75rem;
}

.ph-program-card .ph-btn {
    width: 100%;
    margin-top: auto;
}

/* —— Why grid —— */
.ph-why-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .ph-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .ph-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ph-why-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--ph-radius-lg);
    padding: 1.35rem 1.15rem;
    transition: background 0.2s, transform 0.2s;
}

.ph-why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.ph-why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 163, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: var(--ph-gold-soft);
}

.ph-why-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #fff;
}

.ph-why-item p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(226, 232, 255, 0.82);
    line-height: 1.5;
}

/* —— Gallery —— */
.ph-gallery {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
    .ph-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 120px;
    }
}

.ph-gallery__item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    box-shadow: var(--ph-shadow);
}

@media (min-width: 700px) {
    .ph-gallery__item--tall {
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .ph-gallery__item--wide {
        grid-column: span 2;
    }
}

.ph-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ph-gallery__item:hover img {
    transform: scale(1.06);
}

/* —— Trainers —— */
.ph-trainer-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.ph-trainer-grid--text-only {
    max-width: 40rem;
    margin-inline: auto;
}

.ph-trainer-grid--text-only .ph-trainer-copy {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--ph-radius-xl);
    border: 1px solid rgba(11, 31, 77, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--ph-shadow);
}

@media (min-width: 800px) {
    .ph-trainer-grid:not(.ph-trainer-grid--text-only) {
        grid-template-columns: 280px 1fr;
    }
}

.ph-trainer-photo {
    border-radius: var(--ph-radius-xl);
    overflow: hidden;
    border: 3px solid rgba(232, 163, 23, 0.5);
    box-shadow: var(--ph-shadow);
}

.ph-trainer-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ph-trainer-copy h3 {
    font-family: var(--ph-font-display);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--ph-navy-mid);
}

.ph-trainer-copy .ph-role {
    font-weight: 600;
    color: var(--ph-gold);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ph-trainer-copy p {
    color: var(--ph-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}

/* —— Certificate —— */
.ph-cert-wrap {
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--ph-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(11, 31, 77, 0.1);
    box-shadow: var(--ph-shadow-hover);
    background: var(--ph-white);
}

.ph-cert-wrap img {
    display: block;
    width: 100%;
}

.ph-cert-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--ph-muted);
}

/* —— Social proof strip —— */
.ph-proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 1.25rem;
    background: var(--ph-white);
    border-radius: var(--ph-radius-lg);
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
}

.ph-proof-item {
    text-align: center;
    min-width: 100px;
}

.ph-proof-item strong {
    display: block;
    color: var(--ph-navy-mid);
    font-size: 0.95rem;
}

.ph-proof-item span {
    font-size: 0.78rem;
    color: var(--ph-muted);
}

/* —— FAQ —— */
.ph-faq {
    max-width: 720px;
    margin: 0 auto;
}

.ph-faq details {
    background: var(--ph-white);
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 42, 74, 0.05);
}

.ph-faq summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: var(--ph-navy-mid);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ph-faq summary::-webkit-details-marker {
    display: none;
}

.ph-faq summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--ph-gold);
    font-weight: 800;
}

.ph-faq details[open] summary::after {
    content: "−";
}

.ph-faq details div {
    padding: 0 1.15rem 1.1rem;
    color: var(--ph-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* —— Final CTA —— */
.ph-final-cta {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem);
    border-radius: var(--ph-radius-xl);
    background: linear-gradient(135deg, var(--ph-navy) 0%, var(--ph-navy-mid) 50%, #152d5c 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--ph-shadow-hover);
}

.ph-final-cta h2 {
    font-family: var(--ph-font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    margin: 0 0 0.75rem;
}

.ph-final-cta p {
    margin: 0 auto 1.5rem;
    max-width: 32rem;
    color: rgba(226, 232, 255, 0.9);
    line-height: 1.6;
}

.ph-final-cta__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

/* —— About snapshot (home) —— */
.ph-about-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .ph-about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ph-about-card {
    background: var(--ph-white);
    border-radius: var(--ph-radius-xl);
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    height: 100%;
    box-sizing: border-box;
}

.ph-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ph-shadow-hover);
}

.ph-about-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, rgba(232, 163, 23, 0.22), rgba(11, 31, 77, 0.08));
    color: var(--ph-navy-mid);
}

.ph-about-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
    color: var(--ph-navy-mid);
}

.ph-about-card p {
    margin: 0;
    color: var(--ph-muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.ph-about-cta-line {
    text-align: center;
    margin-top: 2rem;
}

/* —— Initiatives (home) —— */
.ph-initiatives-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .ph-initiatives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ph-initiative-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-radius: var(--ph-radius-xl);
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ph-initiative-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ph-shadow-hover);
}

.ph-initiative-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ph-navy-mid);
    background: rgba(232, 163, 23, 0.2);
    border: 1px solid rgba(232, 163, 23, 0.45);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.ph-initiative-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.12rem;
    color: var(--ph-navy-mid);
    line-height: 1.25;
}

.ph-initiative-card p {
    margin: 0 0 1.15rem;
    color: var(--ph-muted);
    line-height: 1.55;
    font-size: 0.92rem;
    flex: 1 1 auto;
}

.ph-initiative-card .ph-btn {
    align-self: flex-start;
}

/* —— Home contact —— */
.ph-home-contact {
    background: linear-gradient(180deg, #f0f4fa 0%, #fafbfd 100%);
    border-block: 1px solid rgba(11, 31, 77, 0.06);
}

.ph-home-contact__grid {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 900px) {
    .ph-home-contact__grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 2rem;
    }
}

.ph-home-contact-panel {
    background: var(--ph-white);
    border-radius: var(--ph-radius-xl);
    padding: clamp(1.35rem, 3vw, 1.75rem);
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--ph-shadow);
}

.ph-home-contact-form-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: var(--ph-navy-mid);
}

.ph-home-contact .form-grid label {
    font-weight: 600;
    color: var(--ph-navy-mid);
}

.ph-home-contact-status {
    margin: 0.75rem 0 0;
    min-height: 1.25em;
    font-size: 0.9rem;
}

.ph-home-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ph-home-contact-card {
    background: var(--ph-white);
    border-radius: var(--ph-radius-lg);
    padding: 1.25rem 1.15rem;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: 0 8px 28px rgba(6, 18, 41, 0.06);
}

.ph-home-contact-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: var(--ph-navy-mid);
}

.ph-home-contact-card p {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
    color: var(--ph-muted);
    line-height: 1.5;
}

.ph-home-contact-social-lead {
    margin-bottom: 0.75rem !important;
}

.ph-home-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ph-home-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(11, 31, 77, 0.06);
    color: var(--ph-navy-mid);
    border: 1px solid rgba(11, 31, 77, 0.1);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ph-home-social a:hover,
.ph-home-social a:focus-visible {
    background: rgba(232, 163, 23, 0.18);
    border-color: rgba(232, 163, 23, 0.45);
    color: var(--ph-navy);
    transform: translateY(-2px);
    outline: none;
}

/* —— Featured PDP strip (kept) —— */
.ph-featured-pdp {
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
    border-block: 1px solid rgba(11, 31, 77, 0.06);
}

.ph-featured-pdp .promo-ad-link {
    max-width: 900px;
    margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
    .samarpit-theme.home-page .ph-hero::before,
    .samarpit-theme.home-page .ph-hero .ph-eyebrow,
    .samarpit-theme.home-page .ph-hero h1,
    .samarpit-theme.home-page .ph-hero .ph-hero__lead,
    .samarpit-theme.home-page .ph-hero .ph-hero__ctas,
    .samarpit-theme.home-page .ph-hero .ph-trust-row,
    .samarpit-theme.home-page .ph-hero .ph-hero__collage,
    .samarpit-theme.home-page .ph-hero .ph-hero__img {
        animation: none !important;
    }

    .ph-carousel__track,
    .ph-program-card,
    .ph-stat-card,
    .ph-gallery__item img,
    .ph-btn,
    .ph-about-card,
    .ph-initiative-card,
    .ph-home-social a {
        transition: none !important;
    }

    .ph-program-card:hover,
    .ph-stat-card:hover,
    .ph-gallery__item:hover img,
    .ph-btn:hover,
    .ph-about-card:hover,
    .ph-initiative-card:hover,
    .ph-home-social a:hover {
        transform: none !important;
    }
}
