/* Hero */
.cp-hero { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 40px 0; }
.cp-hero__sub { font-size: 17px; line-height: 1.6; }
.cp-hero__logo { width: 172px; }

/* Key numbers */
.cp-numbers { display: flex; gap: 24px; margin: 40px 0; }
.cp-numbers__item { flex: 1; background: #f5f5f5; border-radius: 10px; padding: 18px 14px; text-align: center; }
.cp-numbers__val { font-size: 22px; font-weight: 700; color: #21A038; }
.cp-numbers__label { font-size: 13px; color: #666; margin-top: 5px; line-height: 1.3; }

/* Example */
.cp-example { display: flex; background: #eaf7ec; border-left: 4px solid #21A038; border-radius: 0 8px 8px 0;
    padding: 14px 20px; margin: 40px 0; flex-wrap: wrap; gap: 10px; }
.cp-example__label { font-weight: 700; color: #21A038; font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.5px; white-space: nowrap; width: 100%; }
.cp-example__text { font-size: 15px; line-height: 1.5; }

/* Tariffs */
.cp-tariffs { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0 40px 0; }
.cp-tariff { flex: 1 1 300px; border: 2px solid #e0e0e0; border-radius: 12px; padding: 22px 24px; }
.cp-tariff--accent { border-color: #21A038; }
.cp-tariff__title { font-weight: 700; font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.cp-zero-badge { background: #21A038; color: #fff; font-size: 13px; padding: 2px 8px; border-radius: 4px; font-weight: 700; }
.cp-tariff__rows { border-top: 1px solid #f0f0f0; }
.cp-tariff__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; gap: 12px; }
.cp-tariff__key { color: #777; font-size: 14px; }
.cp-tariff__val { font-weight: 600; font-size: 14px; text-align: right; }
.cp-green { color: #21A038; }
.cp-red { color: #eb2f2f; }
.cp-tariff__note { margin-top: 14px; font-size: 13px; color: #666; line-height: 1.5; background: #f9f9f9; border-radius: 6px; padding: 10px 14px; }

/* Steps */
.cp-steps { display: flex; flex-wrap: wrap; gap: 16px; margin: 40px 0; }
.cp-step { display: flex; align-items: flex-start; gap: 14px; }
.cp-step__num { background: #21A038; color: #fff; font-weight: 700; font-size: 17px; width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-step__text { padding-top: 8px; line-height: 1.45; font-size: 15px; }

/* Requirements */
.cp-reqs { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 40px 0; }
.cp-req { display: flex; align-items: center; gap: 12px; flex: 1 1 280px; background: #f9f9f9; border-radius: 8px; padding: 13px 16px; }
.cp-req__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* FAQ */
.cp-faq { margin: 20px 0; }
.cp-faq__item { padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.cp-faq__item:last-child { border-bottom: none; }
.cp-faq__q { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.cp-faq__a { color: #555; line-height: 1.6; font-size: 14px; }

/* CTA */
.cp-cta { text-align: center; padding: 10px 0 20px; }

@media (min-width: 760px) {
    .cp-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .cp-step:last-child:nth-child(5) {
        grid-column: 2 / 4;
        justify-self: center;
        max-width: 220px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .cp-hero { flex-wrap: wrap; }
    .cp-hero__logo { order: 1; width: 100%; text-align: center; }
    .cp-hero__sub { order: 2; width: 100%; }

    .cp-numbers { flex-direction: column; }

    .cp-tariffs { flex-direction: column; }

    .cp-step { gap: 10px; align-items: center; }
    .cp-step__num { width: 32px; height: 32px; font-size: 15px; }
    .cp-step__text { font-size: 14px; padding: 0; }

    .cp-reqs { flex-direction: column; }
    .cp-req { flex: 0 0 auto; padding: 8px 12px; }
    .cp-req__icon { width: 18px; height: 18px; }
}