:root {
    --renox-ink: #0b0f17;
    --renox-muted: #566171;
    --renox-line: #e7ebf0;
    --renox-pink: #f5007e;
    --renox-orange: #ff8a00;
    --renox-yellow: #ffd400;
    --renox-blue: #00a8f0;
    --renox-green: #2bb673;
    --renox-shadow: 0 24px 70px rgba(12, 17, 26, .13);
    --renox-radius: 8px;
    --renox-page-width: min(1620px, calc(100% - 56px));
    --renox-anchor-offset: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--renox-anchor-offset);
}

body {
    margin: 0;
    background: #fff;
    color: var(--renox-ink);
    font-family: "Manrope", Arial, sans-serif;
    letter-spacing: 0;
}

body.is-fixed {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.container {
    width: var(--renox-page-width);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(231, 235, 240, .9);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    width: var(--renox-page-width);
    min-height: 76px;
    margin-inline: auto;
}

.site-header__logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-header__logo img {
    width: 150px;
    height: auto;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a {
    position: relative;
    color: #171d27;
    font-size: 13px;
    font-weight: 900;
}

.site-nav__list a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 3px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--renox-pink), var(--renox-orange), var(--renox-blue));
    transition: transform .2s ease;
}

.site-nav__list a:hover::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-link,
.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    color: var(--renox-pink);
    box-shadow: 0 10px 26px rgba(20, 28, 40, .06);
}

.phone-link {
    gap: 8px;
    width: auto;
    padding: 0 12px;
    color: var(--renox-ink);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.phone-link svg {
    color: var(--renox-pink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--renox-radius);
    background: linear-gradient(135deg, var(--renox-pink), #c5007d);
    color: #fff;
    box-shadow: 0 18px 42px rgba(245, 0, 126, .28);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(245, 0, 126, .34);
}

.button--small {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 12px;
}

.button--ghost {
    border-color: rgba(16, 19, 26, .14);
    background: rgba(255, 255, 255, .86);
    color: var(--renox-ink);
    box-shadow: 0 14px 30px rgba(20, 28, 40, .08);
    backdrop-filter: blur(8px);
}

.menu-toggle {
    position: relative;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    color: var(--renox-ink);
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:first-child {
    transform: translate(-50%, -5px);
}

.menu-toggle span:last-child {
    transform: translate(-50%, 5px);
}

.mobile-socials {
    display: none;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #0b0f17;
    color: #fff;
    font-size: 11px;
}

.mobile-socials svg {
    stroke-width: 2.4;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    background: #fff;
    scroll-margin-top: var(--renox-anchor-offset);
}

section[id] {
    scroll-margin-top: var(--renox-anchor-offset);
}

.quote-form {
    scroll-margin-top: var(--renox-anchor-offset);
}

.hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center right;
}

.hero__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 10%, rgba(255, 255, 255, .88) 25%, rgba(255, 255, 255, .58) 42%, rgba(255, 255, 255, .16) 62%, rgba(255, 255, 255, 0) 78%),
        linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .04) 58%, rgba(255, 255, 255, .94) 100%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: 58px 0 136px;
}

.hero__content {
    width: min(720px, 52vw);
}

.hero__eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    color: #d60073;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(42px, 4.35vw, 70px);
    font-weight: 700;
    line-height: 1.02;
}

.hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(92deg, var(--renox-pink) 0%, var(--renox-pink) 42%, var(--renox-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero__subtitle {
    max-width: 560px;
    margin: 22px 0 0;
    color: #4f5968;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.62;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.hero__proof-item {
    display: grid;
    gap: 3px;
    min-width: 190px;
    padding-left: 14px;
    border-left: 4px solid var(--renox-pink);
}

.hero__proof-item:nth-child(2) {
    border-left-color: var(--renox-blue);
}

.hero__proof-item strong {
    font-size: 15px;
    font-weight: 900;
}

.hero__proof-item span {
    color: var(--renox-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.hero-benefits {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: -90px;
    margin-bottom: 44px;
    padding: 14px 18px;
    border: 1px solid rgba(231, 235, 240, .96);
    border-radius: var(--renox-radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--renox-shadow);
    backdrop-filter: blur(12px);
}

.benefit-pill {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 82px;
    padding: 14px 18px;
    border-right: 1px solid var(--renox-line);
    color: #202735;
}

.benefit-pill:last-child {
    border-right: 0;
}

.benefit-pill:nth-child(2n) .benefit-pill__icon {
    color: var(--renox-orange);
    background: rgba(255, 138, 0, .1);
}

.benefit-pill:nth-child(3n) .benefit-pill__icon {
    color: var(--renox-blue);
    background: rgba(0, 168, 240, .1);
}

.benefit-pill:nth-child(4n) .benefit-pill__icon {
    color: var(--renox-green);
    background: rgba(43, 182, 115, .1);
}

.benefit-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--renox-radius);
    background: rgba(245, 0, 126, .08);
    color: var(--renox-pink);
    font-size: 25px;
}

.benefit-pill__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.benefit-pill__copy strong {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.benefit-pill__copy small {
    color: var(--renox-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 620px;
}

.section-heading--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: var(--renox-pink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.section h2,
.projects h2,
.quote-section h2,
.site-footer h2 {
    margin: 0;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.section h2,
.projects h2,
.quote-section h2 {
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
}

.section-heading p:not(.section-eyebrow),
.why__content > p,
.projects__intro > p,
.quote__visual > p {
    color: var(--renox-muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
}

.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    box-shadow: 0 18px 54px rgba(12, 17, 26, .08);
}

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.28 / 1;
}

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

.service-card:hover .service-card__image img {
    transform: scale(1.045);
}

.service-card__body {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 24px 22px 22px;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-top: -48px;
    border: 1px solid rgba(245, 0, 126, .12);
    border-radius: var(--renox-radius);
    background: #fff;
    color: var(--renox-pink);
    box-shadow: 0 14px 36px rgba(12, 17, 26, .13);
    font-size: 23px;
}

.service-card:nth-child(2n) .service-card__icon {
    color: var(--renox-orange);
}

.service-card:nth-child(3n) .service-card__icon {
    color: var(--renox-blue);
}

.service-card h3,
.feature-item h3,
.project-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.service-card p,
.feature-item p,
.project-card p {
    margin: 0;
    color: var(--renox-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.service-card a,
.projects__intro a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--renox-pink);
    font-size: 13px;
    font-weight: 900;
}

.why {
    background:
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.quiz-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.quiz-shell {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: stretch;
}

.quiz-copy,
.quiz-card,
.problem-card,
.process-steps article {
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    box-shadow: 0 18px 54px rgba(12, 17, 26, .08);
}

.quiz-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(245, 0, 126, .08), rgba(0, 168, 240, .08)),
        #fff;
}

.quiz-copy h2,
.consult__content h2,
.about__content h2 {
    margin: 0;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
}

.quiz-copy p,
.consult__content > p,
.about__content p {
    color: var(--renox-muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
}

.quiz-bonuses,
.consult-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.quiz-bonuses span,
.consult-list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #202735;
    font-size: 14px;
    font-weight: 900;
}

.quiz-bonuses svg,
.consult-list svg {
    color: var(--renox-green);
}

.quiz-card {
    padding: 34px;
}

.quiz-step {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-step.is-active {
    display: block;
}

.quiz-step legend {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.quiz-step legend span {
    color: var(--renox-pink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.quiz-options label {
    cursor: pointer;
}

.quiz-options input {
    position: absolute;
    opacity: 0;
}

.quiz-options span,
.quiz-contact-grid input {
    display: flex;
    min-height: 54px;
    align-items: center;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    padding: 0 16px;
    color: #202735;
    font-size: 14px;
    font-weight: 800;
}

.quiz-options input:checked + span {
    border-color: rgba(245, 0, 126, .44);
    background: rgba(245, 0, 126, .08);
    color: var(--renox-pink);
    box-shadow: 0 0 0 4px rgba(245, 0, 126, .07);
}

.quiz-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.quiz-contact-grid input {
    width: 100%;
    font: inherit;
    outline: none;
}

.quiz-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

.quiz-card [data-quiz-back],
.quiz-card [data-quiz-submit] {
    display: none;
}

.quiz-card.is-finish [data-quiz-next] {
    display: none;
}

.quiz-card.is-finish [data-quiz-submit],
.quiz-card.can-go-back [data-quiz-back] {
    display: inline-flex;
}

.quiz-result {
    margin: 18px 0 0;
    color: var(--renox-green);
    font-size: 14px;
    font-weight: 900;
}

.renox-hp {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-result {
    margin: 0;
    color: var(--renox-green);
    font-size: 14px;
    font-weight: 900;
}

.quiz-result.is-error,
.form-result.is-error {
    color: #c42323;
}

.problems {
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.problem-card {
    display: grid;
    gap: 12px;
    min-height: 190px;
    padding: 24px;
}

.problem-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--renox-radius);
    background: rgba(245, 0, 126, .08);
    color: var(--renox-pink);
    font-size: 24px;
}

.problem-card h3,
.process-steps h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.problem-card p {
    margin: 0;
    color: var(--renox-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.trust {
    background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.feature-grid--wide {
    margin-top: 38px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consult {
    background: #fff;
}

.consult__grid,
.about__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.consult__image,
.about__media {
    overflow: hidden;
    border-radius: var(--renox-radius);
    box-shadow: var(--renox-shadow);
}

.consult__image img,
.about__media img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
}

.consult__content .button {
    margin-top: 28px;
}

.about {
    background: #f7f9fc;
}

.about-features {
    margin-top: 34px;
}

.process {
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.process-steps article {
    position: relative;
    min-height: 150px;
    padding: 24px;
}

.process-steps article::after {
    position: absolute;
    right: -17px;
    top: 50%;
    width: 20px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--renox-pink), var(--renox-blue));
}

.process-steps article:last-child::after {
    display: none;
}

.process-steps span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--renox-pink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.why__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 54px;
}

.why__content h2 {
    max-width: 620px;
}

.why__visual {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    border-radius: var(--renox-radius);
    box-shadow: var(--renox-shadow);
}

.why__visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    content: "";
    background: linear-gradient(90deg, var(--renox-pink), var(--renox-orange), var(--renox-yellow), var(--renox-green), var(--renox-blue));
}

.why__visual img {
    width: 100%;
    aspect-ratio: 1.7 / 1;
    object-fit: cover;
}

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

.feature-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 126px;
    padding: 22px;
    border: 1px solid rgba(231, 235, 240, .95);
    border-radius: var(--renox-radius);
    background: #fff;
    box-shadow: 0 16px 44px rgba(12, 17, 26, .06);
}

.feature-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--renox-radius);
    background: rgba(245, 0, 126, .08);
    color: var(--renox-pink);
    font-size: 24px;
}

.feature-item:nth-child(2n) > span {
    background: rgba(255, 138, 0, .1);
    color: var(--renox-orange);
}

.feature-item:nth-child(3n) > span {
    background: rgba(0, 168, 240, .1);
    color: var(--renox-blue);
}

.projects {
    padding: 76px 0;
    background: #080b10;
    color: #fff;
}

.projects__grid {
    display: grid;
    grid-template-columns: minmax(400px, .34fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
}

.projects__intro h2 {
    font-size: clamp(32px, 2.55vw, 44px);
}

.projects__intro p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, .72);
}

.project-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 116px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--renox-radius);
    background: #141922;
}

.project-card__media {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.project-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .28s ease, transform .35s ease;
}

.project-card__media img.is-active {
    opacity: .92;
    transform: scale(1);
}

.project-card__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(8, 11, 16, .72);
    color: #fff;
    transform: translateY(-50%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.project-card__arrow:hover {
    border-color: rgba(255, 255, 255, .68);
    background: rgba(245, 0, 126, .86);
    transform: translateY(-50%) scale(1.04);
}

.project-card__arrow span {
    margin-top: -2px;
    font-size: 27px;
    line-height: 1;
}

.project-card__arrow--prev {
    left: 12px;
}

.project-card__arrow--next {
    right: 12px;
}

.project-card__content {
    margin: 12px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--renox-radius);
    background: rgba(8, 11, 16, .78);
    backdrop-filter: blur(12px);
}

.project-card__content h3,
.project-card__content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.project-card__content h3 {
    -webkit-line-clamp: 1;
}

.project-card__content p {
    color: rgba(255, 255, 255, .72);
    -webkit-line-clamp: 2;
}

.reviews {
    background: #fff;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 38px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    box-shadow: 0 18px 54px rgba(12, 17, 26, .08);
}

.review-card--proof {
    min-height: 0;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 249, 252, .92));
}

