:root {
    --bg: #f4f5f7;
    --text: #143b82;
    --muted: #6f8ebf;
    --accent: #f10064;
    --green: #12a042;
    --blue-line: #1f4d96;
}

html {
    scroll-behavior: smooth;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
    text-rendering: optimizeLegibility;
}

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

.header-cta,
.hero-button,
.side-button,
.footer-nav a,
.main-nav a,
.footer-bottom a {
    transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.hero-button:hover,
.side-button:hover {
    transform: translateY(-2px);
}

.main-nav a:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
    opacity: 0.72;
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .header-cta,
    .hero-button,
    .side-button,
    .footer-nav a,
    .main-nav a,
    .footer-bottom a {
        transition: none;
    }
}

.container {
    width: min(1280px, 100% - 48px);
    margin: 0 auto;
}

.site-header {
    padding: 28px 0 18px;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo span {
    font-weight: 400;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 16px;
    font-weight: 600;
}

.main-nav .active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 14px;
    border: 2px solid var(--blue-line);
    font-size: 16px;
    font-weight: 600;
}

.hero {
    padding: 42px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 610px);
    align-items: center;
    gap: 36px;
}

.hero-content {
    max-width: 720px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.kicker-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kicker-icon svg {
    display: block;
}

h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.hero-lead {
    margin: 26px 0 30px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
}

.hero-lead strong {
    font-weight: 700;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 66px;
    padding: 0 36px;
    border-radius: 18px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.hero-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-button-icon svg {
    display: block;
}

.hero-points {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 30px;
}

.hero-points li {
    position: relative;
    padding-left: 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.35;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 17px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='12' viewBox='0 0 17 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0212 0.34475C15.8095 0.13125 15.5164 0 15.1926 0C14.8689 0 14.5757 0.132125 14.364 0.34475L5.67262 9.04837L2.02125 5.38475C1.80687 5.17738 1.51462 5.04962 1.19262 5.04962C0.53375 5.04962 0 5.58338 0 6.24225C0 6.57913 0.139125 6.88275 0.363125 7.09975L4.84312 11.5797C5.05487 11.7932 5.348 11.9245 5.67175 11.9245C5.9955 11.9245 6.28862 11.7924 6.50037 11.5797L16.0204 2.05975C16.2514 1.84625 16.3957 1.54088 16.3957 1.20225C16.3957 0.863625 16.2514 0.55825 16.0212 0.345625L16.0204 0.34475H16.0212Z' fill='%230D73FF'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-points li:last-child {
    white-space: nowrap;
}

.hero-media {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: min(610px, 100%);
    height: auto;
    display: block;
}

.cases-section,
.results-section,
.process-section,
.pricing-section,
.side-section,
.reviews-section,
.about-story,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.cases-section {
    background: #f3f6f9;
    padding: 88px 0 92px;
}

.cases-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.cases-intro h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.cases-intro p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

.cases-intro p strong {
    font-weight: 700;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

.cases-column {
    padding: 24px 0 0;
}

.cases-column h3 {
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #dde6ef;
    font-size: 24px;
    line-height: 1.2;
}

.cases-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.cases-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cases-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0;
    line-height: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.cases-icon--negative {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='12' fill='%23E20054'/%3E%3Cpath d='M13.3862 12.4138L17.731 8.07572C17.8562 7.95055 17.9338 7.77728 17.9338 7.5859C17.9338 7.20366 17.624 6.89331 17.2412 6.89331C17.0498 6.89331 16.8771 6.9709 16.7514 7.09607L12.4133 11.4409L8.07517 7.09607C7.95 6.9709 7.77672 6.89331 7.58534 6.89331C7.2031 6.89331 6.89276 7.20314 6.89276 7.5859C6.89276 7.77728 6.97034 7.95003 7.09552 8.07572L11.4403 12.4138L7.09552 16.7519C6.96931 16.8771 6.89172 17.0504 6.89172 17.2418C6.89172 17.4331 6.96983 17.6064 7.09552 17.7316C7.22069 17.8578 7.39396 17.9354 7.58534 17.9354C7.77672 17.9354 7.95 17.8573 8.07517 17.7316L12.4133 13.3868L16.7514 17.7316C16.8765 17.8578 17.0498 17.9354 17.2412 17.9354C17.4326 17.9354 17.6059 17.8573 17.731 17.7316C17.8572 17.6064 17.9348 17.4331 17.9348 17.2418C17.9348 17.0504 17.8567 16.8771 17.731 16.7519L13.3862 12.4138Z' fill='white'/%3E%3C/svg%3E");
}

.cases-icon--positive {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='12' fill='%230B8E30'/%3E%3Cg clip-path='url(%23clip0_12_822)'%3E%3Cpath d='M17.9311 6.90929C17.7571 6.73391 17.5163 6.6261 17.2504 6.6261C16.9845 6.6261 16.7437 6.73463 16.5698 6.90929L9.43041 14.0587L6.43106 11.0493C6.25497 10.8789 6.01491 10.774 5.75041 10.774C5.20919 10.774 4.77075 11.2124 4.77075 11.7537C4.77075 12.0304 4.88503 12.2798 5.06903 12.458L8.74903 16.138C8.92297 16.3134 9.16375 16.4212 9.42969 16.4212C9.69563 16.4212 9.93641 16.3127 10.1103 16.138L17.9303 8.31804C18.1201 8.14266 18.2387 7.89182 18.2387 7.61366C18.2387 7.33551 18.1201 7.08466 17.9311 6.91001L17.9303 6.90929H17.9311Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_822'%3E%3Crect width='16.5517' height='16.5517' fill='white' transform='translate(4.13794 4.13794)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.cases-item h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.cases-item p {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

.cases-column--card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 32px 30px;
}

.cases-button {
    width: 100%;
    margin-top: 18px;
}

.results-section {
    background: #ffffff;
    padding: 82px 0 78px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}

.results-text h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.results-text p {
    margin: 22px 0 0;
    line-height: 1.45;
}

.results-points {
    list-style: none;
    margin: 38px 0 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

.results-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.results-icon svg {
    display: block;
}

.results-icon--arrow {
    width: 15px;
    height: 11px;
    margin-top: 4px;
}

.results-icon--gift {
    width: 24px;
    height: 26px;
    margin-top: -2px;
}

.process-section {
    background: #f3f6f9;
    padding: 78px 0 86px;
}

.process-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.process-intro h2 {
    margin: 0;
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.process-intro p {
    margin: 18px 0 0;
    line-height: 1.45;
}

.process-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    border-radius: 10px;
    background: #ffffff;
    padding: 28px 24px 22px;
    min-height: 316px;
}

.process-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 94px;
}

.process-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.process-card h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
}

.process-card p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.process-card--accent {
    background: #3774e6;
    color: #fff;
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    animation: accentAppear 680ms ease-out 240ms forwards;
}

.process-card--accent p {
    color: #e8f0ff;
}

.process-button {
    margin: 46px auto 0;
    width: min(370px, 100%);
    display: flex;
}

.pricing-section {
    background: #f4f5f7;
    padding: 86px 0 70px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 560px) 1fr;
    gap: 64px;
    align-items: start;
}

.pricing-headline h2 {
    margin: 0;
    font-size: 56px;
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 44px;
}

.pricing-item {
    min-height: 166px;
}

.pricing-label {
    margin: 0;
}

.pricing-item h3 {
    margin: 8px 0 20px;
    font-size: 24px;
    line-height: 1.2;
}

.pricing-tax {
    margin: 0;
    font-weight: 700;
}

.pricing-item p {
    margin: 6px 0 0;
    line-height: 1.4;
}

.pricing-note {
    margin: 18px 0 0;
    font-style: italic;
    font-size: 16px;
}

.side-section {
    background: #143b82;
    color: #ffffff;
    overflow: visible;
}

.side-grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: 56px;
    align-items: end;
}

.side-media {
    align-self: end;
    margin-top: -18px;
    margin-bottom: 0;
}

.side-image {
    width: min(540px, 100%);
    height: auto;
    display: block;
}

.side-content {
    max-width: 700px;
    padding: 84px 0 88px;
}

.side-content h2 {
    margin: 0;
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.side-content p {
    margin: 20px 0 0;
    line-height: 1.45;
    color: #e8f0ff;
}

.side-content p strong {
    color: #ffffff;
}

.side-button {
    margin-top: 30px;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 12px;
    border: 2px solid #f3f6f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f3f6f9;
    font-weight: 600;
}

.reviews-section {
    background: #f4f5f7;
    padding: 72px 0 78px;
}

.reviews-kicker {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.reviews-title {
    margin: 12px 0 32px;
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

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

.review-card {
    border: 1px solid #ccd6e2;
    border-radius: 24px;
    padding: 26px 28px;
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.review-author {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.review-author strong {
    font-size: 16px;
    line-height: 1;
}

.reviews-bottom {
    margin-top: 70px;
    display: grid;
    grid-template-columns: minmax(320px, 540px) minmax(360px, 1fr);
    gap: 34px;
    align-items: center;
}

.reviews-image-wrap {
    order: 1;
}

.reviews-image {
    width: 485px;
    height: 560px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.contact-card {
    order: 2;
    background: #ebedf2;
    border-radius: 10px;
    padding: 38px 54px 32px;
}

.contact-card h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
}

.contact-card ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.contact-card li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-weight: 700;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    display: block;
}

.contact-text {
    display: block;
    line-height: 1.4;
}

.contact-card p {
    margin: 20px 0 0;
    font-size: 14px;
    font-style: italic;
}

.site-footer {
    background: #f4f5f7;
    padding: 72px 0 34px;
}

.form-page {
    padding-bottom: 20px;
}

.form-hero {
    padding: 76px 0 28px;
}

.form-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.form-intro h1 {
    font-size: 56px;
    line-height: 1.12;
}

.form-intro p {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

.help-form {
    width: min(564px, 100%);
    margin: 56px auto 0;
    background: #fbfbfc;
    border-radius: 24px;
    padding: 54px 60px 60px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field span,
.radio-group legend {
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #d9dde5;
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font: inherit;
    padding: 12px 14px;
    outline: none;
}

.field input {
    height: 42px;
}

.field textarea {
    min-height: 84px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: #a9bfe3;
}

.radio-group {
    margin: 28px 0 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 10px;
}

.radio-group legend {
    margin-bottom: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field--full {
    margin-top: 28px;
}

.form-status {
    min-height: 24px;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #2b3b52;
}

.form-status[data-state="success"] {
    color: #107c41;
}

.form-status[data-state="error"] {
    color: #b42318;
}

.form-submit {
    width: min(348px, 100%);
    margin: 24px auto 0;
    border: 0;
    cursor: pointer;
}

.about-page {
    padding-bottom: 10px;
}

.about-hero {
    padding: 64px 0 72px;
}

.about-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    font-size: 56px;
    line-height: 1.12;
}

.about-intro p {
    margin: 20px 0 0;
    line-height: 1.5;
}

.about-image-wrap {
    margin: 40px auto 0;
    width: min(100%, 980px);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-story {
    padding: 12px 0 76px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.45fr);
    gap: 48px;
    align-items: start;
}

.about-story-title h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.12;
}

.about-story-text p {
    margin: 0 0 18px;
    line-height: 1.52;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

.privacy-page {
    padding-bottom: 10px;
}

.privacy-section {
    padding: 64px 0 56px;
}

.privacy-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.privacy-intro h1 {
    font-size: 56px;
    line-height: 1.12;
}

.privacy-intro p {
    margin: 20px 0 0;
    line-height: 1.5;
}

.privacy-card {
    width: min(860px, 100%);
    margin: 42px auto 0;
    background: #fbfbfc;
    border-radius: 24px;
    padding: 38px 42px;
    display: grid;
    gap: 28px;
}

.privacy-block h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.privacy-block p {
    margin: 0;
    line-height: 1.55;
}

.privacy-block a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
    gap: 48px;
    align-items: start;
}

.footer-about {
    max-width: 470px;
}

.footer-about h2,
.footer-nav h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.footer-about p {
    margin: 18px 0 0;
    line-height: 1.45;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-nav a {
    line-height: 1.35;
}

.footer-bottom {
    margin-top: 118px;
    padding-top: 28px;
    border-top: 1px solid #d8dde6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom a {
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

@keyframes accentAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-card--accent {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .container {
        width: min(1280px, 100% - 32px);
    }

    .site-header {
        padding: 18px 0 14px;
    }

    .header-grid {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo cta"
            "nav nav";
        align-items: center;
        row-gap: 18px;
        column-gap: 18px;
    }

    .logo {
        grid-area: logo;
        font-size: 24px;
    }

    .header-cta {
        grid-area: cta;
        min-height: 52px;
        padding: 0 20px;
        border-radius: 14px;
        font-size: 16px;
        white-space: nowrap;
    }

    .main-nav {
        grid-area: nav;
        justify-content: flex-start;
        gap: clamp(20px, 5vw, 36px);
        font-size: 16px;
    }

    .hero {
        padding: 14px 0 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-kicker {
        font-size: 14px;
        margin-bottom: 18px;
    }

    h1 {
        font-size: 36px;
    }

    .hero-lead {
        margin: 18px 0 22px;
        font-size: 16px;
    }

    .hero-button {
        width: 100%;
        min-height: 66px;
        font-size: 16px;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 26px;
    }

    .hero-points li {
        font-size: 16px;
        padding-left: 30px;
    }

    .hero-points li:last-child {
        white-space: normal;
    }

    .hero-media {
        justify-content: flex-start;
    }

    .hero-image {
        width: min(480px, 84vw);
    }

    .cases-section {
        padding: 56px 0 60px;
    }

    .cases-intro {
        margin: 0 auto 34px;
    }

    .cases-intro h2 {
        font-size: 36px;
    }

    .cases-intro p {
        margin-top: 16px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cases-column {
        padding-top: 0;
    }

    .cases-column h3 {
        font-size: 24px;
        padding-bottom: 14px;
    }

    .cases-column--card {
        padding: 22px 20px 24px;
    }

    .results-section {
        padding: 52px 0 48px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .results-text h2 {
        font-size: 36px;
    }

    .results-text p {
        margin-top: 14px;
    }

    .results-points {
        margin-top: 0;
        gap: 16px;
    }

    .results-icon--gift {
        margin-top: 0;
    }

    .process-section {
        padding: 48px 0 56px;
    }

    .process-intro h2 {
        font-size: 36px;
    }

    .process-intro p {
        margin-top: 14px;
    }

    .process-grid {
        margin-top: 26px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-card {
        min-height: 0;
        padding: 18px 14px 20px;
    }

    .process-icon {
        margin-bottom: 72px;
    }

    .process-card h3 {
        font-size: 34px;
    }

    .process-button {
        margin-top: 18px;
    }

    .pricing-section {
        padding: 50px 0 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-headline h2 {
        font-size: 48px;
        line-height: 1.18;
    }

    .pricing-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-item h3 {
        margin-bottom: 12px;
    }

    .pricing-note {
        margin-top: 8px;
        font-size: 14px;
        white-space: nowrap;
    }

    .side-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .side-content {
        order: 1;
        padding: 38px 0 0;
    }

    .side-content h2 {
        font-size: 48px;
    }

    .side-content p {
        margin-top: 12px;
    }

    .side-button {
        margin-top: 16px;
        min-height: 48px;
        padding: 0 28px;
    }

    .side-media {
        order: 2;
        margin-top: -10px;
        margin-bottom: 0;
    }

    .side-image {
        width: min(290px, 84%);
    }

    .reviews-section {
        padding: 30px 0 36px;
    }

    .reviews-kicker {
        font-size: 12px;
        align-items: flex-start;
    }

    .reviews-title {
        margin: 8px 0 18px;
        font-size: 48px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        min-height: 0;
        border-radius: 16px;
        padding: 16px 18px;
    }

    .review-author strong {
        font-size: 16px;
    }

    .reviews-bottom {
        margin-top: 20px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        order: 1;
        padding: 22px 14px;
    }

    .contact-card h3 {
        font-size: 48px;
    }

    .contact-card li {
        font-size: 15px;
        gap: 6px;
    }

    .contact-card p {
        font-size: 12px;
        margin-top: 14px;
    }

    .reviews-image-wrap {
        order: 2;
    }

    .reviews-image {
        width: min(320px, 100%);
        height: auto;
    }

    .site-footer {
        padding: 46px 0 26px;
    }

    .form-hero {
        padding: 34px 0 18px;
    }

    .form-intro {
        max-width: 360px;
    }

    .form-intro h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    .form-intro p {
        margin-top: 14px;
        font-size: 16px;
    }

    .help-form {
        width: 100%;
        margin-top: 22px;
        border-radius: 18px;
        padding: 18px 10px 18px;
    }

    .help-form-grid {
        gap: 12px 10px;
    }

    .field input {
        height: 40px;
        padding: 10px 12px;
    }

    .field textarea {
        min-height: 82px;
    }

    .radio-group {
        margin-top: 16px;
        gap: 8px;
    }

    .field--full {
        margin-top: 16px;
    }

    .form-submit {
        width: 100%;
        margin-top: 16px;
        min-height: 46px;
        border-radius: 14px;
    }

    .about-hero {
        padding: 26px 0 34px;
    }

    .about-intro {
        max-width: 360px;
    }

    .about-intro h1 {
        font-size: 36px;
        line-height: 1.14;
    }

    .about-intro p {
        margin-top: 14px;
    }

    .about-image-wrap {
        margin-top: 18px;
        width: 100%;
    }

    .about-story {
        padding: 18px 0 48px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-story-title h2 {
        font-size: 36px;
        line-height: 1.14;
    }

    .about-story-text p {
        margin-bottom: 14px;
    }

    .privacy-section {
        padding: 26px 0 36px;
    }

    .privacy-intro {
        max-width: 360px;
    }

    .privacy-intro h1 {
        font-size: 36px;
        line-height: 1.14;
    }

    .privacy-intro p {
        margin-top: 14px;
    }

    .privacy-card {
        margin-top: 22px;
        border-radius: 18px;
        padding: 20px 16px;
        gap: 20px;
    }

    .privacy-block h2 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-about h2,
    .footer-nav h3 {
        font-size: 24px;
    }

    .footer-about p {
        margin-top: 16px;
        font-size: 16px;
    }

    .footer-nav {
        gap: 14px;
    }

    .footer-bottom {
        margin-top: 54px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom a {
        align-self: center;
        font-size: 14px;
    }
}
