:root {
    --bg: #020a09;
    --bg-2: #041411;
    --panel: rgba(7, 23, 20, 0.82);
    --panel-strong: rgba(4, 16, 14, 0.92);
    --panel-border: rgba(114, 255, 176, 0.12);
    --text: #f4fbf8;
    --muted: rgba(223, 238, 232, 0.72);
    --accent: #48e41a;
    --accent-strong: #7bff9f;
    --accent-deep: #2ec468;
    --shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
    --radius-xl: 40px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1440px;
}

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

html {
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 15% 12%, rgba(84, 224, 126, 0.18), transparent 22%),
        radial-gradient(circle at 80% 20%, rgba(46, 196, 104, 0.12), transparent 24%),
        linear-gradient(180deg, #071816 0%, #020807 100%);
    color: var(--text);
}

body.has-modal-open {
    overflow: hidden;
}

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

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

main {
    min-height: 100vh;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: visible;
    min-height: 920px;
    padding: 34px 40px 72px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    /*background:*/
    /*    linear-gradient(90deg, rgba(2, 10, 9, 0.98) 0%, rgba(2, 10, 9, 0.93) 42%, rgba(4, 20, 17, 0.34) 72%, rgba(4, 20, 17, 0.08) 100%),*/
    /*    url("img/1.png") right center / cover no-repeat;*/
    background: url("img/1.png") right center / cover no-repeat;
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 34% 66%, rgba(79, 224, 126, 0.13), transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, transparent 18%, transparent 84%, rgba(0, 0, 0, 0.24) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 41%, rgba(255, 255, 255, 0.14), transparent 16%),
        radial-gradient(circle at 76% 52%, rgba(110, 255, 178, 0.14), transparent 24%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero__head {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
    padding: 12px 14px 12px 12px;
    border: 1px solid rgba(112, 255, 174, 0.1);
    border-radius: 999px;
    background: rgba(4, 18, 15, 0.52);
    backdrop-filter: blur(18px);
}

.hero__brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
}

.hero__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero__brand-name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero__tagline {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.hero__features {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    list-style: none;
}

.hero__feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(112, 255, 174, 0.1);
    border-radius: 16px;
    background: rgba(9, 30, 26, 0.64);
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero__feature img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: 28px;
    min-height: 0;
    padding-top: 44px;
}

.hero__copy {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding-top: 6px;
}

