﻿/* ── About - Hero ────Start──────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #fcb900 0%, #c8d621 55%, #A9D621 100%);
    color: #1e2419;
    padding: 130px 0 70px;
    text-align: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,36,25,0.12);
    border: 1px solid rgba(30,36,25,0.25);
    color: #2d3a10;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: var(--heading-font);
    color: #1e2419;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-highlight {
    color: #2d3a10;
}

.about-hero > .container > p {
    font-size: 1.05rem;
    color: #3d4a2a;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.about-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ── Buttons ──────────────────────────────────────────────── */
.about-btn-primary {
    display: inline-block;
    background: #2d3a10;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .about-btn-primary:hover {
        background: #4a5e20;
        color: #fff;
        transform: translateY(-2px);
    }

.about-btn-secondary {
    display: inline-block;
    background: rgba(30,36,25,0.12);
    border: 1.5px solid rgba(30,36,25,0.3);
    color: #2d3a10;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .about-btn-secondary:hover {
        background: rgba(30,36,25,0.2);
        color: #1e2419;
        transform: translateY(-2px);
    }

.about-back-link {
    color: #6B7A3E;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .about-back-link:hover {
        color: #A9D621;
    }
/* ── Mission Strip ────────────────────────────────────────── */
.about-mission-strip {
    background: #2d3a10;
    padding: 28px 0;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
}

    .about-stat i {
        font-size: 1.6rem;
        color: #A9D621;
        margin-bottom: 4px;
    }

    .about-stat span {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
    }

    .about-stat small {
        font-size: 0.78rem;
        color: #a8c080;
    }
/* ── Why Choose Section ───────────────────────────────────── */
.about-lead {
    font-size: 1.05rem;
    color: #3d4a2a;
    line-height: 1.75;
    font-weight: 500;
}

.about-quote {
    background: #f4f9e8;
    border-left: 4px solid #A9D621;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 24px 0 0;
}

    .about-quote p {
        font-size: 1rem;
        color: #3d4a2a;
        font-style: italic;
        margin: 0;
        line-height: 1.6;
    }
/* ── Feature List ─────────────────────────────────────────── */
.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #e8f0d0;
}

    .about-feature-item:last-child {
        border-bottom: none;
    }

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f4f9e8, #e0f0a0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-feature-icon i {
        font-size: 1.2rem;
        color: #6B7A3E;
    }

.about-feature-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d4a2a;
    margin: 0 0 4px;
}

.about-feature-item p {
    font-size: 0.86rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
/* ── AI Steps ─────────────────────────────────────────────── */
.about-step-card {
    background: #fff;
    border: 1.5px solid #e8f0d0;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .about-step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(107,122,62,0.13);
    }

.about-step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8f4c0;
    line-height: 1;
    font-family: var(--heading-font);
}

.about-step-card > i {
    font-size: 2rem;
    color: #A9D621;
    display: block;
    margin-bottom: 14px;
}

.about-step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #3d4a2a;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.about-step-card p {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
/* ── Value Pillar Cards ───────────────────────────────────── */
.about-pillar-card {
    background: #fff;
    border: 1.5px solid #e8f0d0;
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

    .about-pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 34px rgba(107,122,62,0.14);
        border-color: #A9D621;
    }

.about-pillar-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #fcb900, #A9D621);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .about-pillar-icon i {
        font-size: 1.6rem;
        color: #1e2419;
    }

.about-pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #3d4a2a;
    margin-bottom: 12px;
    font-family: var(--heading-font);
}

.about-pillar-card > p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.about-pillar-quote {
    font-size: 0.84rem !important;
    color: #6B7A3E !important;
    font-style: italic;
    border-left: 3px solid #A9D621;
    padding-left: 10px;
}
/* ── Who We Help List ─────────────────────────────────────── */
.about-who-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .about-who-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.87rem;
        font-weight: 600;
        color: #3d4a2a;
    }

        .about-who-list li i {
            color: #A9D621;
            font-size: 0.85rem;
        }
