
.campaign-ticker {
    position: sticky;
    top: 0;
    z-index: 101;
    background: var(--green-dark);
    color: var(--white);
    padding: 9px 0;
   
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 42s linear infinite;
    white-space: nowrap;
    width: max-content;
}

    .ticker-track span {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .ticker-track .pulse {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--saffron);
        box-shadow: 0 0 0 0 var(--saffron);
        animation: ticker-pulse 1.6s ease-out infinite;
    }

    .ticker-track .star {
        color: var(--saffron);
    }

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes ticker-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224,123,57,0.6);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(224,123,57,0);
    }
}


nav.site-nav {
    top: 33px !important;
}


.ctp-hero {
    padding: 50px 80px 50px;
    background-image: url('../img/banner.png');
    color: white;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .ctp-hero::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -100px;
        width: 520px;
        height: 520px;
     
        border-radius: 50%;
      
    }

    .ctp-hero::after {
        content: '🌳';
        position: absolute;
        bottom: -100px;
        left: 4%;
        font-size: 320px;
        opacity: 0.045;
        transform: rotate(-10deg);
        pointer-events: none;
    }

.ctp-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ctp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224,123,57,0.18);
    border: 1px solid rgba(224,123,57,0.45);
    color: var(--saffron);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

    .ctp-eyebrow .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--saffron);
        box-shadow: 0 0 0 0 var(--saffron);
        animation: ticker-pulse 1.6s ease-out infinite;
    }

.ctp-hero h1 {
 
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 900;
    line-height: 1.02;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

    .ctp-hero h1 em {
        color: var(--saffron);
        font-style: normal;
    }

    .ctp-hero h1 .italic-script {
       
        color: var(--saffron);
        font-weight: 700;
    }

.ctp-sub {
  
   
    font-size: 20px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 22px;
    letter-spacing: -0.005em;
}

.ctp-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 580px;
}

.ctp-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ctp-hero .btn-primary {
    background: var(--saffron);
}

    .ctp-hero .btn-primary:hover {
        background: var(--saffron-dark) !important;
    }

/* Hero right-side card */
.ctp-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 36px 32px;
}

    .ctp-hero-card .lbl {
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--saffron);
        font-weight: 700;
        margin-bottom: 14px;
        display: block;
    }

    .ctp-hero-card h3 {
      
        font-size: 22px;
        font-weight: 700;
        color: white;
        margin-bottom: 24px;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

.progress-track {
    height: 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--saffron) 0%, #FFB17A 100%);
    border-radius: 100px;
    width: 23.5%;
    position: relative;
    animation: progress-grow 2.4s cubic-bezier(0.2,0.65,0.3,1) forwards;
}

@keyframes progress-grow {
    from {
        width: 0;
    }

    to {
        width: 23.5%;
    }
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: shimmer 2.4s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}

    .progress-meta .live {
       
        color: var(--saffron);
        font-weight: 700;
        font-size: 19px;
    }

.countdown-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255,255,255,0.18);
}

.countdown-tile {
    text-align: center;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px 8px;
}

    .countdown-tile .n {
      
        font-size: 32px;
        font-weight: 900;
        color: white;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .countdown-tile .l {
        font-size: 10.5px;
        color: rgba(255,255,255,0.6);
        margin-top: 6px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

/* One-line manifesto */
.ctp-oneline {
    background: var(--cream);
    padding: 40px 80px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

    .ctp-oneline h2 {
       
        font-size: clamp(26px, 3.2vw, 32px);
        line-height: 1.2;
        color: var(--charcoal);
        font-weight: 700;
        max-width: 1100px;
        margin: 0 auto;
        letter-spacing: -0.01em;
    }

        .ctp-oneline h2 em {
            color: var(--saffron);
            font-style: normal;
            font-weight: 900;
        }


.three-init-section {
    padding: 60px 80px;
    background: var(--white);
}

.ti-wrap {
    max-width: 1320px;
    margin: 0 auto;
}

.ti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.ti-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .ti-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .ti-card .ti-top {
        height: 240px;
        display: grid;
        place-items: center;
        font-size: 56px;
        background: var(--saffron-light);
        position: relative;
    }

    .ti-card.tone-plastic .ti-top {
        background: #D5ECE9;
    }

    .ti-card.tone-sustain .ti-top {
        background: var(--purple-light);
    }

    .ti-card .ti-body {
        padding: 28px 30px 32px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .ti-card .ti-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--saffron);
        margin-bottom: 14px;
    }

    .ti-card.tone-plastic .ti-tag {
        color: rgb(29 93 60);
    }

    .ti-card.tone-sustain .ti-tag {
        color: #51280C;
    }

    .ti-card h3 {
        
        font-size: 24px;
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 14px;
        letter-spacing: -0.01em;
        line-height: 1.15;
    }

        .ti-card h3 em {
            color: var(--saffron);
            font-style: italic;
            font-weight: 800;
        }

    .ti-card.tone-plastic h3 em {
        color: rgb(29 93 60);
    }

    .ti-card.tone-sustain h3 em {
        color: #51280C;
    }

    .ti-card p {
        font-size: 14.5px;
        color: var(--text-muted);
        line-height: 1.65;
        margin-bottom: 22px;
        flex-grow: 1;
    }

    .ti-card .ti-link {
        align-self: flex-start;
        color: var(--saffron);
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-bottom: 2px solid var(--saffron-light);
        padding-bottom: 4px;
    }

    .ti-card.tone-plastic .ti-link {
        color: rgb(29 93 60);
        border-color: rgb(190 208 199);
    }

    .ti-card.tone-sustain .ti-link {
        color: #51280C;
        border-color: #c0a491;
    }

    .ti-card .ti-link::after {
        content: '→';
        transition: transform 0.2s;
    }

    .ti-card:hover .ti-link::after {
        transform: translateX(4px);
    }
.ctp-states {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.ctp-state-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 22px;
    transition: all 0.25s;
    position: relative;
}

    .ctp-state-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.06);
        border-color: var(--saffron);
    }

    .ctp-state-card.is-new {
        background: linear-gradient(135deg, var(--saffron-light) 0%, #fdebd6 100%);
        border-color: var(--saffron);
    }

        .ctp-state-card.is-new .new-pill {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--saffron);
            color: white;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 4px 10px;
            border-radius: 100px;
            text-transform: uppercase;
        }

    .ctp-state-card .count {
    
        font-size: 36px;
        font-weight: 900;
        color: var(--charcoal);
        line-height: 1;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    .ctp-state-card.is-new .count {
        color: var(--saffron-dark);
    }

    .ctp-state-card .count .plus {
        color: var(--saffron);
    }

    .ctp-state-card h4 {
        
        font-size: 18px;
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 6px;
        letter-spacing: -0.01em;
    }

    .ctp-state-card .districts {
        font-size: 12.5px;
        color: var(--text-muted);
        line-height: 1.5;
    }


.plant-section {
    background: var(--cream);
    padding: 60px 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.plant-grid {
    max-width: 1180px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
}

.plant-info {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: sticky;
    top: 110px;
}

    .plant-info .info-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--saffron);
        margin-bottom: 14px;
    }

    .plant-info h3 {
       
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 18px;
        color: var(--charcoal);
        letter-spacing: -0.01em;
        line-height: 1.2;
    }

        .plant-info h3 em {
            color: var(--saffron);
            font-style: italic;
        }

    .plant-info p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 22px;
    }

