/* CSS Variables */
:root {
    --glass-bg: rgba(255, 255, 255, 0.42);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    --glass-inner: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    --glass-radius: 18px;
}

/* Universal Glass Effect Class */
.glass {
    border-radius: var(--glass-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inner);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 25% 15%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0.06) 60%
    );
    pointer-events: none;
}

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

/* Progressive enhancement: если backdrop-filter реально поддерживается */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .glass {
        background: rgba(255, 255, 255, 0.30);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

/* Global Styles */
* {
    font-family: 'Inter', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

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

/* Payment return card after YooKassa */
body.payment-return-mode {
    min-height: 100vh;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-return {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.payment-return__card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    padding: 2rem 1.5rem;
    text-align: center;
}

.payment-return__logo {
    width: 92px;
    height: 92px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid rgba(242, 128, 77, 0.25);
    margin: 0 auto 1rem;
    display: block;
}

.payment-return__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.25;
    color: #1f2328;
}

.payment-return__subtitle {
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
    color: #6f7b8a;
}

.payment-return__text {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #2d3138;
}

.payment-return__mail {
    color: #2d3138;
}

.payment-return__button {
    display: inline-block;
    min-width: 220px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    background: #3090ec;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-return__button:hover,
.payment-return__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(48, 144, 236, 0.32);
    outline: none;
}

.payment-return__hint {
    margin: 1rem 0 0;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #5f6773;
}

@media (max-width: 425px) {
  body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    position: relative;
  }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 2rem 1.5rem 1rem;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo-img {
    max-width: 120px;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
    padding-top: 2rem;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.hero__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
}

.hero__title-main {
    white-space: nowrap;
}

.hero__title-accent {
    color: #F2804D;
    font-weight: 700;
    white-space: nowrap;
}

.hero__title-note {
    display: block;
    margin-top: -0.2rem;
    font-size: calc(1rem + 6px);
    line-height: 1.4;
    font-weight: 700;
    white-space: normal;
}

.hero__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #5A463A;
    margin: 0;
    max-width: 640px;
}

.hero__subtitle-lead {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.95em;
}

.hero__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.hero__feature {
    border-radius: var(--glass-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inner);
    position: relative;
    overflow: hidden;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__feature::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 25% 15%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0.06) 60%
    );
    pointer-events: none;
}

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

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .hero__feature {
        background: rgba(255, 255, 255, 0.30);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

.hero__feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero__feature-text {
    font-size: 0.95rem;
    color: #5A463A;
    font-weight: 500;
}

.hero__cta {
    position: relative;
    background-color: #F2804D;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(242, 128, 77, 0.3);
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 128, 77, 0.4);
}

.hero__cta:active {
    transform: translateY(0);
}

.hero__cta:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.hero__cta-text {
    position: relative;
    z-index: 1;
}

.hero__cta-note {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #5A463A;
}

