/* =============================================================
   CP4U — About Us & Contact Us Pages
   Brand: #00b843 (green)  |  #295230 (dark)  |  #e6f7ef (light)
   ============================================================= */

/* ── Full-width override
     WordPress appends -php to template body classes:
     page-about.php  → page-template-page-about-php
     page-contact.php → page-template-page-contact-php
     We target both variants to be safe.
── */
body.page-template-page-about-php #primary,
body.page-template-page-about     #primary,
body.page-template-page-contact-php #primary,
body.page-template-page-contact     #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
}
body.page-template-page-about-php .ast-row,
body.page-template-page-about     .ast-row,
body.page-template-page-contact-php .ast-row,
body.page-template-page-contact     .ast-row {
    display: block !important;
    max-width: 100% !important;
}
body.page-template-page-about-php #secondary,
body.page-template-page-about     #secondary,
body.page-template-page-contact-php #secondary,
body.page-template-page-contact     #secondary {
    display: none !important;
}
body.page-template-page-about-php .entry-header,
body.page-template-page-about     .entry-header,
body.page-template-page-contact-php .entry-header,
body.page-template-page-contact     .entry-header,
body.page-template-page-about-php .post-navigation,
body.page-template-page-about     .post-navigation,
body.page-template-page-contact-php .post-navigation,
body.page-template-page-contact     .post-navigation {
    display: none !important;
}
body.page-template-page-about-php .entry-content,
body.page-template-page-about     .entry-content,
body.page-template-page-contact-php .entry-content,
body.page-template-page-contact     .entry-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
body.page-template-page-about-php .ast-container,
body.page-template-page-about     .ast-container,
body.page-template-page-contact-php .ast-container,
body.page-template-page-contact     .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
}
/* Astra content area wrapper */
body.page-template-page-about-php  .site-content,
body.page-template-page-about      .site-content,
body.page-template-page-contact-php .site-content,
body.page-template-page-contact     .site-content,
body.page-template-page-about-php  #content,
body.page-template-page-about      #content,
body.page-template-page-contact-php #content,
body.page-template-page-contact     #content {
    padding: 0 !important;
    margin: 0 !important;
}
body.page-template-page-about-php  .ast-article-single,
body.page-template-page-about      .ast-article-single,
body.page-template-page-contact-php .ast-article-single,
body.page-template-page-contact     .ast-article-single {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Shared page wrapper ── */
.cp4u-page-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: #1a2e1d;
    overflow-x: clip;
}

/* ── Section helpers ── */
.cp4u-section {
    padding: 72px 24px;
}
.cp4u-section--green-bg {
    background: #0d2b13;
    color: #e6f7ef;
}
.cp4u-section--light-bg {
    background: #f5fdf7;
}
.cp4u-section-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.cp4u-section-head {
    text-align: center;
    margin-bottom: 52px;
}
.cp4u-section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin: 10px 0 16px;
    line-height: 1.2;
    color: inherit;
}
.cp4u-section-head p {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    opacity: .8;
    color: inherit;
}
.cp4u-section-tag {
    display: inline-block;
    background: #00b843;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
}
.cp4u-section-tag--light {
    background: rgba(255,255,255,.15);
    color: #a8f0c3;
}

/* ── Shared Buttons ── */
.cp4u-btn-primary {
    display: inline-block;
    background: #00b843;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
}
.cp4u-btn-primary:hover {
    background: #009935;
    transform: translateY(-1px);
}
.cp4u-btn-outline {
    display: inline-block;
    border: 2px solid #00b843;
    color: #00b843 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
}
.cp4u-btn-outline:hover {
    background: #00b843;
    color: #fff !important;
    transform: translateY(-1px);
}
.cp4u-btn-outline--white {
    border-color: rgba(255,255,255,.7);
    color: #fff !important;
}
.cp4u-btn-outline--white:hover {
    background: #fff;
    color: #00b843 !important;
    border-color: #fff;
}
.cp4u-btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO — shared
   ═══════════════════════════════════════════════ */