/* ── CTA Section ──────────────────────────────────────────── */
.about-cta-section {
    background: linear-gradient(135deg, #f4f9e8 0%, #e8f4c8 100%);
}

.about-cta-inner {
    background: #fff;
    border: 1.5px solid #c8e880;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 6px 28px rgba(107,122,62,0.1);
}

    .about-cta-inner h2 {
        font-size: 1.7rem;
        font-weight: 800;
        color: #3d4a2a;
        margin-bottom: 10px;
        font-family: var(--heading-font);
    }

.about-cta-desc {
    color: #5a6e20;
    font-size: 0.95rem;
    margin: 0;
}

@@media (max-width: 768px) {
    .about-cta-inner {
        padding: 28px 20px;
    }
}

/* ── How it Works - Hero ──Start───────────────────────────────────────────── */
.hiw-hero {
    background: linear-gradient(135deg, #fcb900 0%, #c8d621 55%, #A9D621 100%);
    color: #1e2419;
    padding: 130px 0 70px;
    text-align: center;
}

.hiw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,36,25,0.12);
    border: 1px solid rgba(30,36,25,0.25);
    color: #2d3a10;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hiw-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    font-family: var(--heading-font);
    color: #1e2419;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-highlight {
    color: #2d3a10;
}

.hiw-hero > .container > p {
    font-size: 1.05rem;
    color: #3d4a2a;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hiw-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ── Buttons ──────────────────────────────────────────────── */
.hiw-btn-primary {
    display: inline-block;
    background: #2d3a10;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .hiw-btn-primary:hover {
        background: #4a5e20;
        color: #fff;
        transform: translateY(-2px);
    }

.hiw-btn-secondary {
    display: inline-block;
    background: rgba(30,36,25,0.12);
    border: 1.5px solid rgba(30,36,25,0.3);
    color: #2d3a10;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .hiw-btn-secondary:hover {
        background: rgba(30,36,25,0.2);
        color: #1e2419;
        transform: translateY(-2px);
    }

.hiw-back-link {
    color: #6B7A3E;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .hiw-back-link:hover {
        color: #A9D621;
    }
/* ── Why Strip ────────────────────────────────────────────── */
.hiw-why-strip {
    background: #2d3a10;
    padding: 36px 0;
}

.hiw-why-item {
    color: #fff;
    padding: 10px;
}

    .hiw-why-item i {
        font-size: 1.8rem;
        color: #A9D621;
        display: block;
        margin-bottom: 10px;
    }

    .hiw-why-item h5 {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
    }

    .hiw-why-item p {
        font-size: 0.85rem;
        color: #a8c080;
        margin: 0;
        line-height: 1.65;
    }
/* ── Lead + Feature List ──────────────────────────────────── */
.hiw-lead {
    font-size: 1.02rem;
    color: #3d4a2a;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 16px;
}

.hiw-quote {
    background: #f4f9e8;
    border-left: 4px solid #A9D621;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 24px 0 0;
}

    .hiw-quote p {
        font-size: 1rem;
        color: #3d4a2a;
        font-style: italic;
        margin: 0;
        line-height: 1.6;
    }

.hiw-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #e8f0d0;
}

    .hiw-feature-item:last-child {
        border-bottom: none;
    }

.hiw-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f4f9e8, #e0f0a0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hiw-feature-icon i {
        font-size: 1.2rem;
        color: #6B7A3E;
    }

.hiw-feature-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d4a2a;
    margin: 0 0 4px;
}

.hiw-feature-item p {
    font-size: 0.86rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
/* ── Step Cards ───────────────────────────────────────────── */
.hiw-step-card {
    background: #fff;
    border: 1.5px solid #e8f0d0;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hiw-step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(107,122,62,0.13);
    }

.hiw-step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8f4c0;
    line-height: 1;
    font-family: var(--heading-font);
}