.review-card__proof {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(12, 17, 26, .08);
}

.review-card__stars {
    color: #ffd13b;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-card__quote {
    position: absolute;
    right: 32px;
    top: 30px;
    color: rgba(245, 0, 126, .12);
    font-size: 38px;
}

.review-card p {
    margin: 0;
    color: #3f4856;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.review-card strong {
    margin-top: auto;
    font-size: 14px;
    font-weight: 900;
}

.review-card small {
    color: var(--renox-muted);
    font-size: 12px;
    font-weight: 800;
}

.quote-section {
    padding: 28px 0 86px;
    background: #fff;
}

.quote__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    overflow: hidden;
    box-shadow: var(--renox-shadow);
}

.quote__visual {
    position: relative;
    display: flex;
    min-height: 460px;
    flex-direction: column;
    justify-content: center;
    padding: 54px;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.quote__visual::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(12, 15, 23, .78), rgba(12, 15, 23, .34));
}

.quote__visual > * {
    position: relative;
    z-index: 1;
}

.quote__visual .section-eyebrow {
    color: #fff;
}

.quote__visual p {
    max-width: 520px;
    color: rgba(255, 255, 255, .86);
}

.quote__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.quote__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.quote-form {
    display: grid;
    gap: 18px;
    padding: 42px;
    background: #fff;
}

