.contact-page-shell .content {
    padding-inline: 16px;
}

.contact-page {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 20px 0 48px;
    color: #172033;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    padding: 28px 22px;
    border: 1px solid #bdeed0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 5% 12%, rgba(37, 211, 102, .16), transparent 34%),
        linear-gradient(145deg, #f6fff9 0%, #e9fbf0 100%);
    box-shadow: 0 20px 54px rgba(28, 83, 49, .1);
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset-inline-start: -48px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 34px solid rgba(37, 211, 102, .08);
    border-radius: 50%;
}

.contact-hero__copy,
.contact-hero__visual { position: relative; z-index: 1; }

.contact-kicker,
.contact-form__heading > span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dff8e9;
    color: #138443;
    font-size: 12px;
    font-weight: 900;
}

.contact-hero h1 {
    max-width: 680px;
    margin: 14px 0 10px;
    font-size: clamp(29px, 8vw, 48px);
    line-height: 1.28;
    letter-spacing: -.5px;
}

.contact-hero__copy > p {
    max-width: 650px;
    margin: 0;
    color: #596276;
    font-size: 16px;
    line-height: 1.9;
}

.contact-hero__trust {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.contact-hero__trust span { display: flex; align-items: center; gap: 8px; }
.contact-hero__trust b { color: #16a34a; }

.contact-hero__visual {
    min-height: 182px;
    padding: 10px 0;
}

.contact-hero__bubble {
    position: absolute;
    display: block;
    max-width: 82%;
    padding: 13px 16px;
    border-radius: 18px 18px 5px 18px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(30, 64, 45, .12);
}

.contact-hero__bubble--one { inset-inline-end: 0; top: 0; }
.contact-hero__bubble--two { inset-inline-start: 0; top: 68px; border-radius: 18px 18px 18px 5px; }
.contact-hero__reply {
    position: absolute;
    inset-inline-end: 12px;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 19px;
    background: #25d366;
    color: white;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .26);
}

.contact-success {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin: 18px 0 0;
    padding: 16px;
    border: 1px solid #a8eac1;
    border-radius: 18px;
    background: #ecfff3;
    color: #146b36;
}

.contact-success > span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    height: 34px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-weight: 900;
}

.contact-success strong { display: block; margin-bottom: 3px; }
.contact-success p { margin: 0; line-height: 1.7; }

.contact-layout {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.contact-form,
.contact-help {
    border: 1px solid #e2e6eb;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(25, 34, 49, .07);
}

.contact-form { padding: 22px 18px; }
.contact-form__heading h2 { margin: 10px 0 4px; font-size: 26px; }
.contact-form__heading p { margin: 0; color: #70798b; line-height: 1.7; }
.contact-form__grid { display: grid; gap: 16px; margin-top: 22px; }

.contact-field { display: grid; gap: 8px; color: #293246; font-weight: 800; }
.contact-field > span { font-size: 14px; }
.contact-field small { color: #7a8292; font-size: 11px; font-weight: 600; line-height: 1.6; }
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 14px;
    border: 1.5px solid #dce1e7;
    border-radius: 14px;
    background: #fbfcfd;
    color: #172033;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-field textarea { min-height: 145px; resize: vertical; line-height: 1.8; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #25d366;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .13);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #a0a7b3; font-weight: 600; }
.contact-field--message { margin-top: 16px; }

.contact-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    margin-top: 19px;
    border: 0;
    border-radius: 16px;
    background: #25d366;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .22);
    transition: transform .18s ease, background .18s ease;
}

.contact-submit:hover { background: #1fbd5a; transform: translateY(-1px); }
.contact-submit:focus-visible { outline: 3px solid rgba(37, 211, 102, .35); outline-offset: 3px; }
.contact-form__privacy { margin: 10px 0 0; color: #7a8292; font-size: 11px; line-height: 1.7; text-align: center; }

.contact-help { align-self: start; padding: 23px 20px; background: #172033; color: #fff; }
.contact-help__icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 14px;
    background: #25d366;
    font-size: 22px;
    font-weight: 900;
}
.contact-help h2 { margin: 15px 0 18px; font-size: 22px; }
.contact-help ul { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.contact-help li { display: grid; grid-template-columns: 31px 1fr; gap: 11px; align-items: start; }
.contact-help li > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; background: rgba(37, 211, 102, .17); color: #77ed9f; font-weight: 900; }
.contact-help p { margin: 0; color: #c7cdd7; font-size: 12px; line-height: 1.7; }
.contact-help strong { display: block; margin-bottom: 2px; color: #fff; font-size: 13px; }

@media (min-width: 760px) {
    .contact-page { padding-top: 34px; }
    .contact-hero { grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: center; padding: 44px; }
    .contact-hero__visual { min-height: 205px; }
    .contact-layout { grid-template-columns: minmax(0, 1fr) 310px; align-items: start; }
    .contact-form { padding: 32px; }
    .contact-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-help { position: sticky; top: 104px; }
}

@media (prefers-reduced-motion: reduce) {
    .contact-submit,
    .contact-field input,
    .contact-field select,
    .contact-field textarea { transition: none; }
}