.hero__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.hero__image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablet and up */
@media (min-width: 768px) {
    .header {
        padding: 2rem 2rem 2rem 1rem;
    }

    .hero {
        padding: 3rem 0;
        padding-top: 3rem;
    }

    .hero__container {
        padding: 0 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .header__logo-img {
        max-width: 150px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__features {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    
    .hero__feature:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .hero__feature {
        padding: 1.25rem 1.5rem;
    }

    .hero__feature-icon {
        width: 28px;
        height: 28px;
    }

    .hero__feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .hero__feature-text {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header {
        padding: 2.5rem 2rem 2.5rem 1rem;
    }

    .header__logo-img {
        transform: translate(-60px, -30px);
    }

    .hero {
        padding: 4rem 0;
        padding-top: 4rem;
    }

    .hero__container {
        padding: 0 2rem;
        gap: 4rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.15rem;
    }

    .hero__features {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    
    .hero__feature:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .hero__cta {
        padding: 1.25rem 2.5rem;
        font-size: 1.2rem;
    }

    .hero__image {
        transform: scale(1.35) translateX(44px);
    }
}

/* Узкий desktop диапазон: уменьшаем героя, чтобы не залезал на текст */
@media (min-width: 1024px) and (max-width: 1105px) {
    .hero__image {
        transform: scale(1.05) translateX(64px);
    }
}

/* Планшетный диапазон: делаем features более вытянутыми по ширине */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero__features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .hero__feature:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .hero__feature {
        padding: 1.15rem 1.4rem;
    }
}

/* About Section */
.about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.about__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #5A463A;
    margin: 0 0 1.5rem 0;
}

.about__title-main {
    font-size: 40px;
    font-weight: 400;
    color: #5A463A;
}

.about__title-accent {
    font-size: 48px;
    color: #F2804D;
    font-weight: 700;
    display: block;
    text-align: center;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

.about__card {
    padding: 1.25rem 1.25rem;
    height: 100%;
}

.about__card-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #5A463A;
    font-weight: 600;
}

.about__card-note {
    margin: 0.75rem 0 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
}

.about__between {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    padding: 0.25rem 0;
    text-align: center;
    color: #5A463A;
    opacity: 0.9;
    align-self: center;
}

.about__between-icon--mobile {
    display: none;
}

.about__between-icon--desktop {
    display: inline;
}

@media (max-width: 767px) {
    .about__between-icon--mobile {
        display: inline;
    }

    .about__between-icon--desktop {
        display: none;
    }
}

.about__list {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about__list-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
}

.about__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
}

.about__question {
    font-size: 48px;
    line-height: 1.1;
    color: #F2804D;
    margin: 1rem 0 0 0;
    font-weight: 700;
    text-align: center;
}

/* Tablet and up */
@media (min-width: 768px) {
    .about {
        padding: 2.5rem 2rem;
    }

    .about__title {
        margin-bottom: 1.5rem;
    }

    .about__title-main {
        font-size: 40px;
    }

    .about__title-accent {
        font-size: 48px;
    }

    .about__text {
        font-size: 1.1rem;
    }

    .about__question {
        font-size: 48px;
    }

    .about__columns {
        grid-template-columns: 1fr auto 1fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .about__between {
        display: block;
        font-size: 2rem;
        padding: 0 0.25rem;
    }

    .about__card {
        padding: 1.5rem 1.5rem;
    }

    .about__card-title {
        font-size: 1.1rem;
    }

    .about__list-item,
    .about__card-note {
        font-size: 1.05rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .about {
        padding: 3rem 2rem;
    }

    .about__title {
        margin-bottom: 2rem;
    }

    .about__title-main {
        font-size: 40px;
    }

    .about__title-accent {
        font-size: 48px;
    }

    .about__text {
        font-size: 1.15rem;
    }

    .about__question {
        font-size: 48px;
    }

    .about__columns {
        gap: 1.5rem;
    }

    .about__between {
        font-size: 2.25rem;
    }

    .about__card {
        padding: 1.75rem 1.75rem;
    }

    .about__card-title {
        font-size: 1.15rem;
    }

    .about__list-item,
    .about__card-note {
        font-size: 1.1rem;
    }
}

/* Centering about__title for 1024px and less */
@media (max-width: 1024px) {
    .about__title {
        text-align: center;
    }
}

/* Features Section */
.features {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.features__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.features__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
    white-space: nowrap;
}

.features__text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
}

.features__text-large {
    font-size: 1.1rem;
}

.features__text-accent {
    color: #F2804D;
    font-weight: 600;
}

.features__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #5A463A;
    margin: 0;
}

.features__subtitle-accent {
    color: #F2804D;
}

.features__list {
    margin: 0;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features__list-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.features__list-item > span:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.features__list-item-first {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.features__list-icon-wrapper {
    width: 24px;
    min-width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    position: relative;
    top: 0.15em;
}

.features__list-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Выравнивание иконок по визуальному содержимому через margin */
.features__list-icon[src*="brand-telegram"] {
    margin-left: -3px;
}

.features__list-icon[src*="pencil-check"] {
    margin-left: -2px;
}

.features__list-icon[src*="heart"] {
    margin-left: -1px;
}

.features__list-item strong {
    color: #F2804D;
    font-weight: 600;
}

.features__highlight {
    --glass-radius: 22px;
    border-radius: var(--glass-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inner);
    position: relative;
    overflow: hidden;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features__highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 25% 15%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0.06) 60%
    );
    pointer-events: none;
}

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

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .features__highlight {
        background: rgba(255, 255, 255, 0.30);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

.features__highlight-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.features__highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
}

.features__highlight-text strong {
    font-weight: 700;
}

.features__image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.features__phrase {
    position: absolute;
    top: -20px;
    right: -50px;
    max-width: 200px;
    height: auto;
    z-index: 2;
}

.features__image {
    max-width: 140%;
    width: 140%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transform: translateX(-15%);
}

/* Tablet and up */
@media (min-width: 768px) {
    .features {
        padding: 2.5rem 2rem;
    }

    .features__container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .features__title {
        font-size: 2.5rem;
    }

    .features__text {
        font-size: 1.1rem;
    }

    .features__subtitle {
        font-size: 1.3rem;
    }

    .features__list-item {
        font-size: 1.1rem;
    }

    .features__phrase {
        max-width: 250px;
        top: -30px;
        right: -70px;
    }

    .features__image {
        max-width: 150%;
        width: 150%;
        transform: translateX(-20%);
    }

    .features__list-icon-wrapper {
        width: 28px;
        height: 28px;
        margin-top: 0;
        top: 0.15em;
    }

    .features__list-icon {
        width: 28px;
        height: 28px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .features {
        padding: 3rem 2rem;
    }

    .features__container {
        gap: 4rem;
    }

    .features__title {
        font-size: 3rem;
    }

    .features__text {
        font-size: 1.15rem;
    }

    .features__text-large {
        font-size: 1.25rem;
    }

    .features__highlight {
        padding: 1.75rem 2.25rem;
    }

    .features__highlight-icon {
        width: 40px;
        height: 40px;
    }

    .features__highlight-text {
        font-size: 1.15rem;
    }

    .features__list-icon-wrapper {
        width: 32px;
        height: 32px;
        margin-top: 0;
        top: 0.15em;
    }

    .features__list-icon {
        width: 32px;
        height: 32px;
    }

    .features__image {
        max-width: 130%;
        width: 130%;
        transform: translateX(-15%);
    }

    .features__phrase {
        max-width: 300px;
        top: -40px;
        right: -40px;
    }

    .features__subtitle {
        font-size: 1.4rem;
    }

    .features__list-item {
        font-size: 1.15rem;
    }

    .features__text-large {
        font-size: 1.25rem;
    }

    .features__highlight {
        padding: 1.75rem 2.25rem;
    }

    .features__highlight-icon {
        width: 40px;
        height: 40px;
    }

    .features__highlight-text {
        font-size: 1.15rem;
    }

    .features__list-icon-wrapper {
        width: 32px;
        height: 32px;
        margin-top: 0;
        top: 0.15em;
    }

    .features__list-icon {
        width: 32px;
        height: 32px;
    }

    .features__image {
        max-width: 160%;
        width: 160%;
        transform: translateX(-25%);
    }

    .features__phrase {
        max-width: 300px;
        top: -40px;
        right: -90px;
    }
}

/* Специальные стили для диапазона 1024px - 1137px */
@media (min-width: 1024px) and (max-width: 1137px) {
    .features__image {
        max-width: 160%;
        width: 160%;
        transform: scale(1.5) translateX(-30px);
    }

    .features__phrase {
        max-width: 300px;
        top: -120px;
        right: -90px;
    }
}

/* How It Works Section */
.how-it-works {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-it-works__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.how-it-works__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-it-works__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
    text-align: center;
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-it-works__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    width: min(620px, 100%);
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.how-it-works__step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

.how-it-works__step > * {
    position: relative;
    z-index: 1;
}

.how-it-works__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #F2804D;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.how-it-works__step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
    padding-top: 0.25rem;
}

.how-it-works__additional {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-it-works__additional-title {
    font-size: 1rem;
    line-height: 1.5;
    color: #5A463A;
    margin: 0;
    font-weight: 500;
}

.how-it-works__additional-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.how-it-works__additional-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
}

.how-it-works__additional-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.how-it-works__carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.carousel__viewport {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.carousel__viewport:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.carousel__container {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.carousel__item {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #F5F0EB 0%, #FEF1ED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.carousel__placeholder-text {
    font-size: 1rem;
    color: #5A463A;
    opacity: 0.6;
    margin: 0;
    text-align: center;
    padding: 2rem;
}

.carousel__image-wrapper {
    width: min(260px, 70%);
    height: 560px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #F2804D;
    color: #F2804D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel__button:hover:not(:disabled) {
    background-color: #F2804D;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel__button:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel__button:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.carousel__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel__button--prev {
    left: 10px;
}

.carousel__button--next {
    right: 10px;
}

.carousel__button svg {
    width: 20px;
    height: 20px;
}

.carousel__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel__pagination-button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(90, 70, 58, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.carousel__pagination-button:hover {
    background-color: rgba(90, 70, 58, 0.5);
    transform: scale(1.2);
}

.carousel__pagination-button:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.carousel__pagination-button[aria-current="true"] {
    background-color: #F2804D;
    width: 10px;
    height: 10px;
}

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

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

/* Tablet and up */
@media (min-width: 768px) {
    .how-it-works {
        padding: 2.5rem 2rem;
    }

    .how-it-works__container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .how-it-works__title {
        font-size: 2.5rem;
        text-align: left;
    }

    .how-it-works__step {
        padding: 1.5rem 2rem;
    }

    .how-it-works__step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.2rem;
    }

    .how-it-works__step-text {
        font-size: 1.1rem;
    }

    .how-it-works__additional-title {
        font-size: 1.1rem;
    }

    .how-it-works__additional-item {
        font-size: 1.1rem;
    }

    .how-it-works__additional-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .how-it-works__carousel-wrapper {
        transform: translateX(40px);
    }

    .carousel {
        max-width: 420px;
    }

    .carousel__button {
        width: 48px;
        height: 48px;
    }

    .carousel__button--prev {
        left: -5px;
    }

    .carousel__button--next {
        right: -5px;
    }

    .carousel__button svg {
        width: 24px;
        height: 24px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .how-it-works {
        padding: 3rem 2rem;
    }

    .how-it-works__container {
        gap: 4rem;
    }

    .how-it-works__title {
        font-size: 3rem;
    }

    .how-it-works__step {
        padding: 1.75rem 2.25rem;
    }

    .how-it-works__step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.3rem;
    }

    .how-it-works__step-text {
        font-size: 1.15rem;
    }

    .how-it-works__additional-title {
        font-size: 1.15rem;
    }

    .how-it-works__additional-item {
        font-size: 1.15rem;
    }

    .carousel {
        max-width: 490px;
    }
}

/* Pricing Section */
.pricing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pricing__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pricing__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
    text-align: center;
}

.pricing__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 620px;
}

.pricing__benefit {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    width: min(620px, 100%);
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.pricing__benefit::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

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

.pricing__benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #F2804D;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.pricing__benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
    padding-top: 0.25rem;
}

.pricing__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pricing__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pricing__price-amount {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
}

/* Центрирование для размера 320px */
@media (min-width: 320px) and (max-width: 320px) {
    .pricing__price-amount {
        text-align: center;
    }
}

.pricing__price-note {
    font-size: 1rem;
    line-height: 1.5;
    color: #5A463A;
    opacity: 0.7;
}

.pricing__free-trial {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #F2804D;
    font-weight: 600;
    margin: 0;
}

.pricing__cta {
    position: relative;
    background-color: #F2804D;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(242, 128, 77, 0.3);
    overflow: hidden;
}

.pricing__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.pricing__cta:hover::before {
    left: 100%;
}

.pricing__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 128, 77, 0.4);
}

.pricing__cta:active {
    transform: translateY(0);
}

.pricing__cta:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.pricing__cta-text {
    position: relative;
    z-index: 1;
}

/* Tablet and up */
@media (min-width: 768px) {
    .pricing {
        padding: 2.5rem 2rem;
    }

    .pricing__container {
        gap: 2.5rem;
    }

    .pricing__title {
        font-size: 2.5rem;
    }

    .pricing__benefit {
        padding: 1.5rem 2rem;
    }

    .pricing__benefit-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.2rem;
    }

    .pricing__benefit-text {
        font-size: 1.1rem;
    }

    .pricing__price-amount {
        font-size: 2.5rem;
    }

    .pricing__price-note {
        font-size: 1.1rem;
    }

    .pricing__free-trial {
        font-size: 1.2rem;
    }

    .pricing__cta {
        padding: 1.25rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .pricing {
        padding: 3rem 2rem;
    }

    .pricing__container {
        gap: 3rem;
    }

    .pricing__title {
        font-size: 3rem;
    }

    .pricing__benefit {
        padding: 1.75rem 2.25rem;
    }

    .pricing__benefit-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.3rem;
    }

    .pricing__benefit-text {
        font-size: 1.15rem;
    }

    .pricing__price-amount {
        font-size: 3rem;
    }

    .pricing__price-note {
        font-size: 1.15rem;
    }

    .pricing__free-trial {
        font-size: 1.3rem;
    }

    .pricing__cta {
        padding: 1.25rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal__content {
    position: relative;
    z-index: 1001;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    margin: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #5A463A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.modal__close:hover {
    background-color: rgba(90, 70, 58, 0.1);
    transform: scale(1.1);
}

.modal__close:active {
    transform: scale(0.95);
}

.modal__close:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.modal__close svg {
    width: 20px;
    height: 20px;
}

.modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.modal__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #5A463A;
    margin: 0 0 1.5rem 0;
    text-align: center;
    opacity: 0.8;
}

.modal__global-error {
    display: none;
    margin: 0 0 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.08);
    color: #b3261e;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.modal__global-error--visible {
    display: block;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5A463A;
    line-height: 1.4;
}

