.cp-section {
    --cp-orange: #ff6817;
    --cp-ink: #30353d;
    --cp-muted: #666d75;
    --cp-line: #d9dde1;
    --cp-bg: #f6f7f8;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    color: var(--cp-ink);
    font-family: "Roboto Condensed", "Arial Narrow", Roboto, Arial, sans-serif;
}

.cp-section *,
.cp-section *::before,
.cp-section *::after {
    box-sizing: border-box;
}

.cp-shell {
    width: min(calc(100% - 48px), 1440px);
    margin-inline: auto;
}

.cp-light {
    background: var(--cp-bg);
}

.cp-title {
    position: relative;
    margin: 0 0 28px;
    padding-left: 17px;
    color: var(--cp-ink);
    font-size: clamp(1.65rem, 2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.cp-title::before {
    position: absolute;
    top: .08em;
    bottom: .08em;
    left: 0;
    width: 5px;
    border-radius: 2px;
    background: var(--cp-orange);
    content: "";
}

.cp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 58px;
    padding: 0 30px;
    border: 2px solid var(--cp-orange);
    border-radius: 4px;
    background: var(--cp-orange);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.cp-button:hover {
    background: #e95509;
    transform: translateY(-2px);
}

.cp-button:focus-visible,
.cp-text-link:focus-visible,
.cp-gallery__grid a:focus-visible {
    outline: 3px solid rgba(255, 104, 23, .38);
    outline-offset: 3px;
}

.cp-button--outline {
    min-height: 44px;
    padding-inline: 46px;
    background: transparent;
    color: var(--cp-orange) !important;
    font-size: .9rem;
    text-transform: none;
}

.cp-button--outline:hover {
    background: var(--cp-orange);
    color: #fff !important;
}

.cp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cp-orange) !important;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none !important;
}

.cp-section .cp-icon.cp-icon--custom { filter: none; }
.cp-icon {
    display: block;
    width: 1em;
    height: 1em;
    object-fit: contain;
}

.cp-hero {
    overflow: hidden;
    background: #f1f3f5;
}

.cp-hero__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 610px;
}

.cp-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 68px 40px 68px max(24px, calc((100% - 1440px) / 2));
}

.cp-hero h1 {
    max-width: 720px;
    margin: 0 0 22px;
    color: var(--cp-ink);
    font-size: clamp(2.5rem, 3.25vw, 3.1rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.cp-hero__lead {
    max-width: 620px;
    margin: 0;
    color: #40464d;
    font-family: Roboto, Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.5;
}

.cp-hero__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 35px 0 34px;
    padding: 0;
    list-style: none;
}

.cp-hero__facts li {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    border-right: 1px solid #cbd0d5;
    color: #242a31;
    font-family: Roboto, Arial, sans-serif;
    font-size: .74rem;
    line-height: 1.35;
    text-align: center;
}

.cp-hero__facts li:first-child {
    padding-left: 0;
}

.cp-hero__facts li:last-child {
    padding-right: 0;
    border-right: 0;
}

.cp-hero__facts .cp-icon {
    filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(3523%) hue-rotate(350deg) brightness(101%) contrast(104%);
    font-size: 34px;
}

.cp-hero__action {
    display: flex;
    align-items: center;
    gap: 28px;
}

.cp-hero-upload {
    position: relative;
    display: flex;
    max-width: 280px;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #767d84;
    font-family: Roboto, Arial, sans-serif;
    font-size: .72rem;
    line-height: 1.4;
    cursor: pointer;
}

.cp-hero-upload input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cp-hero-upload.is-dragging,
.cp-hero-upload:hover {
    color: var(--cp-orange);
}

.cp-hero-upload .cp-inline-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(3523%) hue-rotate(350deg) brightness(101%) contrast(104%);
    font-size: 28px;
}

.cp-hero__media {
    position: relative;
    min-width: 0;
}

.cp-hero__media::before {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 25%;
    background: linear-gradient(90deg, #f1f3f5, rgba(241, 243, 245, 0));
    content: "";
}

.cp-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: 58% center;
}

.cp-materials {
    padding: 38px 0 42px;
    border-top: 1px solid #e1e4e7;
}

.cp-materials__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.cp-material-card,
.cp-service-card {
    overflow: hidden;
    border: 1px solid #e0e3e6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(34, 42, 51, .08);
}

.cp-material-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.cp-material-card > img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
}

.cp-material-card__body {
    display: flex;
    min-height: 228px;
    flex: 1;
    flex-direction: column;
    padding: 19px 16px 17px;
}

