/* ChamaPoint overrides — kept separate from findox.css so template updates
   never clobber these. Brand colors: #194335 (dark green), #9AD147 (lime). */

/* ================= Global compactness =================
   findox.css's .section-space reads var(--section-space, 120px) — 120px
   top+bottom on every section adds up fast on a page with several sections.
   Overriding the variable here is a single-point fix that cascades to every
   section on every page, rather than fighting each section individually. */
:root {
    --section-space: 56px;
}

.section-space,
.section-space-t {
    padding-top: 56px;
}
.section-space,
.section-space-b {
    padding-bottom: 56px;
}
@media (max-width: 767px) {
    .section-space,
    .section-space-t {
        padding-top: 44px;
    }
    .section-space,
    .section-space-b {
        padding-bottom: 44px;
    }
}

.scroll-mt {
    scroll-margin-top: 120px;
}

/* ================= Logo (text wordmark — no logo image asset exists yet) ================= */
.cp-logo-text {
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #194335;
    text-decoration: none;
    line-height: 1;
}

.cp-logo-text span {
    color: #9AD147;
}

.cp-logo-text--light {
    color: #fff;
}

/* ================= Compact hero =================
   Deliberately NOT full-viewport-height like the original template's
   hero-slider (min-height: 100vh style carousel) — a fixed, moderate
   height keeps the page's actual content visible without scrolling. */
.cp-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 70px;
}

.cp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 36, 29, 0.94) 0%, rgba(25, 67, 53, 0.88) 60%, rgba(25, 67, 53, 0.75) 100%);
}

.cp-hero .container {
    position: relative;
    z-index: 2;
}

.cp-hero__content {
    max-width: 640px;
}

.cp-hero__tagline {
    color: #9AD147;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cp-hero__title {
    color: #fff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
}

.cp-hero__title span {
    color: #9AD147;
}

.cp-hero__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cp-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.findox-btn--outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.findox-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .cp-hero {
        min-height: 380px;
        padding: 80px 0 50px;
        text-align: left;
    }
    .cp-hero__title {
        font-size: 32px;
    }
}

/* ================= Pricing ================= */
.package-card--popular {
    border: 2px solid #194335;
    position: relative;
}

.package-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: #9AD147;
    color: #194335;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 999px;
}

.cp-pricing__note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= CTA ================= */
.cp-cta {
    background: #194335;
    padding: 70px 0;
    text-align: center;
}

.cp-cta__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cp-cta__text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

/* ================= Simple page header (about/contact/faq) ================= */
.cp-page-header {
    background: #194335;
    padding: 60px 0;
    text-align: center;
}

.cp-page-header__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cp-page-header__crumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-page-header__crumb a {
    color: #9AD147;
}

/* ================= Signup form ================= */
.cp-signup {
    padding: 70px 0;
    background: #f7f8f6;
}

.cp-signup__card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cp-signup__field {
    margin-bottom: 18px;
}

.cp-signup__field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #194335;
    margin-bottom: 6px;
}

.cp-signup__field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
}

.cp-signup__field input:focus {
    outline: none;
    border-color: #194335;
}

.cp-signup__error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 4px;
}

.cp-signup__row {
    display: flex;
    gap: 16px;
}

.cp-signup__row .cp-signup__field {
    flex: 1;
}

.cp-signup__summary {
    background: #ECF5F4;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #194335;
}

.cp-signup__submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.cp-signup__note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
}

/* ================= Feature cards (dedicated Features page) ================= */
.cp-feature-card {
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cp-feature-card:hover {
    box-shadow: 0 12px 32px rgba(25, 67, 53, 0.08);
    transform: translateY(-3px);
}

.cp-feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #194335;
    color: #9AD147;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.cp-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.cp-feature-card__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ================= Blog cards ================= */
.cp-blog-card {
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cp-blog-card__image {
    aspect-ratio: 16/9;
    background: #ECF5F4;
    overflow: hidden;
}

.cp-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-blog-card__body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cp-blog-card__meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9AD147;
    margin-bottom: 10px;
}

.cp-blog-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.35;
}

.cp-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.cp-blog-card__excerpt {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
}

.cp-blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

/* ================= Contact form ================= */
.cp-contact-form .cp-signup__field {
    margin-bottom: 18px;
}

.cp-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.cp-contact-form textarea:focus {
    outline: none;
    border-color: #194335;
}

/* ================= Compact section header ================= */
.cp-sec-head {
    max-width: 640px;
    margin: 0 auto 36px;
    text-align: center;
}

.cp-sec-head__tag {
    display: inline-block;
    color: #194335;
    background: #ECF5F4;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.cp-sec-head__title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.cp-sec-head__desc {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}