.quote-form h2 {
    color: var(--renox-ink);
    font-size: 24px;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-form label {
    display: grid;
    gap: 8px;
}

.quote-form label span {
    color: #303846;
    font-size: 12px;
    font-weight: 900;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--renox-line);
    border-radius: var(--renox-radius);
    padding: 0 16px;
    color: var(--renox-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.quote-form textarea {
    min-height: 118px;
    padding-top: 15px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: rgba(245, 0, 126, .42);
    box-shadow: 0 0 0 4px rgba(245, 0, 126, .08);
}

.quote-form .button {
    justify-self: end;
    min-width: 220px;
    border: 0;
    cursor: pointer;
}

.site-footer {
    padding: 70px 0 28px;
    background: #0b0f16;
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .9fr 1fr;
    gap: 46px;
}

.site-footer__brand img {
    width: 160px;
    filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(245, 0, 126, .18));
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.site-footer h2 {
    margin-bottom: 18px;
    font-size: 16px;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--renox-radius);
    color: #fff;
}

.site-footer__contacts a,
.site-footer__contacts span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer__contacts svg {
    color: var(--renox-pink);
}

.site-footer__bottom {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}

.site-footer__area {
    margin-top: 40px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--renox-radius);
}

.site-footer__area h2 {
    margin-bottom: 8px;
}