.hiw-step-card > i {
    font-size: 2rem;
    color: #A9D621;
    display: block;
    margin-bottom: 14px;
}

.hiw-step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #3d4a2a;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.hiw-step-card p {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
/* ── Comparison Cards ─────────────────────────────────────── */
.hiw-compare-card {
    border-radius: 14px;
    padding: 20px 22px;
}

.hiw-compare-us {
    background: #f4f9e8;
    border: 1.5px solid #c8e880;
}

.hiw-compare-them {
    background: #fafafa;
    border: 1.5px solid #e0e0e0;
}

.hiw-compare-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #6B7A3E;
}

.hiw-compare-them .hiw-compare-label {
    color: #888;
}

.hiw-check-list, .hiw-x-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .hiw-check-list li, .hiw-x-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: 0.86rem;
        color: #444;
        line-height: 1.55;
    }

        .hiw-check-list li i {
            color: #A9D621;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .hiw-x-list li i {
            color: #cc4444;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 3px;
        }
/* ── Don't List ───────────────────────────────────────────── */
.hiw-dont-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-dont-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e8f0d0;
}

    .hiw-dont-item:last-child {
        border-bottom: none;
    }

.hiw-dont-icon {
    width: 40px;
    height: 40px;
    background: #fff0f0;
    border: 1.5px solid #ffcccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hiw-dont-icon i {
        font-size: 1rem;
        color: #cc4444;
    }

.hiw-dont-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3d4a2a;
    margin: 0 0 3px;
}

.hiw-dont-item p {
    font-size: 0.83rem;
    color: #666;
    margin: 0;
    line-height: 1.55;
}
/* ── Who List ─────────────────────────────────────────────── */
.hiw-who-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-who-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #e8f0d0;
}

    .hiw-who-item:last-child {
        border-bottom: none;
    }

.hiw-who-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcb900, #A9D621);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hiw-who-icon i {
        font-size: 1rem;
        color: #1e2419;
    }

.hiw-who-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3d4a2a;
    margin: 0 0 3px;
}

.hiw-who-item p {
    font-size: 0.83rem;
    color: #666;
    margin: 0;
    line-height: 1.55;
}
/* ── CTA ──────────────────────────────────────────────────── */
.hiw-cta-section {
    background: linear-gradient(135deg, #f4f9e8 0%, #e8f4c8 100%);
}

.hiw-cta-inner {
    background: #fff;
    border: 1.5px solid #c8e880;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 6px 28px rgba(107,122,62,0.1);
}

    .hiw-cta-inner h2 {
        font-size: 1.7rem;
        font-weight: 800;
        color: #3d4a2a;
        margin-bottom: 10px;
        font-family: var(--heading-font);
    }

.hiw-cta-desc {
    color: #5a6e20;
    font-size: 0.95rem;
    margin: 0;
}

@@media (max-width: 768px) {
    .hiw-cta-inner {
        padding: 28px 20px;
    }
}


/* ── Features - Hero ──Start─────────────────────────────────────────── */
.feat-hero {
    background: linear-gradient(135deg, #fcb900 0%, #c8d621 55%, #A9D621 100%);
    color: #1e2419;
    padding: 130px 0 70px;
    text-align: center;
}

.feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,36,25,0.12);
    border: 1px solid rgba(30,36,25,0.25);
    color: #2d3a10;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.feat-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    font-family: var(--heading-font);
    color: #1e2419;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.feat-highlight {
    color: #2d3a10;
}