.cp4u-page-hero {
    background: linear-gradient(135deg, #0d2b13 0%, #1a4a22 60%, #00b843 100%);
    padding: 90px 24px 80px;
    position: relative;
    overflow: hidden;
}
.cp4u-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.cp4u-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: #fff;
}
.cp4u-page-hero-tag {
    display: inline-block;
    background: rgba(0,184,67,.25);
    border: 1px solid rgba(0,184,67,.5);
    color: #a8f0c3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.cp4u-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 20px;
    color: #fff;
}
.cp4u-page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 560px;
}

/* ══ About hero ══ */
.cp4u-about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 100%;
    padding-left: max(24px, calc(50% - 590px));
    padding-right: max(24px, calc(50% - 590px));
}
.cp4u-about-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cp4u-about-hero-badge-ring {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(0,184,67,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp4u-about-hero-badge {
    text-align: center;
    color: #fff;
}
.cp4u-about-hero-badge-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #00b843;
    line-height: 1;
}
.cp4u-about-hero-badge-lbl {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    opacity: .8;
    margin-top: 6px;
}

/* ── Contact hero ── */
.cp4u-contact-hero .cp4u-page-hero-inner {
    max-width: 680px;
}
.cp4u-contact-hero {
    padding-left: max(24px, calc(50% - 590px));
    padding-right: max(24px, calc(50% - 590px));
}

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.cp4u-stats-bar {
    background: #00b843;
    padding: 32px 24px;
}
.cp4u-stats-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.cp4u-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 36px;
    color: #fff;
    text-align: center;
}
.cp4u-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.cp4u-stat-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: .85;
    margin-top: 4px;
    letter-spacing: .02em;
}
.cp4u-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT — STORY
   ═══════════════════════════════════════════════ */
.cp4u-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.cp4u-about-story-text .cp4u-section-tag {
    margin-bottom: 16px;
}
.cp4u-about-story-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #0d2b13;
}
.cp4u-about-story-text p {
    color: #3d5c42;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.98rem;
}
.cp4u-about-story-checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cp4u-about-story-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a2e1d;
}
.cp4u-about-story-checks li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.cp4u-about-story-img-col {
    position: relative;
}
.cp4u-about-story-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.15);
}
.cp4u-about-story-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.cp4u-about-story-img-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: #00b843;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,184,67,.4);
    z-index: 2;
}
.cp4u-about-story-img-badge svg {
    width: 22px;
    height: 22px;
}

/* ═══════════════════════════════════════════════
   ABOUT — VALUES
   ═══════════════════════════════════════════════ */
.cp4u-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cp4u-value-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: background .2s, transform .2s;
}
.cp4u-value-card:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-2px);
}
.cp4u-value-icon {
    margin-bottom: 18px;
}
.cp4u-value-icon svg {
    width: 40px;
    height: 40px;
}
.cp4u-value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}
.cp4u-value-card p {
    font-size: 0.9rem;
    color: rgba(230,247,239,.75);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT — PROCESS
   ═══════════════════════════════════════════════ */
.cp4u-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}
.cp4u-process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0 16px;
}
.cp4u-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #00b843;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,184,67,.3);
}
.cp4u-process-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #0d2b13;
}
.cp4u-process-content p {
    font-size: 0.88rem;
    color: #3d5c42;
    line-height: 1.65;
    margin: 0;
}
.cp4u-process-connector {
    display: flex;
    align-items: center;
    padding-top: 24px;
    flex-shrink: 0;
}
.cp4u-process-connector svg {
    width: 48px;
    height: 20px;
    opacity: .5;
}

/* ═══════════════════════════════════════════════
   ABOUT — PATCH TYPES
   ═══════════════════════════════════════════════ */