.hero__title {
    margin: 0;
    max-width: 13.5ch;
    font-size: clamp(4rem, 4.1vw, 6.1rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-wrap: balance;
    color: var(--text);
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

.hero__title-accent {
    color: var(--accent-strong);
}

.hero__subtitle {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px 18px;
    max-width: 560px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.hero__list li {
    position: relative;
    padding-left: 22px;
    color: rgba(243, 251, 248, 0.92);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero__list li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(79, 224, 126, 0.14);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 18px 30px;
    border: 1px solid rgba(145, 255, 187, 0.16);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(127, 255, 156, 0.98) 0%, rgba(79, 224, 126, 0.95) 100%);
    color: #062012;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow:
        0 18px 30px rgba(42, 179, 90, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.hero__cta--button {
    font-family: inherit;
    cursor: pointer;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__actions .hero__cta {
    margin-top: 0;
}

.hero__cta--ghost {
    background: rgba(7, 23, 20, 0.72);
    color: var(--text);
    border-color: rgba(127, 255, 156, 0.18);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.hero__cta--ghost:hover {
    background: rgba(9, 30, 26, 0.82);
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 38px rgba(42, 179, 90, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    filter: brightness(1.02);
}

.hero__cta:active {
    transform: translateY(0);
    box-shadow:
        0 12px 24px rgba(42, 179, 90, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero__cta:focus-visible {
    outline: 2px solid rgba(127, 255, 156, 0.9);
    outline-offset: 4px;
}

.hero__cards {
    position: relative;
    min-height: 690px;
}

.hero__card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    padding: 24px 26px;
    border: 1px solid var(--panel-border);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(13, 34, 30, 0.92) 0%, rgba(6, 21, 18, 0.88) 100%);
    color: var(--text);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.hero__card--income {
    top: 44px;
    right: 34px;
    width: 248px;
}

.hero__card-label {
    margin: 0;
    color: rgba(227, 242, 235, 0.72);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero__card-value {
    margin: 0;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent-strong);
}

.hero__card-meta {
    margin: 0;
    color: rgba(227, 242, 235, 0.72);
    font-size: 1rem;
    font-weight: 500;
}

.hero__card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(127, 255, 156, 0.18);
    border-radius: 18px;
    background: rgba(79, 224, 126, 0.14);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.hero__card-action:hover {
    transform: translateY(-1px);
    background: rgba(79, 224, 126, 0.2);
    border-color: rgba(127, 255, 156, 0.3);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.hero__card-action:focus-visible {
    outline: 2px solid rgba(127, 255, 156, 0.9);
    outline-offset: 4px;
}

.hero__card--support {
    right: 4px;
    bottom: 34px;
    width: 332px;
    padding: 20px 22px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.hero__card--support img {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
}

.hero__card--support p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 9, 8, 0.78);
    backdrop-filter: blur(14px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    padding: 30px 30px 28px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 18% 0%, rgba(79, 224, 126, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(7, 18, 25, 0.98) 0%, rgba(3, 11, 17, 0.99) 100%);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 50%;
    background: rgba(9, 24, 30, 0.76);
    color: rgba(244, 251, 248, 0.92);
    font: inherit;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.modal__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 20px;
}

.modal__visual-item {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
}

.modal__visual-item img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    mix-blend-mode: hard-light;
}

.modal__visual-plus {
    color: rgba(244, 251, 248, 0.88);
    font-size: 2.2rem;
    font-weight: 600;
}

.modal__title {
    margin: 0 auto 10px;
    max-width: 22ch;
    text-align: center;
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.modal__title span {
    color: var(--accent);
}

.modal__description {
    margin: 0 auto 28px;
    max-width: 54ch;
    color: var(--muted);
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

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

.modal__form input:focus-visible {
    outline: none;
}

.modal__field {
    display: grid;
    gap: 10px;
}

.modal__field--full {
    grid-column: 1 / -1;
}

.modal__label {
    color: rgba(244, 251, 248, 0.92);
    font-size: 0.8rem;
    font-weight: 700;
}

.modal__input-wrap,
.modal__phone {
    display: flex;
    align-items: center;
    min-height: 50px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 22px;
    background: rgba(7, 18, 25, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.modal__field-icon {
    position: relative;
    width: 26px;
    height: 26px;
    margin-left: 22px;
    flex: 0 0 26px;
    color: rgba(244, 251, 248, 0.5);
}

.modal__field-icon::before,
.modal__field-icon::after {
    content: "";
    position: absolute;
}

.modal__field-icon--user::before {
    top: 1px;
    left: 6px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.modal__field-icon--user::after {
    bottom: 1px;
    left: 3px;
    width: 18px;
    height: 10px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.modal__field-icon--email::before {
    inset: 4px 2px 5px;
    border: 2px solid currentColor;
    border-radius: 6px;
}

.modal__field-icon--email::after {
    top: 2px;
    left: 7px;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) skewY(-8deg);
    border-bottom-right-radius: 2px;
}

.modal__dialog input {
    width: 100%;
    min-width: 0;
    padding: 0 22px 0 16px;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 1.1rem;
}

.modal__dialog input::placeholder {
    color: rgba(223, 238, 232, 0.46);
}

.modal__phone-country {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 0 18px;
    border-right: 1px solid rgba(112, 255, 174, 0.1);
    color: rgba(244, 251, 248, 0.92);
}

.modal__flag {
    font-size: 2rem;
    line-height: 1;
}

.modal__phone-arrow {
    font-size: 1.15rem;
    opacity: 0.8;
}

.modal__submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 10px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(55, 193, 87, 0.98) 0%, rgba(39, 177, 72, 0.95) 100%);
    color: #f4fbf8;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: pointer;
    box-shadow: 0 22px 40px rgba(28, 125, 54, 0.28);
}

.modal__trust {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    padding-top: 12px;
}

.modal__trust-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
}

.modal__trust-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    mix-blend-mode: lighten;
}

.modal__trust p {
    margin: 0;
    color: rgba(223, 238, 232, 0.72);
    font-size: 0.98rem;
    line-height: 1.55;
}

.analysis {
    position: relative;
    overflow: hidden;
    padding: 74px 40px 90px;
    background: #010204;
}

.analysis[hidden],
.analysis__chat-shell[hidden],
.analysis__status[hidden],
.analysis__result[hidden] {
    display: none !important;
}

.analysis::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(79, 224, 126, 0.08), transparent 20%),
        radial-gradient(circle at 82% 24%, rgba(79, 224, 126, 0.06), transparent 22%);
    pointer-events: none;
}



.analysis__chat-shell,
.analysis__status,
.analysis__result {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.analysis__chat-shell {
    display: block;
    width: min(100%, 980px);
}

.analysis__status {
    width: min(100%, 980px);
}

.analysis__result {
    width: min(100%, 1280px);
}

.analysis__chat {
    display: grid;
    gap: 20px;
    min-height: 560px;
    padding: 36px 38px 40px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 224, 126, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(7, 23, 20, 0.92) 0%, rgba(4, 16, 14, 0.98) 100%);
    box-shadow: var(--shadow);
}

.analysis__chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(6, 18, 16, 0.98) 0%, rgba(4, 12, 11, 0.99) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02),
        0 20px 40px rgba(0, 0, 0, 0.28);
}

.analysis__chat-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.analysis__chat-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.analysis__chat-meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.analysis__chat-title {
    margin: 0;
    color: #f3fbf8;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.analysis__chat-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(220, 239, 231, 0.74);
    font-size: 0.88rem;
    font-weight: 600;
}

.analysis__chat-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #62ef84;
    box-shadow: 0 0 0 0 rgba(98, 239, 132, 0.46);
    animation: analysis-status-pulse 1.8s ease-out infinite;
}

.analysis__eyebrow {
    margin: 0;
    color: rgba(127, 255, 156, 0.9);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.analysis__title {
      margin-bottom: 15px;
    margin-top: 0;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.analysis__lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 60ch;
}

.analysis__chat-stream {
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 460px;
    max-height: min(72vh, 860px);
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 120px;
    scroll-padding-bottom: 120px;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(127, 255, 156, 0.22) transparent;
}

.analysis__chat-stream::-webkit-scrollbar {
    width: 8px;
}

.analysis__chat-stream::-webkit-scrollbar-track {
    background: transparent;
}

.analysis__chat-stream::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(127, 255, 156, 0.22);
}

.analysis__message {
    display: flex;
    width: 100%;
}

.analysis__message--bot {
    justify-content: flex-start;
}

.analysis__message--user {
    justify-content: flex-end;
}

.analysis__bubble {
    display: grid;
    gap: 18px;
    max-width: min(100%, 560px);
    padding: 16px 18px;
    border-radius: 22px;
    font-size: 1rem;
    line-height: 1.55;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.analysis__message--bot .analysis__bubble {
    border: 1px solid rgba(112, 255, 174, 0.12);
    background:
        linear-gradient(180deg, rgba(9, 30, 26, 0.84) 0%, rgba(7, 23, 20, 0.96) 100%);
    color: var(--text);
    border-top-left-radius: 10px;
}

.analysis__message--user .analysis__bubble {
    border: 1px solid rgba(127, 255, 156, 0.18);
    background:
        linear-gradient(180deg, rgba(79, 224, 126, 0.22) 0%, rgba(32, 118, 63, 0.32) 100%);
    color: #effff4;
    border-top-right-radius: 10px;
}

.analysis__message-text {
    margin: 0;
}

.analysis__typing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.analysis__typing span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(127, 255, 156, 0.74);
    animation: analysis-pulse 1.1s ease-in-out infinite;
}

.analysis__typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.analysis__typing span:nth-child(3) {
    animation-delay: 0.3s;
}

.analysis__message-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.analysis__quick {
    padding: 14px 18px;
    border: 1px solid rgba(112, 255, 174, 0.14);
    border-radius: 18px;
    background: rgba(8, 28, 24, 0.76);
    color: var(--text);
    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.analysis__quick:hover {
    transform: translateY(-1px);
    border-color: rgba(127, 255, 156, 0.28);
    background: rgba(12, 36, 31, 0.94);
}

.analysis__quick:focus-visible {
    outline: 2px solid rgba(127, 255, 156, 0.9);
    outline-offset: 4px;
}

.analysis__status {
    margin-top: 22px;
    padding: 22px 26px;
    border: 1px solid rgba(112, 255, 174, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(7, 23, 20, 0.9) 0%, rgba(4, 16, 14, 0.96) 100%);
    box-shadow: var(--shadow);
}

.analysis__status p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

@keyframes analysis-pulse {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes analysis-status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 239, 132, 0.42);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(98, 239, 132, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(98, 239, 132, 0);
    }
}

.analysis__result {
    display: grid;
    grid-template-columns: minmax(260px, 0.84fr) minmax(320px, 0.96fr) minmax(340px, 0.92fr);
    gap: 14px;
    margin-top: 24px;
    align-items: center;
}


.analysis__result-column {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 34px 34px 38px;
}

.analysis__result-column--steps {
    align-self: stretch;
    padding-right: 8px;
}

.analysis__result-column--steps .analysis__title {
    white-space: nowrap;
}

.analysis__result-column--core {
    place-items: center;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
    margin-left: -38px;
}

.analysis__result-column--core::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 75px);
    width: 96px;
    height: 84px;
    transform: translateY(-50%);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='84' viewBox='0 0 96 84' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='4' y1='42' x2='82' y2='42' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237FFF9C'/%3E%3Cstop offset='1' stop-color='%237FFF9C' stop-opacity='0.42'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M4 70C31 70 30 18 58 18H82' stroke='url(%23g)' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M70 6L82 18L70 30' stroke='url(%23g)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
    filter: drop-shadow(0 0 10px rgba(127, 255, 156, 0.22));
    opacity: 0.95;
    pointer-events: none;
    z-index: 4;
}

.analysis__topics-layout {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
}

.analysis__topics-copy {
    display: grid;
    gap: 14px;
}

.analysis__topics-icons {
    position: relative;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.analysis__topics-icons::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(127, 255, 156, 0.28) 0%, rgba(127, 255, 156, 0.08) 100%);
    transform: translateX(-50%);
}

.analysis__topics-icons li {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 66px;
}

.analysis__topics {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.analysis__topics li {
    --connector-length: 132px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 6px 44px 6px 20px;
    border: 1px solid rgba(112, 255, 174, 0.1);
    border-radius: 18px;
    background: rgba(9, 30, 26, 0.62);
    color: rgba(243, 251, 248, 0.9);
    font-size: 0.96rem;
    font-weight: 600;
    overflow: visible;
}

.analysis__topics li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 20px);
    width: calc(var(--connector-length) - 62px);
    height: 2px;
    background: linear-gradient(90deg, rgba(127, 255, 156, 0.82) 0%, rgba(127, 255, 156, 0.42) 100%);
    opacity: 0.9;
    z-index: 5;
}