.feat-hero > .container > p {
    font-size: 1.05rem;
    color: #3d4a2a;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.feat-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ── Buttons ──────────────────────────────────────────────── */
.feat-btn-primary {
    display: inline-block;
    background: #2d3a10;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .feat-btn-primary:hover {
        background: #4a5e20;
        color: #fff;
        transform: translateY(-2px);
    }

.feat-btn-secondary {
    display: inline-block;
    background: rgba(30,36,25,0.12);
    border: 1.5px solid rgba(30,36,25,0.3);
    color: #2d3a10;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .feat-btn-secondary:hover {
        background: rgba(30,36,25,0.2);
        color: #1e2419;
        transform: translateY(-2px);
    }

.feat-back-link {
    color: #6B7A3E;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .feat-back-link:hover {
        color: #A9D621;
    }
/* ── Stats Strip ──────────────────────────────────────────── */
.feat-stat-strip {
    background: #2d3a10;
    padding: 28px 0;
}

.feat-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
}

    .feat-stat i {
        font-size: 1.6rem;
        color: #A9D621;
        margin-bottom: 4px;
    }

    .feat-stat span {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
    }

    .feat-stat small {
        font-size: 0.78rem;
        color: #a8c080;
    }
/* ── Feature Cards Grid ───────────────────────────────────── */
.feat-card {
    background: #fff;
    border: 1.5px solid #e8f0d0;
    border-radius: 18px;
    padding: 30px 26px 26px;
    height: 100%;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

    .feat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 34px rgba(107,122,62,0.14);
        border-color: #A9D621;
    }

.feat-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #fcb900, #A9D621);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

    .feat-card-icon i {
        font-size: 1.5rem;
        color: #1e2419;
    }

.feat-card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e8f4c0;
    line-height: 1;
    font-family: var(--heading-font);
}

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #3d4a2a;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.feat-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .feat-card-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: 0.84rem;
        color: #555;
        line-height: 1.6;
    }

        .feat-card-list li i {
            color: #A9D621;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .feat-card-list li strong {
            color: #3d4a2a;
        }
/* ── Feature List ─────────────────────────────────────────── */
.feat-lead {
    font-size: 1.02rem;
    color: #3d4a2a;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 20px;
}

.feat-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feat-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #e8f0d0;
}

    .feat-feature-item:last-child {
        border-bottom: none;
    }

.feat-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f4f9e8, #e0f0a0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feat-feature-icon i {
        font-size: 1.2rem;
        color: #6B7A3E;
    }

.feat-feature-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d4a2a;
    margin: 0 0 4px;
}

.feat-feature-item p {
    font-size: 0.86rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
/* ── Audience Cards ───────────────────────────────────────── */
.feat-audience-card {
    background: #fff;
    border: 1.5px solid #e8f0d0;
    border-radius: 14px;
    padding: 22px 18px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .feat-audience-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(107,122,62,0.12);
    }

    .feat-audience-card i {
        font-size: 1.6rem;
        color: #A9D621;
        display: block;
        margin-bottom: 10px;
    }

    .feat-audience-card h5 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #3d4a2a;
        margin-bottom: 6px;
    }

    .feat-audience-card p {
        font-size: 0.82rem;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }
/* ── Quote ────────────────────────────────────────────────── */
.feat-quote {
    background: #f4f9e8;
    border-left: 4px solid #A9D621;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 24px 0 0;
}

    .feat-quote p {
        font-size: 1rem;
        color: #3d4a2a;
        font-style: italic;
        margin: 0;
        line-height: 1.6;
    }
/* ── CTA ──────────────────────────────────────────────────── */
.feat-cta-section {
    background: linear-gradient(135deg, #f4f9e8 0%, #e8f4c8 100%);
}

.feat-cta-inner {
    background: #fff;
    border: 1.5px solid #c8e880;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 6px 28px rgba(107,122,62,0.1);
}

    .feat-cta-inner h2 {
        font-size: 1.7rem;
        font-weight: 800;
        color: #3d4a2a;
        margin-bottom: 10px;
        font-family: var(--heading-font);
    }

.feat-cta-desc {
    color: #5a6e20;
    font-size: 0.95rem;
    margin: 0;
}

@@media (max-width: 768px) {
    .feat-cta-inner {
        padding: 28px 20px;
    }
}