/* Shared components for About Us / Why Us / FAQs / Packaging Guide */

[class^="tp-"], [class*=" tp-"] {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tp-hero {
    background: linear-gradient(135deg, #fef8ed 0%, #ffffff 60%);
    border-bottom: 1px solid #ebebeb;
    padding: 56px 0 48px;
}

.tp-eyebrow {
    color: #007146;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tp-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.tp-hero p.lead {
    color: #444;
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 24px;
}

.tp-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007146;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease;
}
.tp-phone-cta:hover {
    background: #006b45;
    color: #fff;
}
.tp-phone-cta i {
    font-size: 18px;
}

.tp-quote-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4cb16;
    color: #1a1a1a;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
}
.tp-quote-cta:hover {
    color: #1a1a1a;
    opacity: .9;
}

/* Stat strip */
.tp-stat-strip {
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 28px 0;
}
.tp-stat {
    text-align: center;
    padding: 10px 12px;
}
.tp-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #007146;
    display: block;
}
.tp-stat .label {
    color: #5d5150;
    font-size: 14px;
}

/* Section heading */
.tp-section {
    padding: 48px 0;
}
.tp-section-heading {
    text-align: center;
    margin-bottom: 36px;
}
.tp-section-heading h2 {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1.8rem;
}
.tp-section-heading p {
    color: #5d5150;
    max-width: 560px;
    margin: 8px auto 0;
}

/* Card grid */
.tp-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 26px 22px;
    height: 100%;
    transition: box-shadow .2s ease, transform .2s ease;
}
.tp-card:hover {
    box-shadow: 0 10px 24px rgba(0, 113, 70, 0.1);
    transform: translateY(-2px);
}
.tp-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fef8ed;
    color: #007146;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.tp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.tp-card p {
    color: #5d5150;
    font-size: .92rem;
    margin-bottom: 0;
}

/* Process steps */
.tp-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.tp-step {
    flex: 1 1 220px;
    background: #fef8ed;
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
}
.tp-step .step-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 113, 70, 0.25);
    line-height: 1;
    margin-bottom: 8px;
}
.tp-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.tp-step p {
    color: #5d5150;
    font-size: .9rem;
    margin-bottom: 0;
}

/* Dark trust band (ownership / facility facts) */
.tp-trust-band {
    background: #1a1a1a;
    color: #fff;
    border-radius: 16px;
    padding: 36px 30px;
}
.tp-trust-band h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.tp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.tp-trust-item i {
    color: #3cb371;
    margin-top: 3px;
}
.tp-trust-item span {
    color: #e6e6e6;
    font-size: .95rem;
}

/* CTA band */
.tp-cta-band {
    background: #007146;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}
.tp-cta-band h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}
.tp-cta-band p {
    color: #d9ece3;
    margin-bottom: 20px;
}
.tp-cta-band .tp-phone-cta {
    background: #fff;
    color: #007146;
}
.tp-cta-band .tp-phone-cta:hover {
    background: #f4cb16;
    color: #1a1a1a;
}

/* Accordion (FAQ) reuse of homepage look, scoped so it also works outside faq-padding */
.tp-accordion .accordion-button:not(.collapsed) {
    color: #007146;
    background: transparent;
    box-shadow: none;
}
.tp-accordion .accordion-button:focus {
    box-shadow: none;
}

@media (max-width: 767px) {
    .tp-hero h1 { font-size: 1.7rem; }
    .tp-trust-band, .tp-cta-band { padding: 28px 20px; }
    .tp-quote-cta { margin-left: 0; margin-top: 10px; }
}