.analysis__topics li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + -60px + var(--connector-length));
    width: 16px;
    height: 16px;
    border-top: 2px solid rgba(127, 255, 156, 0.62);
    border-right: 2px solid rgba(127, 255, 156, 0.62);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.95;
    z-index: 6;
}

.analysis__topics li:nth-child(1),
.analysis__topics li:nth-child(5) {
    --connector-length: 162px;
}

.analysis__topics li:nth-child(2),
.analysis__topics li:nth-child(4) {
    --connector-length: 122px;
}

.analysis__topics li:nth-child(3) {
    --connector-length: 88px;
}

.analysis__topics li:last-child::before,
.analysis__topics li:last-child::after {
    display: none;
}

.analysis__topic-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #000;
    color: var(--accent-strong);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(127, 255, 156, 0.12);
}

.analysis__topic-icon--more {
    color: var(--accent-strong);
}

.analysis__topic-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(79, 224, 126, 0.16));
    border-radius: 50%;
}

.analysis__topic-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.1;
    filter: drop-shadow(0 0 12px rgba(79, 224, 126, 0.16));
}

.analysis__topic-text {
    display: block;
}

.analysis__topics-note {
    margin: 2px 0 0;
    color: rgba(220, 239, 231, 0.76);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.analysis__core {
    display: grid;
    place-items: center;
    width: min(100%, 360px);
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-top: 75px;
}

.analysis__core::before {
    content: "";
    position: absolute;
    inset: -26%;
    background: url("img/22.png") no-repeat center;
    background-size: 760px;
    animation: analysis-core-spin 24s linear infinite;
    transform-origin: center;
}

.analysis__core::after {
    content: "";
    position: absolute;
    inset: 2%;
}

.analysis__core img {
    width: min(100%, 300px);
    height: auto;
    position: relative;
    z-index: 1;
}

.analysis__result-cards {
    display: grid;
    gap: 14px;
    padding: 34px 34px 32px;
}

.analysis__result-title {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.analysis__result-card {
    display: grid;
    gap: 10px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(112, 255, 174, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(9, 30, 26, 0.72) 0%, rgba(7, 23, 20, 0.92) 100%);
}

.analysis__result-label {
    margin: 0;
    color: rgba(223, 238, 232, 0.76);
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.analysis__result-income {
    margin: 0;
    color: var(--accent-strong);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.analysis__result-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.analysis__result-list,
.analysis__result-list--strengths,
.analysis__result-list--growth {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.analysis__result-list--strengths li,
.analysis__result-list--growth li {
    position: relative;
    padding-left: 18px;
    color: rgba(243, 251, 248, 0.92);
    font-size: 0.98rem;
    line-height: 1.5;
}

.analysis__result-list--strengths li::before,
.analysis__result-list--growth li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(79, 224, 126, 0.12);
}

.analysis__result-list--growth li::before {
    background: #ff4d4d;
    box-shadow: 0 0 0 5px rgba(255, 77, 77, 0.12);
}

.analysis__result-roadmap {
    margin: 0;
    color: rgba(243, 251, 248, 0.92);
    font-size: 0.99rem;
    line-height: 1.6;
}

.analysis__result-roadmap-block {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}

.analysis__result-roadmap-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: var(--accent-strong);
}

.analysis__result-roadmap-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1.9;
    filter: drop-shadow(0 0 12px rgba(79, 224, 126, 0.18));
}

.analysis__result-roadmap-copy {
    display: grid;
    gap: 8px;
}

.analysis__result-message {
    margin: 8px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(127, 255, 156, 0.18);
    border-radius: 20px;
    background: rgba(79, 224, 126, 0.08);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.solution {
    position: relative;
    overflow: hidden;
    padding: 88px 40px 110px;
    background: #010204;
}

.solution::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(79, 224, 126, 0.1), transparent 24%),
        radial-gradient(circle at 14% 30%, rgba(79, 224, 126, 0.05), transparent 20%),
        radial-gradient(circle at 88% 72%, rgba(79, 224, 126, 0.06), transparent 24%);
    pointer-events: none;
}

.solution::after {
    content: "";
    position: absolute;
    inset: 8% 24% auto;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 195, 94, 0.14) 0%, rgba(57, 195, 94, 0.06) 34%, transparent 72%);
    filter: blur(28px);
    pointer-events: none;
}