@media (max-width: 1180px) {
    .site-header__inner {
        grid-template-columns: 156px minmax(0, 1fr) auto;
        gap: 16px;
    }

    .site-nav__list {
        gap: 18px;
    }

    .phone-link span {
        display: none;
    }

    .hero__content {
        width: min(680px, 58vw);
    }

    .hero-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .why__grid,
    .projects__grid,
    .reviews__grid,
    .quote__grid,
    .quiz-shell,
    .consult__grid,
    .about__grid {
        grid-template-columns: 1fr;
    }

    .projects__intro,
    .reviews .section-heading {
        max-width: 720px;
    }

    .projects__intro h2 {
        font-size: clamp(30px, 6vw, 42px);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problem-grid,
    .feature-grid--wide,
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps article::after {
        display: none;
    }

    .benefit-pill:nth-child(2n) {
        border-right: 0;
    }

    .benefit-pill:nth-child(-n+2) {
        border-bottom: 1px solid var(--renox-line);
    }
}

@media (max-width: 860px) {
    :root {
        --renox-anchor-offset: 88px;
    }

    html {
        scroll-padding-top: var(--renox-anchor-offset);
    }

    section[id],
    .hero,
    .quote-form {
        scroll-margin-top: var(--renox-anchor-offset);
    }

    .site-header__inner {
        grid-template-columns: 150px 1fr 44px;
        min-height: 68px;
    }

    .site-header__actions {
        display: none;
    }

    .site-header__actions .button,
    .site-header__actions .icon-link {
        display: none;
    }

    .menu-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .mobile-socials {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        z-index: -1;
        top: 68px;
        right: 0;
        left: 0;
        visibility: hidden;
        transform: translateY(-10px);
        opacity: 0;
        border-bottom: 1px solid var(--renox-line);
        background: #fff;
        box-shadow: 0 28px 60px rgba(18, 23, 34, .12);
        transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
    }

    .site-header.is-menu-open .site-nav {
        z-index: 19;
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    .site-header.is-menu-open .menu-toggle span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .site-nav__list {
        display: grid;
        justify-content: stretch;
        gap: 0;
        width: var(--renox-page-width);
        margin: 0 auto;
        padding: 14px 0 18px;
    }

    .site-nav__list a {
        display: block;
        padding: 13px 0;
        font-size: 17px;
    }

    .site-nav__list a::after {
        display: none;
    }

    .hero__media img {
        object-position: 62% center;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 36%, rgba(255, 255, 255, .42) 72%, rgba(255, 255, 255, .18) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .72) 70%, #fff 100%);
    }

    .hero__grid {
        min-height: auto;
        padding: 56px 0 126px;
    }

    .hero__content {
        width: min(620px, 100%);
    }

    .hero h1 {
        max-width: 620px;
        font-size: clamp(36px, 10vw, 54px);
    }

    .hero__subtitle {
        max-width: 520px;
        font-size: 16px;
    }

    .section {
        padding: 68px 0;
    }

    .services-grid,
    .feature-grid,
    .project-strip,
    .reviews-list,
    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quiz-options,
    .quiz-contact-grid {
        grid-template-columns: 1fr;
    }

    .quote__visual,
    .quote-form {
        padding: 34px;
    }
}

@media (max-width: 620px) {
    .container,
    .site-header__inner {
        width: min(100% - 28px, 1620px);
    }

    .site-header__inner {
        grid-template-columns: 124px 1fr 44px;
        gap: 10px;
    }

    .site-header__logo img {
        width: 118px;
    }

    .site-header__actions .phone-link {
        display: none;
    }

    .hero__media img {
        object-position: 65% center;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .5) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, .76) 66%, #fff 100%);
    }

    .hero__grid {
        padding: 42px 0 110px;
    }

    .hero__eyebrow {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.35;
    }

    .hero h1 {
        line-height: 1.08;
    }

    .hero__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__buttons .button {
        width: 100%;
    }

    .hero__proof {
        display: grid;
        gap: 14px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        margin-top: -72px;
        padding: 8px;
    }

    .benefit-pill,
    .benefit-pill:nth-child(-n+2),
    .benefit-pill:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid var(--renox-line);
    }

    .benefit-pill:last-child {
        border-bottom: 0;
    }

    .section-heading--center,
    .section-heading {
        text-align: left;
    }

    .section h2,
    .projects h2,
    .quote-section h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .services-grid,
    .feature-grid,
    .project-strip,
    .reviews-list,
    .problem-grid,
    .process-steps,
    .quote-form__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .quiz-copy,
    .quiz-card {
        padding: 24px;
    }

    .quiz-controls {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quiz-controls .button {
        width: 100%;
    }

    .project-card {
        min-height: 0;
    }

    .quote__visual,
    .quote-form {
        padding: 26px;
    }

    .quote__visual {
        min-height: 390px;
    }

    .quote-form .button {
        justify-self: stretch;
        width: 100%;
    }
}
