/* ─── Features page ─────────────────────────────────────────────────────────── */
.pfp-feature-block + .pfp-feature-block {
    border-top: 1px solid var(--pfp-gray-200);
}

.pfp-feature-block__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--pfp-space-sm);
}

.pfp-feature-block__icon {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.pfp-feature-block__list {
    max-width: 640px;
    margin: 0 auto;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 1.05rem;
    color: var(--pfp-gray-600);
    line-height: 1.7;
}

/* ─── Pricing page ─────────────────────────────────────────────────────────── */
.pfp-faq__item h3 {
    font-weight: 600;
}

/* ─── Generic inner page prose content ────────────────────────────────────── */
.pfp-content-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--pfp-gray-700);
}

.pfp-content-body h2,
.pfp-content-body h3,
.pfp-content-body h4 {
    color: var(--pfp-gray-900);
    margin-top: 2rem;
    margin-bottom: .75rem;
    font-weight: 700;
}

.pfp-content-body p {
    margin-bottom: 1.25rem;
}

.pfp-content-body ul,
.pfp-content-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.pfp-content-body a {
    color: var(--pfp-blue);
    text-decoration: underline;
}

/* ─── About page ───────────────────────────────────────────────────────────── */
/* Inherits components.css defaults — no extra overrides needed. */

/* ─── Features Page – Card Grid ─────────────────────────────────────────── */

.pfp-features-overview {
    padding: var(--pfp-section-y) 0;
}

.pfp-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .pfp-feat-grid {
        grid-template-columns: 1fr;
    }
}

.pfp-feat-card {
    display: flex;
    gap: 1.25rem;
    background: var(--pfp-white);
    border-radius: 1rem;
    border-left: 4px solid var(--pfp-blue);
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

/* Stagger reveal via CSS animation (leaves hover transitions free) */
.pfp-feat-card.pfp-reveal {
    opacity: 0;
    transform: translateY(24px);
}

@keyframes pfp-card-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.pfp-feat-card.pfp-reveal--visible {
    animation: pfp-card-in .55s var(--pfp-ease, cubic-bezier(.4,0,.2,1)) both;
    animation-delay: var(--delay, 0ms);
    /* hover transitions run after reveal finishes */
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.pfp-feat-card.pfp-reveal--visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.pfp-feat-card__icon {
    font-size: 2.25rem;
    line-height: 1;
    flex-shrink: 0;
    width: 2.75rem;
    text-align: center;
    padding-top: 2px;
}

.pfp-feat-card__body {
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.pfp-feat-card__tag {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pfp-blue);
}

.pfp-feat-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--pfp-navy);
    margin: 0 0 .125rem;
}

.pfp-feat-card__desc {
    font-size: .9375rem;
    color: var(--pfp-gray-500);
    line-height: 1.6;
    margin: 0;
}

.pfp-feat-card__list {
    list-style: none;
    padding: 0;
    margin: .375rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .3125rem;
}

.pfp-feat-card__list li {
    font-size: .875rem;
    color: var(--pfp-gray-600, #4b5563);
    display: flex;
    align-items: flex-start;
    gap: .4375rem;
}

.pfp-feat-card__list li::before {
    content: '✓';
    color: var(--pfp-blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05em;
}

/* ─── Contact Form 7 ─────────────────────────────────────────────────────── */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--pfp-gray-200, #e5e7eb);
    border-radius: var(--pfp-radius, .5rem);
    font-family: inherit;
    font-size: 1rem;
    color: var(--pfp-gray-900, #111827);
    background: var(--pfp-white, #fff);
    transition: border-color 200ms ease, box-shadow 200ms ease;
    box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--pfp-blue, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.wpcf7 textarea {
    resize: vertical;
    min-height: 140px;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 2rem;
    background: var(--pfp-blue, #2563eb);
    color: #fff;
    border: none;
    border-radius: var(--pfp-radius, .5rem);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 200ms ease, transform 120ms ease;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    background: var(--pfp-blue-dark, #1d4ed8);
    transform: translateY(-1px);
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: .875rem;
    margin-top: .25rem;
}

.wpcf7 .wpcf7-response-output {
    border-radius: var(--pfp-radius, .5rem);
    padding: .75rem 1rem;
    margin-top: 1rem;
    font-weight: 500;
}