.solution__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1380px);
    margin: 0 auto;
}

.solution__heading {
    margin: 0 auto 38px;
    text-align: center;
}

.solution__eyebrow {
    margin: 0 0 12px;
    color: rgba(127, 255, 156, 0.78);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution__title {
    margin: 0;
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.solution__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 310px;
    padding: 28px 24px 26px;
    border: 1px solid rgba(112, 255, 174, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 24, 22, 0.92) 0%, rgba(6, 18, 16, 0.94) 100%);
    box-shadow:
        0 28px 52px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
}

.solution__card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 106px;
    right: -18px;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(84, 236, 128, 0.3), rgba(84, 236, 128, 0.96));
    box-shadow: 0 0 14px rgba(84, 236, 128, 0.3);
}

.solution__card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 102px;
    right: -22px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(84, 236, 128, 0.96);
    border-right: 2px solid rgba(84, 236, 128, 0.96);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(84, 236, 128, 0.16);
}

.solution__icon {
    display: grid;
    place-items: center;
    width: 108px;
    height: 108px;
    margin-bottom: 22px;
    border-radius: 28px;
}

.solution__icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    mix-blend-mode: lighten;
}

.solution__card-title {
    margin: 0 0 14px;
    font-size: 1.25rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.solution__card-text {
    margin: 0;
    color: rgba(223, 238, 232, 0.72);
    font-size: 1rem;
    line-height: 1.6;
}

.solution__cta {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.25fr);
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 28px 30px;

}