.cp-material-card h3,
.cp-service-card h3,
.cp-advantage h3,
.cp-process-step h3 {
    margin: 0;
    color: #20262d;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.cp-material-card p,
.cp-service-card p,
.cp-advantage p,
.cp-process-step p {
    color: #4e555d;
    font-family: Roboto, Arial, sans-serif;
}

.cp-material-card p {
    margin: 13px 0 18px;
    font-size: .78rem;
    line-height: 1.5;
    text-align: left;
}

.cp-material-card .cp-text-link {
    margin-top: auto;
}

.cp-services {
    padding: 12px 0 42px;
}

.cp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cp-service-card {
    position: relative;
}

.cp-service-card__media {
    height: 230px;
    overflow: hidden;
}

.cp-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.cp-service-card:hover .cp-service-card__media img {
    transform: scale(1.025);
}

.cp-service-card__icon {
    position: absolute;
    top: 188px;
    left: 22px;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--cp-orange);
    color: #fff;
}

.cp-service-card__icon .cp-icon {
    filter: brightness(0) invert(1);
    font-size: 34px;
}

.cp-service-card__body {
    padding: 37px 22px 22px;
}

.cp-service-card p {
    min-height: 70px;
    margin: 14px 0 18px;
    font-size: .83rem;
    line-height: 1.5;
    text-align: left;
}

.cp-gallery {
    padding: 20px 0 38px;
}

.cp-gallery__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.cp-gallery__grid a {
    display: block;
    overflow: hidden;
    border-radius: 7px;
    background: #e9ebed;
}

.cp-gallery__grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
    transition: transform .3s ease;
}

.cp-gallery__grid a:hover img {
    transform: scale(1.04);
}

.cp-gallery__action {
    margin-top: 20px;
    text-align: center;
}

.cp-advantages {
    padding: 33px 0 43px;
    border-top: 1px solid #e1e4e7;
}

.cp-advantages__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cp-advantage {
    min-width: 0;
    padding: 0 23px;
    border-right: 1px solid var(--cp-line);
    text-align: center;
}

.cp-advantage:first-child {
    padding-left: 0;
}

.cp-advantage:last-child {
    padding-right: 0;
    border-right: 0;
}

.cp-advantage .cp-icon {
    margin: 0 auto 15px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(3523%) hue-rotate(350deg) brightness(101%) contrast(104%);
    font-size: 43px;
}

.cp-advantage h3 {
    min-height: 36px;
    font-size: .86rem;
}

.cp-advantage p {
    margin: 10px 0 0;
    font-size: .76rem;
    line-height: 1.5;
    text-align: center;
}

.cp-process {
    padding: 32px 0 34px;
    border-top: 1px solid #e1e4e7;
}

.cp-process__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cp-process-step {
    position: relative;
    min-width: 0;
    text-align: center;
}

.cp-process-step:not(:last-child)::after {
    position: absolute;
    top: 50px;
    left: calc(100% + 13px);
    color: #9aa0a6;
    content: "\f344";
    font: normal 28px/1 dashicons;
    transform: translate(-50%, -50%);
}

.cp-process-step__visual {
    position: relative;
    width: 116px;
    height: 105px;
    margin: 0 auto 16px;
}

.cp-process-step__number {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--cp-orange);
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: .75rem;
    font-weight: 800;
}

.cp-process-step__circle {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    border: 1px solid #b9bec4;
    border-radius: 50%;
    background: #fafbfc;
    color: #333941;
}

.cp-process-step__circle .cp-icon {
    font-size: 45px;
}

.cp-process-step h3 {
    min-height: 37px;
    font-size: .84rem;
}

.cp-process-step p {
    margin: 9px 0 0;
    font-size: .73rem;
    line-height: 1.48;
    text-align: center;
}

.cp-quote {
    padding: 8px 0 42px;
}

.cp-quote__card {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    overflow: hidden;
    border: 1px solid #dfe3e6;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(34, 42, 51, .06);
}

.cp-quote__intro {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 34px 38px 155px;
}

.cp-quote__intro > div {
    position: relative;
    z-index: 2;
}

.cp-quote__intro h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: #242a31;
    font-size: clamp(1.7rem, 2.25vw, 2.45rem);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.cp-quote__intro ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cp-quote__intro li {
    position: relative;
    padding-left: 25px;
    font-family: Roboto, Arial, sans-serif;
    font-size: .84rem;
}

.cp-quote__intro li::before {
    position: absolute;
    top: -.08em;
    left: 0;
    color: var(--cp-orange);
    content: "\f12a";
    font: normal 20px/1 dashicons;
}

.cp-quote__intro img {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: center 42%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 40%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 40%, #000 100%);
}

.cp-quote__form {
    min-width: 0;
}

.cp-quote .cp-request-form {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 28px 32px;
    border-left: 1px solid #e1e4e7;
}

.cp-quote .cp-cf7-upload {
    width: 100%;
    margin-bottom: 16px;
}

.cp-quote .codedropz-upload-handler {
    position: relative;
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    padding: 18px;
    border: 2px dashed #aeb4ba;
    border-radius: 6px;
    background: #fafbfc;
    color: #343a41;
    text-align: center;
    transition: border-color .2s ease, background-color .2s ease;
}