.info-perks {
    list-style: none;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

    .info-perks li {
        padding: 10px 0 10px 32px;
        position: relative;
        font-size: 14.5px;
        color: var(--charcoal);
        line-height: 1.5;
    }

        .info-perks li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 11px;
            width: 22px;
            height: 22px;
            background: var(--saffron-light);
            color: var(--saffron-dark);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 12px;
            font-weight: 700;
        }

/* Live counter band */
.ctp-live-band {
    background: rgb(46, 73, 55);
    color: white;
    padding: 64px 80px;
    border-bottom: 1px solid var(--charcoal);
}

.live-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
}

.live-row-head {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: 1 / -1;
}

    .live-row-head .pulse {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--saffron);
        box-shadow: 0 0 0 0 var(--saffron);
        animation: ticker-pulse 1.6s ease-out infinite;
    }

.big-num {
 
    font-size: clamp(56px, 8vw, 90px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: white;
}

    .big-num em {
        color: var(--saffron);
        font-style: normal;
    }

    .big-num .total {
        color: rgba(255,255,255,0.4);
        font-size: 0.5em;
        font-weight: 400;
    }

.big-label {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    line-height: 1.5;
    max-width: 320px;
}

.sub-num {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 32px;
}

    .sub-num .v {
        font-size: 90px;
        font-weight: 900;
        color: var(--saffron);
        line-height: 1;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    .sub-num .l {
        font-size: 12px;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        line-height: 1.5;
    }


.ctp-process {
    padding: 60px 80px;
    background: var(--white);
}


.plastic-block {
    background: linear-gradient(135deg, #305C23 0%, #5f9c4c 100%);
    color: white;
    padding: 56px 48px;
    border-radius: 24px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

    .plastic-block::after {
        content: '🚫';
        position: absolute;
        bottom: -50px;
        right: -40px;
        font-size: 240px;
        opacity: 0.06;
        transform: rotate(-12deg);
    }

.plastic-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .plastic-grid .pb-eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--saffron);
        font-weight: 700;
        margin-bottom: 14px;
    }

    .plastic-grid h3 {
     
        font-size: clamp(28px, 3.4vw, 40px);
        font-weight: 700;
        margin-bottom: 14px;
        color: white;
        letter-spacing: -0.015em;
        line-height: 1.15;
    }

        .plastic-grid h3 em {
            color: var(--saffron);
            font-style: italic;
            font-weight: 800;
        }

    .plastic-grid p {
        font-size: 15.5px;
        line-height: 1.65;
        color: rgba(255,255,255,0.85);
        margin-bottom: 28px;
        max-width: 460px;
        text-align:start;
    }

    .plastic-grid .btn-row {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

        .plastic-grid .btn-row a {
            padding: 12px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 100px;
            transition: all 0.2s;
        }

            .plastic-grid .btn-row a:first-child {
                background: var(--saffron);
                color: white;
            }

                .plastic-grid .btn-row a:first-child:hover {
                    background: var(--saffron-dark);
                    transform: translateY(-2px);
                }

            .plastic-grid .btn-row a.alt {
                background: transparent;
                border: 1.5px solid rgba(255,255,255,0.4);
                color: white;
            }

                .plastic-grid .btn-row a.alt:hover {
                    border-color: white;
                    background: rgba(255,255,255,0.1);
                }

.pledge-num-block {
    text-align: center;
}

.pledge-num {
  
    font-size: clamp(56px, 7vw, 110px);
    font-weight: 900;
    color: var(--saffron);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pledge-num-block .lbl {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.sustain-block {
    background: #fae8d8;
    color: #e07b39;
    padding: 56px 48px;
    border: 1px solid;
    border-radius: 24px;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

    .sustain-block::after {
        content: '🎓';
        position: absolute;
        top: -40px;
        right: -20px;
        font-size: 220px;
        opacity: 0.06;
        transform: rotate(6deg);
    }

.sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .sustain-grid .pb-eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--saffron);
        font-weight: 700;
        margin-bottom: 14px;
    }

    .sustain-grid h3 {
        font-size: clamp(28px, 3.4vw, 40px);
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--charcoal);
        letter-spacing: -0.015em;
        line-height: 1.15;
    }

        .sustain-grid h3 em {
            color: var(--saffron);
            font-style: italic;
            font-weight: 800;
        }

    .sustain-grid p {
        font-size: 15.5px;
        line-height: 1.65;
        color: var(--charcoal);
        margin-bottom: 24px;
        text-align:start;
    }

    .sustain-grid .btn-saff {
        display: inline-flex;
        background: var(--saffron);
        color: white;
        padding: 14px 24px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.2s;
    }

        .sustain-grid .btn-saff:hover {
            background: var(--saffron-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(224,123,57,0.4);
        }

.module-list {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 26px;
}

    .module-list h5 {
        font-size: 17px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--saffron);
        margin-bottom: 16px;
        font-weight: 700;
    }

    .module-list ol {
        padding: 0;
        margin: 0;
        list-style: none;
        counter-reset: m;
    }

        .module-list ol li {
            counter-increment: m;
            padding: 9px 0 9px 32px;
            position: relative;
            font-size: 17px;
            color: var(--charcoal);
            
            line-height: 1.4;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }

            .module-list ol li:last-child {
                border-bottom: none;
            }

            .module-list ol li::before {
                content: counter(m, decimal-leading-zero);
                position: absolute;
                left: 0;
                top: 9px;
                
                font-size: 13px;
                color: var(--saffron);
                font-weight: 700;
            }


.ctp-section-head {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 0px;
}

    .ctp-section-head .section-label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--saffron);
        margin-bottom: 16px;
    }

    .ctp-section-head h2 {
    
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 700;
        color: var(--charcoal);
        line-height: 1.1;
        margin-bottom: 18px;
        letter-spacing: -0.015em;
    }

        .ctp-section-head h2 em {
            color: var(--saffron);
            
        }

    .ctp-section-head p {
        font-size: 17px;
        color: var(--text-muted);
        line-height: 1.7;
    }


.ctp-final-cta {
    background: var(--saffron);
    padding: 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .ctp-final-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
    }

    .ctp-final-cta::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(0,0,0,0.08);
    }

    .ctp-final-cta h2 {
     
        font-size: clamp(40px, 6vw, 50px);
        color: white;
        font-weight: 900;
        line-height: 1.05;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        letter-spacing: -0.02em;
    }

        .ctp-final-cta h2 em {
            color: white;
            
            font-weight: 700;
        }

    .ctp-final-cta p {
        
       
        font-size: 16px;
        color: rgba(255,255,255,0.92);
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .ctp-final-cta .btn-row {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

@media (max-width: 1024px) {
    .ctp-hero {
        padding: 110px 24px 70px;
    }

    .ctp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ctp-oneline {
        padding: 48px 24px;
    }

    .three-init-section, .plant-section, .ctp-process, .ctp-final-cta {
        padding: 70px 24px;
    }

    .ctp-live-band {
        padding: 56px 24px;
    }

    .live-band-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sub-num {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-top: 24px;
    }

    .ti-grid {
        grid-template-columns: 1fr;
    }

    .ctp-states {
        grid-template-columns: repeat(2, 1fr);
    }

    .plant-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plant-info {
        position: static;
    }

    .plastic-grid, .sustain-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pledge-num-block {
        text-align: left;
    }

    .plastic-block, .sustain-block {
        padding: 36px 28px;
    }
}

@media (max-width: 640px) {
    .ctp-states {
        grid-template-columns: 1fr;
    }

    .countdown-row {
        grid-template-columns: 1fr 1fr;
    }
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
  --saffron:        #E07B39;
  --saffron-light:  #FAE8D8;
  --saffron-dark:   #A0501C;
  --green:          #2E7D52;
  --green-light:    #D9F0E5;
  --green-dark:     #1A4F34;
  --cream:          #FDF8F3;
  --charcoal:       #1A1A1A;
  --text:           #2D2D2D;
  --text-muted:     #6B6B6B;
  --white:          #ffffff;
  --border:         #E8E0D5;
  --blue:           #1B4E8F;
  --blue-light:     #E0EAFB;
  --pink:           #C05080;
  --pink-light:     #FCE8F0;
  --purple:         #B8A0E8;
  --purple-light:   #EDE8FF;

  --serif:          'Playfair Display', serif;
  --sans:           'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button {  cursor: pointer; }

::selection { background: var(--saffron); color: white; }


.page-banner {
  padding-top: 132px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-banner.theme-tech       { background: linear-gradient(135deg, var(--blue-light) 0%, var(--cream) 70%); }
.page-banner.theme-adopt      { background: linear-gradient(135deg, var(--saffron-light) 0%, var(--cream) 70%); }
.page-banner.theme-guardians  { background: linear-gradient(135deg, #FFF0E0 0%, var(--cream) 70%); }
.page-banner.theme-cool       { background: linear-gradient(135deg, var(--green-light) 0%, var(--cream) 70%); }
.page-banner.theme-pukaar     { background: linear-gradient(135deg, #D5ECE9 0%, var(--cream) 70%); }
.page-banner.theme-women      { background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 70%); }
.page-banner.theme-skill      { background: linear-gradient(135deg, var(--purple-light) 0%, var(--cream) 70%); }

.banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.banner-inner.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.banner-inner.center .breadcrumb { justify-content: center; }
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb .sep { color: var(--border); }

.banner-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron-light); color: var(--saffron-dark);
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px; width: fit-content;
}
.banner-inner.center .banner-pill { margin-left: auto; margin-right: auto; }
.banner-pill span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron); display: block;
}

.banner-icon-block {
  width: 64px; height: 64px;
  background: var(--saffron);
  color: white;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(224,123,57,0.25);
}
.banner-inner.center .banner-icon-block { margin-left: auto; margin-right: auto; }

.page-banner h1 {

  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.page-banner h1 em {
  color: var(--saffron);
  font-style: normal;
}

.page-banner .lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}
.banner-inner.center .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.banner-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.banner-inner.center .banner-stats { justify-content: center; }
.banner-stats .item .n {
 
  font-size: 32px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.banner-stats .item .l {
  font-size: 13px;
  color: var(--text-muted);
}

.banner-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-light);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.18);
}
.banner-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

section.content { padding: 100px 80px; }
.section-wrap { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 16px;
}
section h2 {
  
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
section h2 em { color: var(--saffron); font-style: normal; }
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-head { margin-bottom: 60px; }
.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* Background variants */
section.bg-white     { background: var(--white); }
section.bg-cream     { background: var(--cream); }
section.bg-saffron-l { background: var(--saffron-light); }
section.bg-green-l   { background: var(--green-light); }
section.bg-charcoal  { background: var(--charcoal); color: white; }
section.bg-charcoal h2 { color: white; }
section.bg-charcoal .section-desc { color: rgba(255,255,255,0.65); }
section.bg-green-d   { background: var(--green-dark); color: white; }
section.bg-green-d h2 { color: white; }
section.bg-green-d .section-label { color: #7ECBA0; }
section.bg-green-d .section-desc { color: rgba(255,255,255,0.7); }


.btn-primary {
  background: var(--saffron)!important; color: white !important;
  padding: 14px 30px; border-radius: 100px !important;
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  border: none !important; cursor: pointer;

}
.btn-primary:hover {
  background: var(--saffron-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,57,0.3);
}
.btn-secondary {
  background: transparent; color: var(--charcoal) !important;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--border);
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;

}
.btn-secondary:hover { border-color: var(--charcoal); }

.btn-white {
  background: white; color: var(--saffron-dark) !important;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline-white {
  background: transparent; color: white !important;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 32px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}
.btn-link::after { content: '→'; transition: transform .2s; }
.btn-link:hover::after { transform: translateX(4px); }


.split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.split-aside { position: sticky; top: 90px; }
.aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}
.aside-card h4 {

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.aside-stat {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.aside-stat:last-of-type {
  border-bottom: none;
  margin-bottom: 28px;
}
.aside-stat .num {

  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.aside-stat .lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Prose */
.prose { max-width: 760px; }
.prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.prose p.lead-p {
  font-size: 22px;

  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.prose h2 {
  
  font-size: 32px;
  font-weight: 700;
  margin: 56px 0 18px;
  color: var(--charcoal);
}
.prose h2 em { color: var(--saffron); font-style: normal; }
.prose h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;

  color: var(--charcoal);
}
.prose ul {
  padding: 0;
  margin-bottom: 22px;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding: 4px 0 4px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose a { color: var(--saffron); border-bottom: 1px solid var(--saffron-light); padding-bottom: 1px; }
.prose a:hover { border-color: var(--saffron); }
.prose blockquote {
  border-left: 4px solid var(--saffron);
  padding: 8px 0 8px 28px;
  margin: 36px 0;

  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.prose blockquote cite {
  display: block;

  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.pillar .pn {
  width: 40px; height: 40px;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  border-radius: 12px;
  display: grid; place-items: center;

  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}
.pillar h4 {
  
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.pillar p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }


.stats-block {
  background: var(--charcoal);
  padding: 100px 80px;
  color: white;
}
.stats-block .section-label { color: var(--saffron); }
.stats-block h2 { color: white; }
.stats-block h2 em { color: var(--saffron); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.stat-card {
  background: #222;
  padding: 48px 36px;
  transition: background 0.2s;
}
.stat-card:hover { background: #2a2a2a; }
.stat-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.stat-num {

  font-size: 48px; font-weight: 900;
  line-height: 1; margin-bottom: 8px;
  color: var(--saffron);
}
.stat-num.color-green  { color: #5CBB87; }
.stat-num.color-blue   { color: #6DAEE8; }
.stat-num.color-purple { color: var(--purple); }
.stat-num.color-pink   { color: #F5A8C8; }
.stat-num.color-saffron{ color: var(--saffron); }
.stat-title { font-size: 16px; font-weight: 600; color: white; margin-bottom: 6px; }
.stat-sub { font-size: 13.5px; color: #888; line-height: 1.5; }


.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps.steps-5 { grid-template-columns: repeat(5, 1fr); }
.step {
  text-align: center;
  position: relative;
}
.step .marker {
  width: 88px; height: 88px;
  background: var(--white);
  border: 2px solid var(--saffron);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 34px;
  position: relative;
  transition: all 0.3s;
}
    .step .marker .step-num {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 28px;
        height: 28px;
        background: var(--saffron);
        color: white;
        border-radius: 50%;
        font-family: none;
        font-size: 13px;
        font-weight: 700;
        display: grid;
        place-items: center;
        border: 3px solid var(--cream);
    }
.step:hover .marker {
  background: var(--saffron);
  transform: scale(1.08);
}
.step h4 {

  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-card {
  background: var(--white);
  padding: 44px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;

  font-size: 15px;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(224,123,57,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-help { font-size: 13px; color: var(--text-muted); margin-top: 14px; line-height: 1.55; }


.cta-strip {
  background: var(--saffron);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-strip::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.cta-strip h2 {
  color: white !important;
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-strip h2 em { color: white; font-style: italic; }
.cta-strip p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.cta-strip .cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}


.tabs { margin: 48px 0; }
.tab-nav {
  display: flex;
  gap: 8px;
  background: var(--cream);
  padding: 6px;
  border-radius: 100px;
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;

  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 100px;
  transition: all .25s;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224,123,57,0.25);
}
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-content.active { display: block; }
.tab-content h3 {

  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.tab-content > p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 22px; }
.tab-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.tab-units .item {
  padding: 22px 22px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.tab-units .item .un {
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 700;
}
.tab-units .item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.tab-units .item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.calc-head h3 {

  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}
.calc-tag {
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.calc-slider {
  flex: 1;
  min-width: 240px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  background: var(--saffron);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 10px rgba(224,93,36,0.4);
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--saffron);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 10px rgba(224,93,36,0.4);
}
.calc-output {
 
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 120px;
  text-align: right;
  color: var(--charcoal);
}
.calc-output .unit {
  font-size: 0.32em;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 8px;
  font-weight: 400;
}
.calc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.calc-stat .label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.calc-stat .value {
 
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.calc-cta {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.calc-cta .price {
 
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
}
.calc-cta .price .sub {
  font-size: 0.5em;
  color: var(--text-muted);

  font-weight: 400;
  margin-left: 8px;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 40px;
  max-width: 820px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);

  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--saffron); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--saffron);
  font-weight: 400;
  width: 32px; height: 32px;
  background: var(--saffron-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .35s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  background: var(--saffron);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 26px 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 80px 80px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px; color: #999;
  line-height: 1.8; margin-top: 16px; max-width: 320px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #666; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--saffron); }
.footer-contact { color: #aaa; font-size: 14px; line-height: 2; }
.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: #666; }
.footer-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--saffron), #c0602a);
  display: flex; align-items: center; justify-content: center;
  
  font-size: 18px; font-weight: 900; color: white;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.7s ease;
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   HOMEPAGE-SPECIFIC (from reference)
   ============================================================ */
.home-hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 60px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron-light); color: var(--saffron-dark);
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 28px; width: fit-content;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); display: block; }
.home-hero h1 {

  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: var(--charcoal);
  font-weight: 900;
  margin-bottom: 24px;
}
.home-hero h1 em { color: var(--saffron); font-style: normal; }
.hero-desc {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item .snum {

  font-size: 32px; font-weight: 900; color: var(--charcoal);
  line-height: 1;
}
.stat-item .slabel { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-right {
  position: relative; overflow: hidden;
  background: var(--green-dark);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(224,123,57,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46,125,82,0.3) 0%, transparent 40%);
}
.hero-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
}
.hero-cards-stack { position: relative; width: 100%; max-width: 400px; }
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 24px 28px;
  color: white;
  margin-bottom: 16px;
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateX(8px); }
.hero-card-icon { font-size: 28px; margin-bottom: 10px; }
.hero-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.hero-card p { font-size: 13px; opacity: 0.75; line-height: 1.5; }
.hero-card-pill {
  display: inline-block; margin-top: 12px;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.about-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 80px;
  display: flex; align-items: center; gap: 80px;
}
.about-strip-text { flex: 1; }
.about-strip-text p { font-size: 18px; line-height: 1.8; color: var(--text); }
.about-strip-text strong { color: var(--saffron); }
.about-strip-right { flex-shrink: 0; text-align: center; }
.since-badge {
  width: 130px; height: 130px; border-radius: 50%;
  border: 3px solid var(--saffron);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.since-badge .year {

  font-size: 32px; font-weight: 900; color: var(--charcoal); line-height: 1;
}
.since-badge .since { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Work grid */
.work-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.work-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px; overflow: hidden;
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.work-card-num {
 
  font-size: 72px; font-weight: 900;
  color: var(--border); line-height: 1;
  position: absolute; top: 16px; right: 24px;
}
.work-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.work-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--charcoal); }
.work-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.work-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--saffron);
}
.work-card.featured {
  background: var(--saffron); color: white;
}
.work-card.featured h3 { color: white; }
.work-card.featured p { color: rgba(255,255,255,0.85); }
.work-card.featured .work-card-num { color: rgba(255,255,255,0.15); }
.work-card.featured .work-card-arrow { color: white; }
.icon-digital   { background: var(--blue-light); }
.icon-women     { background: var(--pink-light); }
.icon-env       { background: var(--green-light); }
.icon-health    { background: #FFF0E0; }
.icon-skill     { background: var(--purple-light); }
.icon-pukaar    { background: #D5ECE9; }

/* Approach */
.approach-section {
  background: var(--green-dark); color: white;
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.approach-section .section-label { color: #7ECBA0; }
.approach-section h2 { color: white; }
.approach-list { margin-top: 40px; }
.approach-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 20px; align-items: flex-start;
  transition: padding-left 0.25s;
}
.approach-item:hover { padding-left: 8px; }
.approach-item:first-child { padding-top: 0; }
.approach-num {

  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0; margin-top: 4px;
  min-width: 28px;
}
.approach-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.approach-item p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.approach-visual { position: relative; height: 480px; }
.approach-circles {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ac-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.ac-ring:nth-child(1) { width: 360px; height: 360px; animation: rotate-slow 30s linear infinite; }
.ac-ring:nth-child(2) { width: 260px; height: 260px; border-color: rgba(255,255,255,0.18); animation: rotate-slow 20s linear infinite reverse; }
.ac-ring:nth-child(3) { width: 160px; height: 160px; border-color: rgba(255,255,255,0.25); }
.ac-center {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  
  font-size: 13px; font-weight: 700; color: white;
  text-align: center; line-height: 1.3; z-index: 1;
}
.ac-dot {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Presence */
.presence-inner {
  display: flex; gap: 80px;
  align-items: flex-start;
  margin-top: 40px;
}
.presence-left { flex: 1; }
.presence-right { flex: 1; }
.states-grid {
  display: flex; flex-wrap: wrap;
  gap: 10px; margin-top: 30px;
}
.state-tag {
  padding: 8px 16px; background: var(--cream);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
}
.state-tag:hover { background: var(--saffron); color: white; border-color: var(--saffron); }
.sdg-strip { margin-top: 48px; }
.sdg-strip h4 { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: var(--charcoal); }
.sdg-goals { display: flex; flex-wrap: wrap; gap: 8px; }
.sdg-goal {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  transition: transform 0.15s;
}
.sdg-goal:hover { transform: scale(1.15); }

/* Partners */
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; margin-top: 50px; flex-wrap: wrap;
}
.partner-item {
  padding: 20px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 160px;
  text-align: center;
}
.partner-name {
  font-size: 20px; font-weight: 700;
  color: var(--charcoal);
 
}
.partner-role {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Testimonials */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.25s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-size: 40px; line-height: 1;
 
  color: var(--saffron);
  margin-bottom: 16px;
}
.testi-text { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: white;
  flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 56px;
  max-width: 760px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--border);
  border-radius: 100px;
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--cream);
  z-index: 2;
}
.timeline-item .year {
  
  color: var(--saffron);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-item h4 {

  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--charcoal);
}
.timeline-item p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card .avatar {
  height: 200px;
  background: var(--saffron-light);
  display: grid;
  place-items: center;
 
  color: var(--saffron-dark);
  font-size: 70px;
  font-weight: 900;
  transition: all 0.4s;
}
.team-card:hover .avatar {
  background: var(--green-light);
  color: var(--green-dark);
}
.team-card .body { padding: 20px 16px 24px; }
.team-card h4 {

  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--charcoal);
}
.team-card .role {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   OCCASIONS
   ============================================================ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.occasion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.occasion-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.occasion-card .ico-circle {
  width: 80px; height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 38px;
  transition: all 0.3s;
}
.occasion-card:hover .ico-circle {
  background: var(--saffron-light);
  transform: scale(1.08) rotate(-4deg);
}
.occasion-card h4 {

  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.occasion-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   COMPARE SLIDER (before/after)
   ============================================================ */
.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px 0;
  cursor: ew-resize;
  user-select: none;
  background: var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.compare-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.compare-img.after { clip-path: inset(0 0 0 50%); }
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  pointer-events: none;
  z-index: 2;
}
.compare-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.compare-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--saffron);
  font-weight: 700;
  z-index: 1;
}
.compare-label {
  position: absolute;
  top: 16px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.65);
  padding: 7px 14px;
  border-radius: 100px;
  z-index: 3;
  font-weight: 600;
}
.compare-label.before-l { left: 16px; }
.compare-label.after-l { right: 16px; }

/* ============================================================
   DONATE AMOUNT PICKER
   ============================================================ */
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0 0;
}
.donate-amount {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}
.donate-amount:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.donate-amount.selected {
  border-color: var(--saffron);
  background: var(--saffron);
  color: var(--white);
}
.donate-amount .amt {
 
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.donate-amount .help {
  font-size: 11.5px;
  opacity: 0.75;
}
.donate-impact {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--saffron-light);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--saffron);
}
.donate-impact .icon {
  width: 44px; height: 44px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 22px;
}
.donate-impact .text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}
.donate-impact .text strong { color: var(--saffron-dark); font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info { display: grid; gap: 18px; }
.info-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
}
.info-item .ico {
  width: 48px; height: 48px;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.info-item .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}
.info-item .val {

  font-size: 17px;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.45;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ============================================================
   VOLUNTEER PATHWAYS (compact for new theme)
   ============================================================ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pathway-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pathway-card .pc-top {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--green-light);
  position: relative;
}
.pathway-card .pc-top::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
}
.pathway-card .pc-icon {
  position: absolute;
  bottom: -22px; left: 24px;
  width: 56px; height: 56px;
  background: var(--saffron);
  color: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(224,123,57,0.3);
}
.pathway-card .pc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: white;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.pathway-card .pc-body {
  padding: 36px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pathway-card h3 {
  
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.pathway-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.pathway-card .pc-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.pathway-card .pc-meta .commit {
  background: var(--saffron-light);
  color: var(--saffron-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 40px; }
  .hero-right { height: 380px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 1; }
  .approach-section { grid-template-columns: 1fr; gap: 40px; }
  .approach-visual { display: none; }
  .presence-inner { flex-direction: column; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { flex-direction: column; gap: 32px; text-align: center; }
  .page-banner { padding-left: 24px; padding-right: 24px; }
  .banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-aside { position: static; }
  section.content { padding: 80px 24px; }
  .stats-block { padding: 80px 24px; }
  .cta-strip { padding: 80px 24px; }
  .approach-section { padding: 80px 24px; }
  footer.site-footer { padding: 60px 24px 32px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.steps-5 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .calc-stats { grid-template-columns: repeat(2, 1fr); }
  .tab-units { grid-template-columns: 1fr; }
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
  }
  .nav-links.open li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .nav-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    border: none; padding: 12px 0 0 0;
    background: transparent;
    margin-top: 8px;
  }
  .mobile-toggle { display: inline-block; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid, .occasions-grid, .donate-amounts { grid-template-columns: 1fr; }
  .calc-output { font-size: 38px; text-align: left; }
  .banner-stats { gap: 20px; }
  .banner-stats .item .n { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 38px; }
  .page-banner h1 { font-size: 36px; }
  .work-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   LIVE CAMPAIGN —  Week 2026
   ============================================================= */

/* Pulsing nav indicator */
.nav-campaign-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--green) !important;
  font-weight: 600 !important;
}
.nav-campaign-link .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.nav-campaign-link .live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: pulse-live 1.8s ease-out infinite;
}
@keyframes pulse-live {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Homepage campaign strip */
.campaign-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0E3D26 100%);
  color: white;
  padding: 56px 80px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--saffron);
}
.campaign-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,123,57,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.campaign-strip::after {
  content: '🌱';
  position: absolute;
  bottom: -50px; left: -10px;
  font-size: 220px;
  opacity: 0.06;
  transform: rotate(-12deg);
  pointer-events: none;
}
.campaign-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224,123,57,0.18);
  border: 1px solid rgba(224,123,57,0.4);
  color: var(--saffron);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.campaign-badge .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  position: relative;
}
.campaign-badge .live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.5;
  animation: pulse-live 1.8s ease-out infinite;
}
.campaign-strip h2 {
 
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.campaign-strip h2 em { color: var(--saffron); font-style: normal; }
.campaign-strip .campaign-dates {

  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  font-style: italic;
}
.campaign-strip .campaign-body {
  font-size: 15.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}
.campaign-strip .campaign-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.campaign-strip .btn-campaign {
  background: var(--saffron);
  color: white !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.campaign-strip .btn-campaign:hover {
  background: var(--saffron-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,57,0.4);
}
.campaign-strip .btn-campaign-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: white !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.campaign-strip .btn-campaign-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

.campaign-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.campaign-stat-tile {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.campaign-stat-tile.featured {
  background: var(--saffron);
  border-color: var(--saffron-dark);
}
.campaign-stat-tile .n {
  
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.campaign-stat-tile .l {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.campaign-stat-tile.featured .l { color: rgba(255,255,255,0.92); }

/* Campaign banner (top of cool-the-planet page) */
.campaign-banner {
  padding-top: 132px;
  padding-bottom: 100px;
  padding-left: 80px;
  padding-right: 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0F3D26 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.campaign-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,123,57,0.18) 0%, transparent 70%);
}
.campaign-banner::after {
  content: '🌳';
  position: absolute;
  bottom: -80px; right: 8%;
  font-size: 280px;
  opacity: 0.05;
  transform: rotate(-8deg);
  pointer-events: none;
}
.campaign-banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.campaign-banner .breadcrumb {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.campaign-banner .breadcrumb a { color: rgba(255,255,255,0.7); }
.campaign-banner .breadcrumb a:hover { color: var(--saffron); }
.campaign-banner .breadcrumb .sep { color: rgba(255,255,255,0.3); }
.campaign-banner h1 {

  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  color: white;
  line-height: 1.04;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.campaign-banner h1 em { color: var(--saffron); font-style: normal; }
.campaign-banner .sub-title {
  
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.campaign-banner .lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 32px;
}
.campaign-banner .banner-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right-side hero — campaign countdown + benefits */
.campaign-hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 36px 32px;
}
.campaign-hero-card .ch-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 14px;
}
.campaign-hero-card .ch-title {

  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.25;
}
.campaign-hero-card .ch-progress {
  margin-bottom: 22px;
}
.ch-progress-bar {
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.ch-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron) 0%, #FFA866 100%);
  border-radius: 100px;
  width: 23.5%;
  position: relative;
  animation: progress-fill 2.4s var(--ease-out, cubic-bezier(0.25,0.46,0.45,0.94)) forwards;
}
@keyframes progress-fill {
  from { width: 0; }
  to { width: 23.5%; }
}
.ch-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ch-progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.ch-progress-stats .now {
  
  color: var(--saffron);
  font-weight: 700;
  font-size: 18px;
}
.ch-benefits {
  list-style: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.ch-benefits li {
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-benefits li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--saffron);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* 3-initiative landing card grid */
.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.initiative-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.initiative-card .ic-top {
  height: 120px;
  background: var(--green-light);
  display: grid;
  place-items: center;
  font-size: 54px;
  position: relative;
}
.initiative-card.tone-plastic .ic-top { background: linear-gradient(135deg, #D5ECE9, #b8dbd5); }
.initiative-card.tone-sustain .ic-top { background: linear-gradient(135deg, var(--purple-light), #d4c4f5); }
.initiative-card .ic-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.initiative-card .ic-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.initiative-card.tone-plastic .ic-tag { color: #0F766E; }
.initiative-card.tone-sustain .ic-tag { color: #5B3FA0; }
.initiative-card h3 {

  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.initiative-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.initiative-card .ic-cta {
  align-self: flex-start;
  background: var(--saffron);
  color: white !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.initiative-card.tone-plastic .ic-cta { background: #0F766E; }
.initiative-card.tone-sustain .ic-cta { background: #5B3FA0; }
.initiative-card .ic-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224,123,57,0.3);
}
.initiative-card.tone-plastic .ic-cta:hover { box-shadow: 0 8px 20px rgba(15,118,110,0.3); }
.initiative-card.tone-sustain .ic-cta:hover { box-shadow: 0 8px 20px rgba(91,63,160,0.3); }

/* Campaign progress block (on cool-the-planet) */
.progress-block {
  background: var(--cream);
  border-radius: 24px;
  padding: 52px 48px;
  border: 1px solid var(--border);
  margin: 56px 0;
}
.progress-headline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.progress-headline h3 {

  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.progress-headline .target-tag {
  background: var(--saffron-light);
  color: var(--saffron-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.progress-bar-large {
  height: 22px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.progress-bar-large .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--saffron) 100%);
  border-radius: 100px;
  width: 23.5%;
  animation: progress-fill-large 2.4s var(--ease-out, cubic-bezier(0.25,0.46,0.45,0.94)) forwards;
  position: relative;
}
@keyframes progress-fill-large {
  from { width: 0; }
  to { width: 23.5%; }
}
.progress-bar-large .marker {
  position: absolute;
  top: -8px;
  left: 23.5%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: white;
  border: 3px solid var(--saffron);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: progress-marker 2.4s var(--ease-out, cubic-bezier(0.25,0.46,0.45,0.94)) forwards;
}
@keyframes progress-marker {
  from { left: 0; }
  to { left: 23.5%; }
}
.progress-counter {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.progress-counter .now {
 
  color: var(--saffron-dark);
  font-weight: 700;
  font-size: 22px;
}
.progress-counter .target {

  font-size: 17px;
  color: var(--charcoal);
  font-weight: 600;
}

.progress-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding-top: 32px;
  border-top: 1px dashed var(--border);
}
.progress-metric {
  text-align: center;
}
.progress-metric .pm-num {

  font-size: 30px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.progress-metric .pm-num em { color: var(--saffron); font-style: normal; }
.progress-metric .pm-lbl {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* State location cards on campaign page */
.state-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.state-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.state-card.is-new {
  border-color: var(--saffron);
  box-shadow: 0 8px 24px rgba(224,123,57,0.12);
}
.state-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.state-card .sc-top {
  height: 110px;
  background: linear-gradient(135deg, var(--green-light), #b5e0cb);
  position: relative;
  display: grid;
  place-items: center;
  font-size: 42px;
}
.state-card.is-new .sc-top {
  background: linear-gradient(135deg, var(--saffron-light), #f5c993);
}
.state-card .new-pill {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--saffron);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.state-card .sc-body {
  padding: 18px 20px 22px;
}
.state-card h4 {
 
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.state-card .sc-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Plastic pledge counter */
.pledge-bar {
  background: linear-gradient(135deg, #0F766E 0%, #0a5249 100%);
  color: white;
  padding: 36px 40px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.pledge-bar::after {
  content: '🚫';
  position: absolute;
  right: -40px; bottom: -50px;
  font-size: 200px;
  opacity: 0.08;
  transform: rotate(-12deg);
  pointer-events: none;
}
.pledge-bar .pb-head {
  position: relative; z-index: 1;
}
.pledge-bar .pb-head h3 {
 
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.pledge-bar .pb-head p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}
.pledge-count {
  
  font-size: 56px;
  font-weight: 900;
  color: var(--saffron);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative; z-index: 1;
  text-align: right;
}
.pledge-count .lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);

  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  font-style: normal;
}

/* Certificate preview */
.cert-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}
.cert-preview::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed var(--saffron-light);
  border-radius: 14px;
  pointer-events: none;
}
.cert-preview .cert-corner {
  position: absolute;
  width: 70px; height: 70px;
  border: 3px solid var(--saffron);
}
.cert-preview .cert-corner.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.cert-preview .cert-corner.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.cert-preview .cert-corner.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.cert-preview .cert-corner.br { bottom: 24px; right: 24px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }
.cert-preview .cert-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.cert-preview h2 {

  font-size: 36px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  position: relative;
}
.cert-preview .cert-body {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 24px;
  position: relative;
}
.cert-preview .cert-name {

  font-size: 32px;
  color: var(--saffron-dark);
  font-style: italic;
  font-weight: 700;
  margin: 18px 0 22px;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--saffron-light);
  display: inline-block;
  padding: 0 20px 8px;
  position: relative;
}
.cert-preview .cert-meta {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.cert-preview .cert-meta strong {
  display: block;
  color: var(--charcoal);
 
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 3px;
  font-weight: 600;
}

/* Plant species selector */
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 12px 0 24px;
}
.species-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.species-card:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.species-card.selected {
  border-color: var(--saffron);
  background: var(--saffron-light);
}
.species-card .sp-ico { font-size: 32px; margin-bottom: 8px; }
.species-card .sp-name {
  
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.species-card .sp-info {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .campaign-strip { padding: 48px 24px; }
  .campaign-inner { grid-template-columns: 1fr; gap: 36px; }
  .campaign-banner { padding: 132px 24px 80px; }
  .campaign-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .initiative-grid { grid-template-columns: 1fr; }
  .progress-metrics { grid-template-columns: repeat(3, 1fr); }
  .state-cards { grid-template-columns: repeat(2, 1fr); }
  .progress-block { padding: 32px 24px; }
  .pledge-bar { grid-template-columns: 1fr; text-align: center; }
  .pledge-count { text-align: center; }
  .cert-preview { padding: 32px 24px; }
  .cert-preview h2 { font-size: 26px; }
  .cert-preview .cert-name { font-size: 24px; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .campaign-stats { grid-template-columns: 1fr; }
  .progress-metrics { grid-template-columns: repeat(2, 1fr); }
  .state-cards { grid-template-columns: 1fr; }
  .cert-preview .cert-meta { flex-direction: column; gap: 16px; }
  .species-grid { grid-template-columns: 1fr; }
}
/* Pledge-specific: the pledge statement */
.ctp-pledge-statement {
    background: var(--white);
    border-left: 4px solid var(--saffron);
    padding: 22px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    color: var(--charcoal);
    box-shadow: 0 2px 0 rgba(0,0,0,0.02);
}

    .ctp-pledge-statement .sig {
        margin-top: 14px;
        font-family: var(--sans);
        font-style: normal;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--green);
    }

/* Success state */
.ctp-modal-success {
    display: none;
    text-align: center;
    padding: 16px 0 8px;
}

    .ctp-modal-success.show {
        display: block;
    }

.ctp-modal-form.hidden {
    display: none;
}

.ctp-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: ctpSuccessPop 0.5s cubic-bezier(0.2, 1.3, 0.3, 1);
}

@keyframes ctpSuccessPop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.ctp-success-title {
   
    font-size: 26px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

    .ctp-success-title em {
        color: var(--saffron);
        font-style: italic;
    }

.ctp-success-msg {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    max-width: 420px;
    margin: 0 auto 22px;
}

.ctp-success-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 18px;
    background: var(--green-light);
    border: 1px solid rgba(46,125,82,0.25);
    border-radius: 100px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

    .ctp-success-badge strong {
        
        font-size: 16px;
        font-weight: 900;
        color: var(--saffron-dark);
        margin: 0 4px;
    }

.ctp-success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

    .ctp-success-actions a, .ctp-success-actions button {
        padding: 10px 18px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        border: 1.5px solid var(--border);
        background: var(--white);
        color: var(--text);
        cursor: pointer;
        transition: all 0.18s;
        text-decoration: none;
    }

        .ctp-success-actions a:hover, .ctp-success-actions button:hover {
            border-color: var(--saffron);
            color: var(--saffron-dark);
            transform: translateY(-1px);
        }

/* Mobile */
@media (max-width: 600px) {
    .ctp-modal {
        padding: 0;
        align-items: stretch;
    }

    .ctp-modal-card {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        margin-top: auto;
        margin-bottom: 0;
    }

    .ctp-modal-head {
        padding: 28px 24px 22px;
    }

    .ctp-modal-body {
        padding: 24px 24px 32px;
    }

    .ctp-modal-form .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ctp-pledge-statement {
        font-size: 15.5px;
        padding: 18px 20px;
    }
}

/* Lock body scroll when modal open */
body.ctp-modal-open {
    overflow: hidden;
}
/* ============================================================
   MODALS — Host a Session & Take the Pledge
   ============================================================ */
.ctp-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 5vh 20px;
    overflow-y: auto;
    background: rgba(15, 35, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: ctpModalFade 0.22s ease-out;
}

    .ctp-modal.open {
        display: flex;
    }

@keyframes ctpModalFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ctp-modal-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
    animation: ctpModalRise 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin: auto 0;
}

@keyframes ctpModalRise {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ctp-modal-head {
    padding: 36px 44px 24px;
    background: linear-gradient(135deg, #305C23 0%, #5f9c4c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .ctp-modal-head::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
      
        pointer-events: none;
    }

.ctp-modal-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(224,123,57,0.18);
    border: 1px solid rgba(224,123,57,0.4);
    border-radius: 100px;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.ctp-modal-title {
 
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

    .ctp-modal-title em {
        color: var(--saffron);
        font-style: italic;
    }

.ctp-modal-sub {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.ctp-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s;
    z-index: 2;
}

    .ctp-modal-close:hover {
        background: rgba(255,255,255,0.18);
        transform: rotate(90deg);
    }

.ctp-modal-body {
    padding: 32px 44px 40px;
}

.ctp-modal-form {
    display: grid;
    gap: 16px;
}

    .ctp-modal-form .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ctp-modal-form .field {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .ctp-modal-form label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--charcoal);
    }

        .ctp-modal-form label .req {
            color: var(--saffron);
            margin-left: 2px;
        }

    .ctp-modal-form input,
    .ctp-modal-form select,
    .ctp-modal-form textarea {
        padding: 12px 14px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-family: var(--sans);
        font-size: 14.5px;
        background: var(--white);
        color: var(--text);
        outline: none;
        transition: all 0.18s;
        width: 100%;
    }

        .ctp-modal-form input:focus,
        .ctp-modal-form select:focus,
        .ctp-modal-form textarea:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(224,123,57,0.12);
        }

    .ctp-modal-form textarea {
        resize: vertical;
        min-height: 88px;
    }

.ctp-radio-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ctp-radio {
    flex: 1;
    min-width: 130px;
    position: relative;
    cursor: pointer;
}

    .ctp-radio input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .ctp-radio span {
        display: block;
        padding: 11px 14px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        background: var(--white);
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        transition: all 0.18s;
        color: var(--text);
    }

    .ctp-radio input:checked + span {
        border-color: var(--saffron);
        background: var(--saffron-light);
        color: var(--saffron-dark);
        font-weight: 600;
    }

.ctp-modal-submit {
    margin-top: 8px;
    padding: 15px 28px;
    background: var(--saffron) !important;
    color: white !important;
    border: none;
    border-radius: 100px !important;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

    .ctp-modal-submit:hover {
        background: var(--saffron-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(224,123,57,0.32);
    }

    .ctp-modal-submit:disabled {
        opacity: 0.7;
        cursor: wait;
        transform: none;
    }

.ctp-modal-footnote {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}


.ctp-pledge-statement {
    background: var(--white);
    border-left: 4px solid var(--saffron);
    padding: 22px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
 
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    color: var(--charcoal);
    box-shadow: 0 2px 0 rgba(0,0,0,0.02);
}

    .ctp-pledge-statement .sig {
        margin-top: 14px;
        font-family: var(--sans);
        font-style: normal;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--green);
    }

/* Success state */
.ctp-modal-success {
    display: none;
    text-align: center;
    padding: 16px 0 8px;
}

    .ctp-modal-success.show {
        display: block;
    }

.ctp-modal-form.hidden {
    display: none;
}

.ctp-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: ctpSuccessPop 0.5s cubic-bezier(0.2, 1.3, 0.3, 1);
}

@keyframes ctpSuccessPop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.ctp-success-title {
   
    font-size: 26px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

    .ctp-success-title em {
        color: var(--saffron);
        font-style: italic;
    }

.ctp-success-msg {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    max-width: 420px;
    margin: 0 auto 22px;
}

.ctp-success-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 18px;
    background: var(--green-light);
    border: 1px solid rgba(46,125,82,0.25);
    border-radius: 100px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

    .ctp-success-badge strong {
     
        font-size: 16px;
        font-weight: 900;
        color: var(--saffron-dark);
        margin: 0 4px;
    }

.ctp-success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

    .ctp-success-actions a, .ctp-success-actions button {
        padding: 10px 18px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        border: 1.5px solid var(--border);
        background: var(--white);
        color: var(--text);
        cursor: pointer;
        transition: all 0.18s;
        text-decoration: none;
    }

        .ctp-success-actions a:hover, .ctp-success-actions button:hover {
            border-color: var(--saffron);
            color: var(--saffron-dark);
            transform: translateY(-1px);
        }

/* Mobile */
@media (max-width: 600px) {
    .ctp-modal {
        padding: 0;
        align-items: stretch;
    }

    .ctp-modal-card {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        margin-top: auto;
        margin-bottom: 0;
    }

    .ctp-modal-head {
        padding: 28px 24px 22px;
    }

    .ctp-modal-body {
        padding: 24px 24px 32px;
    }

    .ctp-modal-form .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ctp-pledge-statement {
        font-size: 15.5px;
        padding: 18px 20px;
    }
}

/* Lock body scroll when modal open */
body.ctp-modal-open {
    overflow: hidden;
}
.model1 {
    display: grid;
    gap: 16px;
}
.rowbox1 {
    display: grid;
    gap: 16px;
}
.ctp-modal-form .ctp-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.ctp-modal-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.ti-card {
    background: #f7f4ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ti-top {
    width: 100%;
    overflow: hidden;
    background: #d9ece8;
}

.ti-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ti-body {
    padding: 30px;
}