.solution__cta-copy {
    max-width: 500px;
}

.solution__cta-brand {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.1vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.solution__cta-brand span {
    color: var(--accent-strong);
}

.solution__cta-text,
.solution__cta-subtext {
    margin: 0;
    color: rgba(243, 251, 248, 0.9);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
}

.solution__cta-subtext {
    margin-top: 10px;
    color: rgba(223, 238, 232, 0.72);
    font-weight: 500;
}

.solution__cta-actions {
    display: grid;
    gap: 18px;
    justify-content: flex-end;
}

.solution__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 54px;
    padding: 20px 28px;
    border: 1px solid rgba(145, 255, 187, 0.16);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(74, 214, 98, 1) 0%, rgba(54, 193, 86, 0.98) 100%);
    color: #f4fbf8;
    font-family: inherit;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    cursor: pointer;
    max-width: 530px;
    box-shadow:
        0 22px 38px rgba(31, 120, 54, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.solution__cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 28px 46px rgba(31, 120, 54, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    filter: brightness(1.02);
}

.solution__cta-button:focus-visible {
    outline: 2px solid rgba(127, 255, 156, 0.95);
    outline-offset: 4px;
}

.solution__cta-button svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.2;
    flex: 0 0 auto;
}

.solution__cta-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution__cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(223, 238, 232, 0.84);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
}