.cp-quote .codedropz-dragover,
.cp-quote .codedropz-upload-handler:hover {
    border-color: var(--cp-orange);
    background: #fff8f4;
}

.cp-quote .codedropz-upload-inner::before {
    display: block;
    width: 43px;
    height: 43px;
    margin: 0 auto 7px;
    background: url('../icons/plastics/cloud-arrow-up.svg') center / contain no-repeat;
    content: '';
}

.cp-quote .codedropz-upload-inner h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.cp-quote .codedropz-btn-wrap a {
    color: var(--cp-orange);
    text-decoration: underline;
    font-size: 14px;
}

.cp-quote .cp-upload-hint {
    display: block;
    margin-top: 8px;
    color: #656c74;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.cp-quote .dnd-upload-status {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid var(--cp-line);
    border-radius: 4px;
    background: #fafbfc;
}

.cp-quote .dnd-upload-details .name {
    flex-wrap: wrap;
    gap: 3px 8px;
    padding-right: 34px;
    color: var(--cp-ink);
    font-size: 13px;
}

.cp-quote .dnd-upload-details .name span {
    white-space: normal;
    overflow-wrap: anywhere;
    padding: 0;
}

.cp-quote .dnd-upload-details .remove-file {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 6px;
    right: 4px;
    width: 36px;
    height: 36px;
}

.cp-quote .dnd-progress-bar {
    height: 6px;
}

.cp-quote .dnd-progress-bar span {
    background: var(--cp-orange);
    font-size: 0;
}

.cp-quote .dnd-upload-status.complete .dnd-progress-bar {
    display: none;
}

.cp-quote .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cp-quote .wpcf7-not-valid-tip {
    display: block;
    margin: 5px 0;
    color: #b3261e;
    font-size: 12px;
}

.cp-quote form .wpcf7-response-output {
    display: block;
    width: 100%;
    margin: 16px 0 0;
    padding: 10px 12px;
    font-size: 14px;
}

.cp-quote form.init .wpcf7-response-output,
.cp-quote form.submitting .wpcf7-response-output {
    display: none;
}

.cp-request-form__grid {
    --cp-input-height: 46px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 11px 14px;
}

.cp-request-form__grid label:nth-child(1),
.cp-request-form__grid label:nth-child(2) {
    grid-column: span 3;
}

.cp-request-form__grid label:nth-child(3) {
    grid-column: span 2;
}

.cp-request-form__grid label:nth-child(4) {
    grid-column: span 4;
}

.cp-request-form__grid label {
    position: relative;
}