.modal__required {
    color: #F2804D;
}

.modal__label-hint {
    font-weight: 400;
    color: rgba(90, 70, 58, 0.65);
    font-size: 0.9em;
}

.modal__input,
.modal__select,
.modal__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(90, 70, 58, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #5A463A;
    background-color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.modal__select {
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%235A463A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 12px;
    cursor: pointer;
}

.modal__input:focus,
.modal__select:focus,
.modal__textarea:focus {
    outline: none;
    border-color: #F2804D;
    box-shadow: 0 0 0 3px rgba(242, 128, 77, 0.1);
}

.modal__input::placeholder,
.modal__textarea::placeholder {
    color: rgba(90, 70, 58, 0.5);
}

.modal__textarea {
    resize: vertical;
    min-height: 80px;
}

.modal__input--conditional {
    display: none;
}

.modal__input--conditional.modal__input--visible {
    display: block;
}

.modal__error {
    font-size: 0.875rem;
    color: #dc3545;
    display: none;
}

.modal__field.modal__field--error .modal__error {
    display: block;
}

.modal__submit {
    position: relative;
    background-color: #F2804D;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(242, 128, 77, 0.3);
    overflow: hidden;
}

.modal__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.modal__submit:hover::before {
    left: 100%;
}

.modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 128, 77, 0.4);
}