.solution__cta-feature svg {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: rgba(230, 244, 237, 0.76);
    stroke-width: 1.9;
    flex: 0 0 auto;
}

@keyframes analysis-core-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .hero__actions {
        gap: 12px;
    }

    .hero__actions .hero__cta {
        width: auto;
    }

    .modal__dialog {
        width: min(100%, 760px);
        padding: 28px 24px 24px;
    }

    .modal__title {
        max-width: 16ch;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .analysis {
        padding: 60px 20px 72px;
    }

    .analysis__chat-shell,
    .analysis__status {
        width: min(100%, 860px);
    }

    .analysis__result {
        width: min(100%, 900px);
    }

    .analysis__chat,
    .analysis__result-column,
    .analysis__result-cards {
        padding-left: 26px;
        padding-right: 26px;
    }

    .analysis__result {
        grid-template-columns: 1fr;
    }

    .analysis__result-column--core {
        order: 2;
    }

    .analysis__result-cards {
        order: 3;
    }
}

@media (max-width: 760px) {
    .analysis::after {
        width: min(74vw, 360px);
        transform: translate(-50%, -44%);
        opacity: 0.72;
    }

    .hero__actions {
        width: 100%;
    }

    .modal {
        padding: 10px;
    }

    .modal__dialog {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 22px 16px 20px;
        overflow-y: auto;
        border-radius: 28px;
    }

    .modal__close {
        top: 12px;
        right: 12px;
    }

    .modal__visual {
        gap: 14px;
        margin-bottom: 16px;
    }

    .modal__visual-item {
        width: 92px;
        height: 92px;
    }

    .modal__visual-item img {
        width: 62px;
        height: 62px;
        border-radius: 50%;
    }

    .modal__visual-plus {
        font-size: 1.6rem;
    }

    .modal__title {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .modal__description {
        margin-bottom: 22px;
        font-size: 0.95rem;
    }

    .modal__form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal__field--full {
        grid-column: auto;
    }

    .modal__input-wrap,
    .modal__phone {
        border-radius: 18px;
    }

    .modal__field-icon {
        margin-left: 16px;
    }

    .modal__dialog input {
        padding-right: 16px;
        font-size: 1rem;
    }

    .modal__submit {
        margin-top: 4px;
        font-size: 1.15rem;
        border-radius: 20px;
    }

    .modal__trust {
        gap: 12px;
        margin-top: 5px;
    }

    .modal__trust-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .modal__trust-icon img {
        width: 36px;
        height: 36px;
    }

    .modal__trust p {
        font-size: 0.7rem;
    }

    .analysis {
        padding: 44px 12px 56px;
    }

    .analysis__chat {
        gap: 14px;
        padding: 24px 18px 26px;
        border-radius: 26px;
    }

    .analysis__title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .analysis__result-column--steps .analysis__title {
        white-space: normal;
    }

    .analysis__lead {
        font-size: 0.98rem;
    }

    .analysis__chat {
        min-height: auto;
    }

    .analysis__chat-header {
        padding: 12px 14px;
        border-radius: 20px;
    }

    .analysis__chat-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .analysis__chat-title {
        font-size: 1rem;
    }

    .analysis__chat-status {
        font-size: 0.82rem;
    }

    .analysis__chat-stream {
        min-height: 340px;
        max-height: 58vh;
        gap: 14px;
        padding-right: 4px;
        padding-bottom: 96px;
        scroll-padding-bottom: 96px;
    }

    .analysis__bubble {
        max-width: 100%;
        padding: 14px 15px;
        font-size: 0.95rem;
    }

    .analysis__quick {
        padding: 13px 14px;
        font-size: 0.94rem;
        border-radius: 16px;
    }

    .analysis__status {
        margin-top: 18px;
        padding: 18px 18px;
        border-radius: 22px;
    }

    .analysis__result {
        gap: 18px;
        margin-top: 18px;
    }

    .analysis__result-column--core::after {
        display: none;
    }

    .analysis__result-column--core {
        margin-left: 0;
    }


    .analysis__result-column,
    .analysis__result-cards {
        padding: 22px 18px 20px;
        border-radius: 24px;
    }

    .analysis__topics li {
        min-height: 56px;
        padding: 10px 38px 10px 14px;
        font-size: 0.92rem;
        border-radius: 16px;
    }

    .analysis__topics li::before,
    .analysis__topics li::after {
        display: none;
    }

    .analysis__topics-layout {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }

    .analysis__topics-icons li {
        min-height: 56px;
    }

    .analysis__topic-icon,
    .analysis__topic-icon {
        width: 32px;
        height: 32px;
    }

    .analysis__topic-icon img {
        width: 16px;
        height: 16px;
    }

    .analysis__topic-icon svg {
        width: 16px;
        height: 16px;
    }

    .analysis__topics-note {
        font-size: 0.92rem;
    }

    .analysis__core {
        width: min(100%, 250px);
        margin-top: 0;
    }

    .analysis__core img {
        width: min(100%, 210px);
    }

    .analysis__result-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .analysis__result-card {
        padding: 18px 16px 16px;
        border-radius: 20px;
    }

    .analysis__result-message {
        padding: 16px 16px;
        border-radius: 18px;
        font-size: 0.96rem;
    }

    .solution {
        padding: 72px 18px 86px;
    }

    .solution::after {
        inset: 10% 10% auto;
        height: 280px;
    }

    .solution__heading {
        margin-bottom: 28px;
    }

    .solution__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .solution__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution__card {
        min-height: 0;
        padding: 24px 20px 22px;
        border-radius: 24px;
    }

    .solution__card::before,
    .solution__card::after {
        display: none !important;
    }

    .solution__icon {
        width: 92px;
        height: 92px;
        margin-bottom: 18px;
    }

    .solution__icon img {
        width: 74px;
        height: 74px;
    }

    .solution__card-title {
        font-size: 1.45rem;
    }

    .solution__cta {
        margin-top: 24px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .solution__cta-brand {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
    }

    .solution__cta-text,
    .solution__cta-subtext {
        font-size: 0.98rem;
    }

    .solution__cta-button {
        min-height: 74px;
        padding: 18px 16px;
        gap: 10px;
        border-radius: 22px;
        font-size: 0.94rem;
        white-space: nowrap;
        justify-content: space-between;
    }

    .solution__cta-button svg {
        width: 22px;
        height: 22px;
    }

    .solution__cta-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .solution__cta-feature {
        gap: 8px;
        font-size: 0.74rem;
        line-height: 1.25;
    }

    .solution__cta-feature span {
        word-break: keep-all;
        text-wrap: balance;
    }

    .solution__cta-feature svg {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
}

@media (max-width: 1180px) {
    main {
        padding: 18px 18px 24px;
    }

    .hero {
        min-height: auto;
        padding: 28px 28px 32px;
        background:
            linear-gradient(180deg, rgba(2, 10, 9, 0.96) 0%, rgba(2, 10, 9, 0.95) 48%, rgba(2, 10, 9, 0.92) 100%),
            url("img/1.png") center 24% / cover no-repeat;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 32px;
    }

    .hero__copy {
        max-width: 760px;
    }

    .hero__title {
        max-width: 11.5ch;
        font-size: clamp(3.1rem, 7vw, 4.8rem);
    }

    .hero__subtitle {
        margin-top: 22px;
        font-size: 1.2rem;
    }

    .hero__list {
        max-width: 640px;
    }

    .hero__cards {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        min-height: auto;
        padding-bottom: 4px;
    }

    .hero__card {
        position: static;
        width: 100%;
    }

    .hero__card--income {
        width: 100%;
    }

    .hero__card--support {
        width: 100%;
    }

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

    .solution__card:nth-child(3)::after,
    .solution__card:nth-child(3)::before {
        display: none;
    }

    .solution__cta {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

@media (max-width: 760px) {
    main {
        padding: 12px;
    }

    .hero {
        padding: 22px 18px 20px;
        background:
            linear-gradient(180deg, rgba(2, 10, 9, 0.99) 0%, rgba(2, 10, 9, 0.99) 58%, rgba(2, 10, 9, 0.985) 100%),
            url("img/1.png") center top / cover no-repeat;
    }

    .hero__brand {
        gap: 12px;
        padding: 10px 12px 10px 10px;
    }

    .hero__brand img {
        width: 44px;
        height: 44px;
    }

    .solution {
        padding: 72px 18px 86px;
    }

    .solution::after {
        inset: 10% 10% auto;
        height: 280px;
    }

    .solution__heading {
        margin-bottom: 28px;
    }

    .solution__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .solution__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution__card {
        min-height: 0;
        padding: 24px 20px 22px;
        border-radius: 24px;
    }

    .solution__card::before,
    .solution__card::after {
        display: none !important;
    }

    .solution__icon {
        width: 92px;
        height: 92px;
        margin-bottom: 18px;
    }

    .solution__icon img {
        width: 74px;
        height: 74px;
    }

    .solution__card-title {
        font-size: 1.45rem;
    }

    .hero__brand-name {
        font-size: 0.95rem;
    }

    .hero__tagline {
        font-size: 0.78rem;
    }

    .hero__features {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 18px;
    }

    .hero__feature {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.9rem;
    }

    .hero__content {
        gap: 18px;
        padding-top: 24px;
    }

    .hero__title {
        max-width: none;
        font-size: clamp(2.3rem, 10vw, 3.2rem);
        line-height: 0.98;
    }

    .hero__subtitle {
        margin-top: 18px;
        font-size: 1.02rem;
    }

    .hero__list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero__list li {
        font-size: 0.98rem;
    }

    .hero__cta {
        width: 100%;
        margin-top: 22px;
        padding: 16px 22px;
    }

    .hero__cards {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__card {
        width: 100%;
        padding: 18px 18px 19px;
        border-radius: 22px;
    }

    .hero__card--income {
        width: 100%;
    }

    .hero__card-value {
        font-size: 2rem;
    }

    .hero__card-action {
        padding: 13px 16px;
        border-radius: 16px;
        font-size: 0.92rem;
    }

    .hero__card--support {
        width: 100%;
        gap: 12px;
    }

    .hero__card--support img {
        width: 48px;
        height: 48px;
    }

    .hero__card--support p {
        font-size: 0.95rem;
    }
}