.cp4u-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cp4u-type-card {
    background: #fff;
    border: 1.5px solid #e0f0e6;
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none !important;
    color: #1a2e1d !important;
    display: block;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cp4u-type-card:hover {
    border-color: #00b843;
    box-shadow: 0 8px 32px rgba(0,184,67,.15);
    transform: translateY(-3px);
}
.cp4u-type-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.cp4u-type-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #0d2b13;
}
.cp4u-type-card p {
    font-size: 0.88rem;
    color: #3d5c42;
    line-height: 1.65;
    margin: 0 0 16px;
}
.cp4u-type-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00b843;
}

/* ═══════════════════════════════════════════════
   ABOUT — REVIEWS
   ═══════════════════════════════════════════════ */
.cp4u-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cp4u-review-card {
    background: #f5fdf7;
    border: 1.5px solid #cce9d6;
    border-radius: 16px;
    padding: 28px 24px;
}
.cp4u-review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: .05em;
    margin-bottom: 14px;
}
.cp4u-review-card > p {
    font-size: 0.92rem;
    color: #2d4d33;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}
.cp4u-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cp4u-reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #00b843;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cp4u-reviewer strong {
    display: block;
    font-size: 0.9rem;
    color: #0d2b13;
}
.cp4u-reviewer span {
    font-size: 0.78rem;
    color: #5a7a5e;
}

/* ═══════════════════════════════════════════════
   ABOUT — CTA BANNER
   ═══════════════════════════════════════════════ */
.cp4u-about-cta {
    background: linear-gradient(135deg, #00b843 0%, #0d2b13 100%);
    padding: 80px 24px;
    text-align: center;
}
.cp4u-about-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    color: #fff;
}
.cp4u-about-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
}
.cp4u-about-cta p {
    font-size: 1.05rem;
    opacity: .85;
    margin: 0 0 32px;
    line-height: 1.65;
}
.cp4u-about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   CONTACT — CARDS ROW
   ═══════════════════════════════════════════════ */
.cp4u-contact-cards-row {
    background: #fff;
    padding: 0 24px;
    margin-top: -1px;
}
.cp4u-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid #d0e9d9;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(-36px);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.cp4u-contact-card {
    padding: 32px 28px;
    text-align: center;
    border-right: 1.5px solid #d0e9d9;
}
.cp4u-contact-card:last-child {
    border-right: none;
}
.cp4u-contact-card-icon {
    margin-bottom: 16px;
}
.cp4u-contact-card-icon svg {
    width: 36px;
    height: 36px;
}
.cp4u-contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0d2b13;
}
.cp4u-contact-card p {
    font-size: 0.85rem;
    color: #5a7a5e;
    margin: 0 0 12px;
    line-height: 1.5;
}
.cp4u-contact-card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00b843 !important;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   CONTACT — MAIN GRID
   ═══════════════════════════════════════════════ */
.cp4u-contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}
.cp4u-contact-form-col h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin: 0 0 8px;
    color: #0d2b13;
}
.cp4u-contact-form-sub {
    font-size: 0.95rem;
    color: #5a7a5e;
    margin: 0 0 28px;
}

/* Notice */
.cp4u-contact-notice {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}
.cp4u-contact-notice--success {
    background: #e6f7ef;
    color: #1a4a22;
    border: 1.5px solid #a8e8c0;
}
.cp4u-contact-notice--error {
    background: #fff0f0;
    color: #8b1a1a;
    border: 1.5px solid #f5c6c6;
}

/* Form elements */
.cp4u-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cp4u-form-row {
    display: flex;
    gap: 16px;
}
.cp4u-form-row--2 > * {
    flex: 1;
}
.cp4u-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp4u-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2e1d;
}
.cp4u-form-group label span {
    color: #00b843;
}
.cp4u-form-group input,
.cp4u-form-group select,
.cp4u-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #cce9d6;
    border-radius: 8px;
    font-size: 0.93rem;
    color: #1a2e1d;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}
