/* ============================================
   WORKING PLANS PAGE — Premium Strategic Blueprint
   ============================================ */

.wp-page {
    --forest:   #0a2e1a;
    --emerald:  #059669;
    --gold:     #f1c40f;
    --cream:    #f9f6ef;
    --fog:      #e8f0e9;
    --ink:      #0f1c10;
    --white:    #ffffff;
    --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-page {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Open Sans', sans-serif;
}



/* ── ANIMATIONS ── */
.wp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.wp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.wp-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--forest);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}

/* ── SECTIONING ── */
.wp-section { padding: 25px 0; }
.wp-wrap { padding: 0 5%; max-width: 1400px; margin: 0 auto; }

/* ── STATS PANEL ── */
.wp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 25px;
    position: relative;
    z-index: 20;
}
.wp-stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--fog);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(var(--emerald-100) 1px, transparent 1px);
    background-size: 20px 20px;
}
.wp-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--emerald); transform: scaleX(0); transition: 0.5s var(--ease);
}
.wp-stat-card:hover { transform: translateY(-10px); border-color: var(--emerald); }
.wp-stat-card:hover::before { transform: scaleX(1); }

.wp-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--forest);
    display: block;
    margin-bottom: 8px;
}
.wp-stat-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
}

/* ── MANAGEMENT PILLARS ── */
.wp-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.wp-pillar-card {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--fog);
    transition: 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(var(--emerald-100) 1px, transparent 1px);
    background-size: 24px 24px;
}
.wp-pillar-card:hover {
    border-color: var(--emerald);
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}
.wp-pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--forest);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.wp-pillar-card h4 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 12px;
}
.wp-pillar-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── DISTRIBUTION DONUT (Matching forest_cover style) ── */
.wp-dist-module {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.04);
    max-width: 100%;
    box-sizing: border-box;
}
.wp-chart-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}
.wp-donut-svg {
    transform: rotate(-90deg);
}
.wp-donut-seg {
    fill: none;
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s var(--ease);
}
.wp-donut-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.wp-donut-center strong { font-size: 32px; color: var(--forest); }

/* ── BLUEPRINT CARDS ── */
.wp-blueprint-row { margin-bottom: 40px; }
.wp-bp-card {
    background: var(--white);
    border-radius: 32px;
    border: 1px solid var(--fog);
    overflow: hidden;
    display: flex;
}
.wp-bp-sidebar {
    width: 300px;
    background: var(--forest);
    padding: 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wp-bp-body { padding: 50px; flex: 1; }

.wp-meta-item { margin-bottom: 25px; }
.wp-meta-item small { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
.wp-meta-item p { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.4; }

.wp-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.wp-tag {
    background: var(--fog);
    color: var(--forest);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* ── LUNGS OF SHILLONG ── */
.wp-shillong {
    background: var(--forest);
    border-radius: 60px;
    padding: 80px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.wp-shillong h2 { font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1.1; margin-bottom: 30px; }
.wp-lung-list { list-style: none; padding: 0; margin: 0; }
.wp-lung-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 600;
}
.wp-lung-list svg { color: var(--gold); width: 24px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .wp-stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .wp-dist-module { grid-template-columns: 1fr; padding: 40px; }
    .wp-bp-card { flex-direction: column; }
    .wp-bp-sidebar { width: 100%; padding: 40px; }
    .wp-shillong { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 640px) {
    .wp-stats-grid { grid-template-columns: 1fr; }
    .wp-shillong h2 { font-size: 2rem; }
}