.modal__submit:active {
    transform: translateY(0);
}

.modal__submit:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modal__submit-text {
    position: relative;
    z-index: 1;
}

.modal__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 1rem 0;
}

.modal__success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(242, 128, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2804D;
}

.modal__success-icon svg {
    width: 48px;
    height: 48px;
}

.modal__success-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
}

.modal__success-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #5A463A;
    margin: 0;
    opacity: 0.8;
}

.modal__card-button {
    position: relative;
    background-color: #F2804D;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 128, 77, 0.3);
    overflow: hidden;
    min-width: 200px;
}

.modal__card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.modal__card-button:hover::before {
    left: 100%;
}

.modal__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 128, 77, 0.4);
}

.modal__card-button:active {
    transform: translateY(0);
}

.modal__card-button:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.modal__card-button-text {
    position: relative;
    z-index: 1;
}

.modal__subscription-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 1rem 0;
}

.modal__subscription-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #5A463A;
    margin: 0;
}

.modal__subscription-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

.modal__subscription-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    margin: 0;
}

.modal__subscription-agreement {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A463A;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
    font-style: italic;
}

.modal__subscription-agreement--centered {
    text-align: center;
    margin-top: 0;
}

.modal__subscription-agreement a {
    color: #8b6f47;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.modal__subscription-agreement a:hover,
.modal__subscription-agreement a:focus {
    color: #6b5433;
    outline: none;
}

.modal__subscription-agreement a:focus-visible {
    outline: 2px solid #8b6f47;
    outline-offset: 2px;
    border-radius: 4px;
}

.modal__continue-button {
    position: relative;
    background-color: #F2804D;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 128, 77, 0.3);
    overflow: hidden;
    min-width: 200px;
    margin-top: 0.5rem;
}

.modal__continue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.modal__continue-button:hover::before {
    left: 100%;
}

.modal__continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 128, 77, 0.4);
}