.cp4u-form-group input:focus,
.cp4u-form-group select:focus,
.cp4u-form-group textarea:focus {
    border-color: #00b843;
    box-shadow: 0 0 0 3px rgba(0,184,67,.12);
}
.cp4u-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300b843' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.cp4u-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit button */
.cp4u-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #00b843;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit;
    width: 100%;
}
.cp4u-contact-submit:hover:not(:disabled) {
    background: #009935;
    transform: translateY(-1px);
}
.cp4u-contact-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}
.cp4u-contact-submit-spinner {
    display: none;
    align-items: center;
    gap: 8px;
}
.cp4u-contact-submit-spinner svg {
    width: 18px;
    height: 18px;
    animation: cp4u-spin 1s linear infinite;
}
@keyframes cp4u-spin {
    to { transform: rotate(360deg); }
}

/* Info column */
.cp4u-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 140px;
}
.cp4u-contact-info-block {
    background: #f5fdf7;
    border: 1.5px solid #cce9d6;
    border-radius: 16px;
    padding: 26px 24px;
}
.cp4u-contact-info-block h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 18px;
    color: #0d2b13;
}
.cp4u-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cp4u-contact-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d4d33;
}
.cp4u-contact-info-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.cp4u-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.cp4u-hours-table tr {
    border-bottom: 1px solid #d0e9d9;
}
.cp4u-hours-table tr:last-child {
    border-bottom: none;
}
.cp4u-hours-table td {
    padding: 8px 0;
    color: #2d4d33;
    vertical-align: middle;
}
.cp4u-hours-table td:last-child {
    text-align: right;
}
.cp4u-hours-note {
    font-size: 0.8rem;
    color: #5a7a5e;
    margin: 14px 0 0;
    line-height: 1.6;
}
.cp4u-contact-socials {
    display: flex;
    gap: 12px;
}
.cp4u-contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e6f7ef;
    border: 1.5px solid #cce9d6;
    border-radius: 10px;
    color: #00b843;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
}
.cp4u-contact-socials a:hover {
    background: #00b843;
    color: #fff;
    transform: translateY(-2px);
}
.cp4u-contact-socials a svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════
   CONTACT — FAQ
   ═══════════════════════════════════════════════ */
.cp4u-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cp4u-faq-item {
    background: #fff;
    border: 1.5px solid #d0e9d9;
    border-radius: 14px;
    padding: 24px 22px;
}
.cp4u-faq-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #0d2b13;
}
.cp4u-faq-item p {
    font-size: 0.88rem;
    color: #3d5c42;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cp4u-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cp4u-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cp4u-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cp4u-contact-info-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .cp4u-section {
        padding: 48px 16px;
    }
    .cp4u-about-hero {
        padding-left: 16px;
        padding-right: 16px;
        flex-direction: column;
    }
    .cp4u-about-hero-badge-ring {
        display: none;
    }
    .cp4u-stats-bar-inner {
        gap: 8px;
    }
    .cp4u-stat-item {
        padding: 8px 16px;
    }
    .cp4u-stat-divider {
        display: none;
    }
    .cp4u-about-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cp4u-about-story-img-col {
        order: -1;
    }
    .cp4u-about-story-img {
        height: 280px;
    }
    .cp4u-values-grid,
    .cp4u-types-grid,
    .cp4u-reviews-grid,
    .cp4u-faq-grid {
        grid-template-columns: 1fr;
    }
    .cp4u-process-steps {
        flex-direction: column;
        gap: 32px;
    }
    .cp4u-process-connector {
        display: none;
    }
    .cp4u-process-step {
        flex: none;
        padding: 0;
    }
    .cp4u-contact-cards {
        grid-template-columns: 1fr;
        transform: translateY(-24px);
    }
    .cp4u-contact-card {
        border-right: none;
        border-bottom: 1.5px solid #d0e9d9;
    }
    .cp4u-contact-card:last-child {
        border-bottom: none;
    }
    .cp4u-form-row--2 {
        flex-direction: column;
    }
    .cp4u-contact-hero {
        padding-left: 16px;
        padding-right: 16px;
    }
    .cp4u-about-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cp4u-stat-item {
        padding: 6px 10px;
    }
    .cp4u-stat-num {
        font-size: 1.4rem;
    }
    .cp4u-about-hero-btns {
        flex-direction: column;
    }
}