.cp-request-form__grid .cp-field-label {
    position: absolute;
    z-index: 1;
    /* Ошибка CF7 увеличивает контейнер, но не должна сдвигать подпись поля. */
    top: calc(var(--cp-input-height) / 2);
    left: 14px;
    color: #8a9096;
    font-family: Roboto, Arial, sans-serif;
    font-size: .76rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.cp-request-form__grid label:focus-within .cp-field-label,
.cp-request-form__grid label:has(input:not(:placeholder-shown)) .cp-field-label {
    display: none;
}

.cp-request-form__grid input {
    width: 100%;
    height: var(--cp-input-height);
    padding: 0 14px;
    border: 1px solid #d5d9dd;
    border-radius: 4px;
    background: #fff;
    color: #2c3239;
    font-family: Roboto, Arial, sans-serif;
    font-size: .84rem;
}

.cp-request-form__grid input:focus {
    border-color: var(--cp-orange);
    outline: 2px solid rgba(255, 104, 23, .15);
}

.cp-request-form__footer {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 22px;
    margin-top: 15px;
}

.cp-request-form__footer .cp-button {
    min-width: 280px;
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.cp-request-form__footer .cp-button:disabled {
    cursor: wait;
    opacity: .65;
}

.cp-request-form__privacy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 8px;
    color: #878d93;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px !important;
    line-height: 1.4;
}

.cp-request-form__privacy span,
.cp-request-form__privacy a {
    font-size: inherit !important;
    line-height: inherit !important;
}

.cp-request-form__privacy input {
    margin: 2px 0 0;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.cp-quote .cp-request-form__privacy .wpcf7-list-item {
    margin: 0;
}

.cp-quote .cp-request-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
}

.cp-request-form__privacy a {
    color: inherit;
    text-decoration: underline;
}

.cp-request-form__trap {
    position: absolute !important;
    left: -9999px !important;
}

.cp-request-form__status {
    min-height: 20px;
    margin: 10px 0 0;
    color: #515860;
    font-family: Roboto, Arial, sans-serif;
    font-size: .78rem;
}

.cp-request-form__status.is-success {
    color: #19703b;
}

.cp-request-form__status.is-error {
    color: #b42318;
}

@media (max-width: 1180px) {
    .cp-hero__grid {
        min-height: 560px;
    }

    .cp-hero__media img {
        min-height: 560px;
    }

    .cp-materials__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cp-material-card__body {
        min-height: 210px;
    }

    .cp-advantages__grid,
    .cp-process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 36px;
    }

    .cp-advantage:nth-child(3) {
        border-right: 0;
    }

    .cp-process-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .cp-shell {
        width: min(calc(100% - 32px), 720px);
    }

    .cp-hero__grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .cp-hero__content {
        padding: 48px 24px 38px;
    }

    .cp-hero__media {
        height: 430px;
    }

    .cp-hero__media::before {
        inset: 0 0 auto;
        width: auto;
        height: 22%;
        background: linear-gradient(180deg, #f1f3f5, rgba(241, 243, 245, 0));
    }

    .cp-hero__media img {
        min-height: 0;
    }

    .cp-services__grid {
        grid-template-columns: 1fr;
    }

    .cp-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cp-quote__card {
        grid-template-columns: 1fr;
    }

    .cp-quote__intro {
        min-height: 330px;
    }

    .cp-quote .cp-request-form {
        border-top: 1px solid #e1e4e7;
        border-left: 0;
    }
}

@media (max-width: 768px) {
    .cp-materials > .cp-shell,
    .cp-services > .cp-shell,
    .cp-gallery > .cp-shell {
        width: 100%;
    }

    .cp-materials .cp-title,
    .cp-services .cp-title,
    .cp-gallery .cp-title {
        margin-inline: 16px;
    }

    /* Полная карточка и 40% следующей остаются видны у края экрана. */
    .cp-section .cp-mobile-carousel {
        display: flex;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 4px 16px 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        scrollbar-width: none;
    }

    .cp-mobile-carousel::-webkit-scrollbar {
        display: none;
    }

    .cp-mobile-carousel > * {
        flex: 0 0 calc((100% - 12px) / 1.4);
        min-width: 0;
        scroll-snap-align: start;
    }

    .cp-mobile-carousel:focus-visible {
        outline: 2px solid var(--cp-orange) !important;
        outline-offset: -2px;
    }

    .cp-material-card__body {
        min-height: 200px;
    }

    .cp-services__grid .cp-service-card,
    .cp-service-card__body {
        display: flex;
        flex-direction: column;
    }

    .cp-service-card__media {
        height: 170px;
    }

    .cp-service-card__icon {
        top: 142px;
        left: 16px;
        width: 56px;
        height: 56px;
        border-width: 4px;
    }

    .cp-service-card__icon .cp-icon {
        font-size: 28px;
    }

    .cp-service-card__body {
        flex: 1;
        padding: 36px 16px 20px;
    }

    .cp-service-card p {
        flex: 1;
        min-height: 0;
    }

    .cp-advantages__grid,
    .cp-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
    }

    .cp-advantages__grid .cp-advantage {
        padding: 0 10px;
        border: 0;
    }

    .cp-advantages__grid .cp-advantage:nth-child(odd) {
        border-right: 1px solid var(--cp-line);
    }

    .cp-process-step::after {
        display: none;
    }

    .cp-process-step__visual {
        width: 90px;
        height: 84px;
        margin-bottom: 12px;
    }

    .cp-process-step__circle {
        width: 76px;
        height: 76px;
    }

    .cp-process-step__circle .cp-icon {
        font-size: 36px;
    }

    .cp-process-step__number {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 620px) {
    .cp-shell {
        width: min(calc(100% - 24px), 520px);
    }

    .cp-title {
        margin-bottom: 22px;
        font-size: 1.45rem;
    }

    .cp-hero__content {
        padding: 38px 18px 30px;
    }

    .cp-hero h1 {
        font-size: clamp(2.05rem, 10.5vw, 3rem);
    }

    .cp-hero__facts {
        grid-template-columns: 1fr 1fr;
        row-gap: 22px;
    }

    .cp-hero__facts li:nth-child(2) {
        border-right: 0;
    }

    .cp-hero__action {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

    .cp-hero-upload {
        max-width: none;
    }

    .cp-hero__media {
        height: 310px;
    }

    .cp-request-form__grid {
        grid-template-columns: 1fr;
    }

    .cp-request-form__grid label:nth-child(n) {
        grid-column: auto;
    }

    .cp-request-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .cp-request-form__footer .cp-button {
        width: 100%;
        min-width: 0;
        flex-basis: auto;
    }
}

@media (max-width: 430px) {
    .cp-quote__intro {
        padding: 28px 24px 150px;
    }

    .cp-quote__intro img {
        width: 100%;
    }

    .cp-quote .cp-request-form {
        padding: 24px 18px;
    }
}

.editor-styles-wrapper .cp-section {
    max-width: none;
}