.modal__continue-button:active {
    transform: translateY(0);
}

.modal__continue-button:focus {
    outline: 2px solid #F2804D;
    outline-offset: 2px;
}

.modal__continue-button-text {
    position: relative;
    z-index: 1;
}

/* Tablet and up */
@media (min-width: 768px) {
    .modal__content {
        padding: 2.5rem 2rem;
    }

    .modal__title {
        font-size: 2rem;
    }

    .modal__subtitle {
        font-size: 1.1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .modal__content {
        padding: 3rem 2.5rem;
    }

    .modal__title {
        font-size: 2.25rem;
    }
}

/* ===== MOBILE FIRST FIXES ===== */

@media (max-width: 767px){
  .hero__container{
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero__image-wrapper{
    order: -1;
    margin-bottom: 24px;
  }
}

/* Mobile 425px - сдвиг изображения влево и убрать белую границу */
@media (max-width: 425px) {
  .hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
  }

  .hero__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    gap: 1rem !important;
    margin: 0 !important;
  }

  .hero__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero__title-main {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
  }

  .hero__title-accent {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: -2rem !important;
  }

  .hero__subtitle {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero__title-note {
    display: block !important;
    margin-top: -0.125rem !important;
    font-size: calc(0.875rem + 6px) !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    white-space: normal !important;
  }

  .hero__features {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    gap: 0.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero__feature {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.75rem 0.875rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    overflow: hidden !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .hero__feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .hero__feature-text {
    font-size: 0.8125rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: calc(100% - 30px) !important;
    text-align: left !important;
  }

  .hero__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero__cta-text {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero__cta-note {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .hero__image-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__image {
    transform: translateX(0);
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* About Section - ограничение ширины для 425px */
  .about {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .about__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
  }

  .about__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .about__title-main {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
  }

  .about__title-accent {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: -2rem !important;
    text-align: center !important;
  }

  .about__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .about__text {
    font-size: 0.875rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .about__question {
    font-size: 48px !important;
    line-height: 1.1 !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  /* Features Section - ограничение ширины для 425px */
  .features {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .features__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    gap: 1rem !important;
    margin: 0 !important;
  }

  .features__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .features__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: normal !important;
  }

  .features__text-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .features__text {
    font-size: 0.875rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__text-large {
    font-size: 0.9rem !important;
  }

  .features__subtitle {
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__highlight {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.75rem 0.875rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__highlight-text {
    font-size: 0.8125rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .features__list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 1.25rem !important;
  }

  .features__list-item {
    font-size: 0.8125rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__list-item > span:last-child {
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

/* Mobile 430px - те же стили что и для 425px */
@media (max-width: 430px) {
  .hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
  }

  .hero__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    gap: 1rem !important;
    margin: 0 !important;
  }

  .hero__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero__title-main {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
  }

  .hero__title-accent {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: -2rem !important;
  }

  .hero__subtitle {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero__title-note {
    display: block !important;
    margin-top: -0.125rem !important;
    font-size: calc(0.875rem + 6px) !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    white-space: normal !important;
  }

  .hero__features {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    gap: 0.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero__feature {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.75rem 0.875rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    overflow: hidden !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .hero__feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .hero__feature-text {
    font-size: 0.8125rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: calc(100% - 30px) !important;
    text-align: left !important;
  }

  .hero__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero__cta-text {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero__image-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__image {
    transform: translateX(0);
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* About Section - ограничение ширины для 430px */
  .about {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .about__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
  }

  .about__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .about__title-main {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
  }

  .about__title-accent {
    white-space: normal !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: -2rem !important;
    text-align: center !important;
  }

  .about__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .about__text {
    font-size: 0.875rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .about__question {
    font-size: 48px !important;
    line-height: 1.1 !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  /* Features Section - ограничение ширины для 430px */
  .features {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .features__container {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    gap: 1rem !important;
    margin: 0 !important;
  }

  .features__content {
    width: calc(100vw - 1.25rem) !important;
    max-width: calc(100vw - 1.25rem) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .features__title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: calc(100vw - 1.25rem) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: normal !important;
  }

  .features__text-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .features__text {
    font-size: 0.875rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__text-large {
    font-size: 0.9rem !important;
  }

  .features__subtitle {
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__highlight {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.75rem 0.875rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__highlight-text {
    font-size: 0.8125rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .features__list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 1.25rem !important;
  }

  .features__list-item {
    font-size: 0.8125rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: hidden !important;
  }

  .features__list-item > span:last-child {
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

/* Mobile <=425px - чуть сдвинуть phrase влево */
@media (max-width: 425px) {
  .features__phrase {
    right: -30px;
  }
}

/* Mobile 431px-507px - удержать phrase в пределах блока */
@media (min-width: 431px) and (max-width: 507px) {
  .features__phrase {
    right: 0;
    max-width: 240px;
  }
}

/* Mobile 508px-526px - чуть сдвинуть phrase влево */
@media (min-width: 508px) and (max-width: 526px) {
  .features__phrase {
    right: -30px;
  }
}

/* ===== LAPTOP SIZES ===== */

/* Для 1440px и больше - возвращаем нормальный размер */
@media (min-width: 1440px) {
    .hero__image {
        transform: scale(1) translateX(44px);
    }
}

@media (max-width: 767px) {
    .hero__subtitle-lead {
        display: inline;
        white-space: normal;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #FCD6B7;
    padding: 1.5rem 2rem;
    margin-top: 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer__logo-img {
    max-width: 80px;
    height: auto;
    display: block;
}

.footer__links {
    display: flex;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.footer__link {
    display: inline-flex;
    justify-content: center;
    color: #8b6f47;
    text-decoration: underline;
    font-size: 0.875rem;
    text-align: center;
    transition: color 0.3s ease;
}

.footer__link:hover,
.footer__link:focus {
    color: #6b5433;
    outline: none;
}

.footer__link:focus-visible {
    outline: 2px solid #8b6f47;
    outline-offset: 2px;
}

/* ===== POLICY PAGES ===== */
.policy-page {
    min-height: calc(100vh - 200px);
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d0 100%);
}

.policy-page__container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-page__title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-page__subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #3d2817;
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

.policy-page__content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.policy-page__section {
    margin-bottom: 2.5rem;
}

.policy-page__section:last-child {
    margin-bottom: 0;
}

.policy-page__section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 1rem;
}

.policy-page__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #3d2817;
    margin-bottom: 1rem;
}

.policy-page__text:last-child {
    margin-bottom: 0;
}

.policy-page__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-page__list-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #3d2817;
    margin-bottom: 0.5rem;
}

.policy-page__list-item:last-child {
    margin-bottom: 0;
}

.policy-page__link {
    color: #8b6f47;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-page__link:hover,
.policy-page__link:focus {
    color: #6b5433;
    outline: none;
}

.policy-page__link:focus-visible {
    outline: 2px solid #8b6f47;
    outline-offset: 2px;
}

/* ===== LEAD REASON PAGES ===== */
.lead-reason-page {
    min-height: 100vh;
    margin: 0;
    background-image: url('assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lead-reason-page__main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-reason-page__card {
    width: 100%;
    max-width: 760px;
    padding: 1.5rem 1.25rem;
    text-align: left;
}

.lead-reason-page__title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    line-height: 1.2;
    color: #5A463A;
    text-align: center;
}

.lead-reason-page__text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #5A463A;
    white-space: pre-line;
    text-align: center;
}

.lead-reason-page__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.lead-reason-page__actions .hero__cta {
    align-self: center;
    text-align: center;
}

.lead-reason-page__home-link {
    color: #8b6f47;
    text-underline-offset: 2px;
}

.lead-reason-page__home-link:hover,
.lead-reason-page__home-link:focus {
    color: #6b5433;
}

@media (min-width: 768px) {
    .lead-reason-page__card {
        padding: 2.25rem 2rem;
    }

    .lead-reason-page__title {
        font-size: 2.25rem;
    }

    .lead-reason-page__text {
        font-size: 1.1rem;
    }
}

.header__logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header__logo-link:hover,
.header__logo-link:focus {
    opacity: 0.8;
    outline: none;
}

.header__logo-link:focus-visible {
    outline: 2px solid #8b6f47;
    outline-offset: 4px;
    border-radius: 4px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer {
        padding: 1rem 1rem;
    }

    .footer__links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer__link {
        font-size: 0.8125rem;
    }
}

/* ===== RESPONSIVE POLICY PAGES ===== */
@media (max-width: 768px) {
    .policy-page {
        padding: 6rem 1rem 3rem;
    }

    .policy-page__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .policy-page__content {
        padding: 1.5rem;
    }

    .policy-page__section {
        margin-bottom: 2rem;
    }

    .policy-page__section-title {
        font-size: 1.125rem;
    }

    .policy-page__text,
    .policy-page__list-item {
        font-size: 0.9375rem;
    }
}
