* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: #ffffff;
}

.ibit-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #070a11;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    isolation: isolate;
}

/* DYNAMIC BACKGROUND */
.ibit-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;
    background:
            radial-gradient(circle at 18% 18%, rgba(198, 143, 87, 0.19), transparent 28%),
            radial-gradient(circle at 78% 24%, rgba(198, 143, 87, 0.13), transparent 30%),
            radial-gradient(circle at 58% 82%, rgba(255, 255, 255, 0.045), transparent 34%),
            linear-gradient(115deg, #070a11 0%, #0a0d15 42%, #090b11 100%);
    animation: ibitHeroGlowMove 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.ibit-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
            linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
            radial-gradient(circle at 20% 70%, rgba(198, 143, 87, 0.08), transparent 28%),
            radial-gradient(circle at 85% 72%, rgba(198, 143, 87, 0.06), transparent 26%);
    background-size:
            72px 72px,
            72px 72px,
            100% 100%,
            100% 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
    opacity: 0.72;
    animation: ibitHeroGridMove 18s linear infinite;
    pointer-events: none;
}

.ibit-hero__bg-lines {
    position: absolute;
    inset: auto -10% 0;
    z-index: 1;
    height: 46%;
    pointer-events: none;
    opacity: 0.55;
    background:
            repeating-linear-gradient(
                    172deg,
                    transparent 0,
                    transparent 34px,
                    rgba(198, 143, 87, 0.055) 35px,
                    transparent 37px
            );
    transform: skewY(-6deg);
    filter: blur(0.2px);
    animation: ibitHeroLinesFloat 12s ease-in-out infinite alternate;
}

.ibit-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
            radial-gradient(circle at 76% 40%, rgba(198, 143, 87, 0.18), transparent 34%),
            radial-gradient(circle at 20% 18%, rgba(198, 143, 87, 0.10), transparent 28%),
            linear-gradient(90deg, rgba(7, 10, 17, 0.97) 0%, rgba(7, 10, 17, 0.87) 38%, rgba(7, 10, 17, 0.50) 68%, rgba(7, 10, 17, 0.82) 100%),
            linear-gradient(180deg, rgba(7, 10, 17, 0.26) 0%, rgba(7, 10, 17, 0.04) 48%, rgba(7, 10, 17, 0.86) 100%);
}

.ibit-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1420px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 32px 90px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.ibit-hero__content {
    position: relative;
    z-index: 5;
    width: 57%;
    max-width: 760px;
    padding-top: 4px;
}

.ibit-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 5.1vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.ibit-hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
    color: rgba(198, 143, 87, 0.76);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ibit-hero__subtitle span {
    font-size: 30px;
    line-height: 1;
    transform: translateY(-1px);
}

.ibit-hero__subtitle:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.ibit-hero__form {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 592px;
    margin-top: 54px;
}

.ibit-hero__input {
    width: 410px;
    height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(198, 143, 87, 0.22);
    border-radius: 8px;
    outline: none;
    background: rgba(7, 10, 17, 0.48);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    backdrop-filter: blur(14px);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ibit-hero__input::placeholder {
    color: rgba(210, 216, 230, 0.62);
}

.ibit-hero__input:focus {
    border-color: rgba(198, 143, 87, 0.78);
    background: rgba(7, 10, 17, 0.72);
    box-shadow: 0 0 0 4px rgba(198, 143, 87, 0.13);
}

.ibit-hero__input--error {
    border-color: rgba(255, 75, 95, 0.85) !important;
    box-shadow: 0 0 0 4px rgba(255, 75, 95, 0.13) !important;
}

.ibit-hero__button {
    width: 166px;
    height: 54px;
    border: 0;
    border-radius: 9px;
    background: #c68f57;
    color: #101014;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(198, 143, 87, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ibit-hero__button:hover {
    background: #d9a268;
    box-shadow: 0 18px 44px rgba(198, 143, 87, 0.34);
    transform: translateY(-1px);
}

.ibit-hero__button:active {
    transform: translateY(0);
}

.ibit-hero__actions {
    display: flex;
    align-items: flex-start;
    gap: 58px;
    margin-top: 46px;
}

.ibit-hero__action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ibit-hero__action-title {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.ibit-hero__socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ibit-hero__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    border: 1px solid rgba(198, 143, 87, 0.19);
    border-radius: 12px;
    background: rgba(9, 13, 23, 0.58);
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ibit-hero__icon-btn:hover {
    border-color: rgba(198, 143, 87, 0.48);
    background: rgba(24, 20, 17, 0.84);
    box-shadow: 0 12px 30px rgba(198, 143, 87, 0.16);
    transform: translateY(-1px);
}

.ibit-hero__icon-btn img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.ibit-hero__qr-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
}

.ibit-hero__qr-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(#ffffff 0 0) 0 0 / 8px 8px no-repeat,
            linear-gradient(#ffffff 0 0) 14px 0 / 8px 8px no-repeat,
            linear-gradient(#ffffff 0 0) 0 14px / 8px 8px no-repeat,
            linear-gradient(#ffffff 0 0) 14px 14px / 8px 8px no-repeat,
            linear-gradient(#ffffff 0 0) 7px 7px / 4px 4px no-repeat,
            linear-gradient(#ffffff 0 0) 14px 8px / 4px 4px no-repeat,
            linear-gradient(#ffffff 0 0) 8px 14px / 4px 4px no-repeat;
    opacity: 0.95;
}

.ibit-hero__stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(96px, 1fr));
    gap: 40px;
    max-width: 830px;
    margin-top: 56px;
}

.ibit-hero__stat-value {
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.ibit-hero__stat-text {
    margin-top: 12px;
    color: rgba(196, 201, 222, 0.62);
    font-size: 16px;
    line-height: 1.32;
    font-weight: 500;
}

.ibit-hero__phone {
    position: absolute;
    z-index: 4;
    right: 32px;
    top: 50%;
    width: 40%;
    max-width: 580px;
    height: min(76vh, 660px);
    min-height: 545px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateY(-49%);
}

.ibit-hero__phone::before {
    content: "";
    position: absolute;
    width: 76%;
    height: 76%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 143, 87, 0.26), transparent 66%);
    filter: blur(24px);
    opacity: 0.72;
    animation: ibitPhoneAura 5.5s ease-in-out infinite;
}

.ibit-hero__phone-img {
    position: relative;
    z-index: 2;
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.50));
    animation: ibitPhoneFloat 5.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes ibitPhoneFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes ibitPhoneAura {
    0% {
        transform: scale(0.96);
        opacity: 0.54;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.82;
    }

    100% {
        transform: scale(0.96);
        opacity: 0.54;
    }
}

@keyframes ibitHeroGlowMove {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
    }

    100% {
        transform: translate3d(1.5%, 1%, 0) scale(1.04);
    }
}

@keyframes ibitHeroGridMove {
    0% {
        background-position:
                0 0,
                0 0,
                0 0,
                0 0;
    }

    100% {
        background-position:
                72px 72px,
                72px 72px,
                0 0,
                0 0;
    }
}

@keyframes ibitHeroLinesFloat {
    0% {
        transform: translateY(0) skewY(-6deg);
        opacity: 0.42;
    }

    100% {
        transform: translateY(-18px) skewY(-6deg);
        opacity: 0.68;
    }
}

@media (max-width: 1200px) {
    .ibit-hero__inner {
        padding-left: 44px;
        padding-right: 44px;
    }

    .ibit-hero__content {
        width: 60%;
    }

    .ibit-hero__phone {
        right: -4px;
        width: 44%;
        height: min(74vh, 610px);
        min-height: 510px;
        transform: translateY(-48%);
    }

    .ibit-hero__stats {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .ibit-hero {
        min-height: 100vh;
    }

    .ibit-hero__inner {
        min-height: 100vh;
        padding: 78px 26px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 36px;
    }

    .ibit-hero__content {
        width: 100%;
        max-width: 100%;
    }

    .ibit-hero__phone {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 420px;
        height: 520px;
        min-height: 0;
        align-self: center;
        margin-top: -12px;
        opacity: 1;
        transform: none;
    }

    .ibit-hero__form {
        max-width: 100%;
    }

    .ibit-hero__input {
        /*flex: 1;*/
        width: auto;
    }

    .ibit-hero__stats {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .ibit-hero {
        min-height: auto;
    }

    .ibit-hero::before {
        inset: -12%;
        background:
                radial-gradient(circle at 20% 12%, rgba(198, 143, 87, 0.20), transparent 34%),
                radial-gradient(circle at 82% 32%, rgba(198, 143, 87, 0.11), transparent 34%),
                linear-gradient(115deg, #070a11 0%, #0a0d15 48%, #090b11 100%);
    }

    .ibit-hero__inner {
        min-height: auto;
        padding: 54px 18px 28px;
        justify-content: flex-start;
    }

    .ibit-hero__title {
        font-size: 46px;
        line-height: 1.03;
        letter-spacing: -0.05em;
    }

    .ibit-hero__subtitle {
        margin-top: 26px;
        font-size: 16px;
    }

    .ibit-hero__form {
        margin-top: 34px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ibit-hero__input,
    .ibit-hero__button {
        width: 100%;
    }

    .ibit-hero__actions {
        gap: 28px;
        flex-wrap: wrap;
        margin-top: 32px;
    }

    .ibit-hero__action-title {
        font-size: 14px;
    }

    .ibit-hero__icon-btn {
        width: 47px;
        height: 47px;
    }

    .ibit-hero__stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 28px 24px;
        margin-top: 42px;
    }

    .ibit-hero__stat-value {
        font-size: 31px;
    }

    .ibit-hero__stat-text {
        font-size: 15px;
    }

    .ibit-hero__phone {
        max-width: 330px;
        height: 520px;
        margin-top: 4px;
    }

    .ibit-hero__phone-img {
        animation-duration: 5s;
    }

    @keyframes ibitPhoneFloat {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-14px);
        }

        100% {
            transform: translateY(0);
        }
    }
}

@media (max-width: 420px) {
    .ibit-hero__title {
        font-size: 40px;
    }

    .ibit-hero__stats {
        grid-template-columns: 1fr 1fr;
    }

    .ibit-hero__phone {
        max-width: 290px;
        height: 450px;
    }
}

.coin-ticker-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 34px 0;
    background: #1F1F1F;
}

.coin-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.coin-ticker::before,
.coin-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 3;
    width: 180px;
    height: 100%;
    pointer-events: none;
}

.coin-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #1F1F1F 0%, rgba(31, 31, 31, 0) 100%);
}

.coin-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #1F1F1F 0%, rgba(31, 31, 31, 0) 100%);
}

.coin-ticker__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: coinTickerMoveLeft 30s linear infinite;
}

.coin-ticker:hover .coin-ticker__track {
    animation-play-state: paused;
}

.coin-ticker__group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    flex: 0 0 auto;
}

.coin-ticker__item {
    height: 66px;
    padding: 0 26px 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.coin-ticker__item img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    flex: 0 0 auto;
}

@keyframes coinTickerMoveLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .coin-ticker-section {
        padding: 26px 0;
    }

    .coin-ticker::before,
    .coin-ticker::after {
        width: 80px;
    }

    .coin-ticker__track {
        animation-duration: 30s;
    }

    .coin-ticker__group {
        gap: 16px;
        padding-right: 16px;
    }

    .coin-ticker__item {
        height: 54px;
        padding: 0 20px 0 16px;
        gap: 10px;
        font-size: 15px;
    }

    .coin-ticker__item img {
        width: 28px;
        height: 28px;
    }
}

.ecosystem-section {
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    padding: 72px 24px 78px;
}

.ecosystem-section__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.ecosystem-section__head {
    text-align: center;
    margin-bottom: 126px;
}

.ecosystem-section__title {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.055em;
    background: linear-gradient(90deg, #9f6735 0%, #c68f57 48%, #f0bf83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecosystem-section__title span {
    display: inline-block;
}

.ecosystem-section__subtitle {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 3.7vw, 47px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.ecosystem-section__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.ecosystem-card {
    overflow: hidden;
    min-height: 352px;
    border-radius: 7px;
    background: #ffffff;
    color: #000000;
}

.ecosystem-card__image {
    width: 100%;
    height: 184px;
    overflow: hidden;
    background: #121212;
}

.ecosystem-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecosystem-card__body {
    min-height: 168px;
    padding: 38px 18px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
}

.ecosystem-card__title {
    margin: 0;
    color: #000000;
    text-align: center;
    font-size: clamp(20px, 1.85vw, 26px);
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.ecosystem-section__action {
    display: flex;
    justify-content: center;
    margin-top: 94px;
}

.ecosystem-section__button {
    min-width: 174px;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.ecosystem-section__button:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
    box-shadow: 0 18px 42px rgba(255, 255, 255, 0.08);
}

.ecosystem-section__button-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-section__button-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .ecosystem-section {
        padding: 64px 20px 70px;
    }

    .ecosystem-section__head {
        margin-bottom: 76px;
    }

    .ecosystem-section__cards {
        gap: 20px;
    }

    .ecosystem-card__image {
        height: 160px;
    }

    .ecosystem-card__body {
        min-height: 154px;
        padding: 30px 14px 24px;
    }

    .ecosystem-card__title {
        font-size: 21px;
    }

    .ecosystem-section__action {
        margin-top: 70px;
    }
}

@media (max-width: 820px) {
    .ecosystem-section__head {
        margin-bottom: 52px;
    }

    .ecosystem-section__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .ecosystem-card {
        min-height: auto;
    }

    .ecosystem-card__image {
        height: 210px;
    }

    .ecosystem-card__body {
        min-height: 138px;
        padding: 30px 18px 28px;
    }

    .ecosystem-card__title {
        font-size: 23px;
    }

    .ecosystem-section__action {
        margin-top: 52px;
    }
}

@media (max-width: 520px) {
    .ecosystem-section {
        padding: 52px 16px 58px;
    }

    .ecosystem-section__title {
        font-size: 31px;
    }

    .ecosystem-section__subtitle {
        font-size: 29px;
    }

    .ecosystem-card__image {
        height: 176px;
    }

    .ecosystem-card__body {
        min-height: 128px;
        padding: 26px 14px 24px;
    }

    .ecosystem-card__title {
        font-size: 20px;
    }

    .ecosystem-section__button {
        min-width: 160px;
        height: 48px;
        font-size: 16px;
    }
}

.margin-section {
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
    color: #ffffff;
    padding: 72px 24px 88px;
}

.margin-section__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.margin-section__head {
    text-align: center;
    margin-bottom: 92px;
}

.margin-section__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.055em;
    background: linear-gradient(90deg, #9f6735 0%, #c68f57 48%, #f0bf83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.margin-section__subtitle {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3.35vw, 44px);
    line-height: 1.14;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.margin-section__image-wrap {
    width: 100%;
    max-width: 1080px;
    aspect-ratio: 1080 / 676;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
            0 34px 90px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.margin-section__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .margin-section {
        padding: 64px 20px 76px;
    }

    .margin-section__head {
        margin-bottom: 64px;
    }

    .margin-section__image-wrap {
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .margin-section {
        padding: 56px 18px 64px;
    }

    .margin-section__head {
        margin-bottom: 44px;
    }

    .margin-section__title {
        font-size: 34px;
    }

    .margin-section__subtitle {
        max-width: 620px;
        margin: 0 auto;
        font-size: 32px;
    }

    .margin-section__image-wrap {
        border-radius: 12px;
    }
}

@media (max-width: 520px) {
    .margin-section {
        padding: 48px 16px 56px;
    }

    .margin-section__head {
        margin-bottom: 34px;
    }

    .margin-section__title {
        font-size: 30px;
    }

    .margin-section__subtitle {
        font-size: 27px;
        line-height: 1.18;
    }

    .margin-section__image-wrap {
        border-radius: 10px;
    }
}

.currency-section {
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
    color: #ffffff;
    padding: 58px 24px 34px;
}

.currency-section__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 34px;
}

.currency-section__content {
    position: relative;
    z-index: 2;
}

.currency-section__title {
    margin: 0 0 34px;
    font-size: clamp(36px, 4.1vw, 54px);
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.065em;
}

.currency-section__title span {
    display: block;
    width: fit-content;
    background: linear-gradient(90deg, #9f6735 0%, #c68f57 50%, #f0bf83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.currency-section__text {
    margin: 0;
    max-width: 590px;
    color: rgba(255, 255, 255, 0.48);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.34;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.currency-section__visual {
    position: relative;
    z-index: 1;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.currency-section__image {
    display: block;
    width: 100%;
    max-width: 470px;
    height: auto;
    object-fit: contain;
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .currency-section {
        padding: 56px 20px 38px;
    }

    .currency-section__inner {
        grid-template-columns: 1fr;
        gap: 38px;
        text-align: center;
    }

    .currency-section__title {
        margin-bottom: 28px;
    }

    .currency-section__title span {
        margin-left: auto;
        margin-right: auto;
    }

    .currency-section__text {
        margin: 0 auto;
        max-width: 620px;
    }

    .currency-section__visual {
        min-height: auto;
        justify-content: center;
    }

    .currency-section__image {
        max-width: 500px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .currency-section {
        padding: 48px 18px 34px;
    }

    .currency-section__title {
        margin-bottom: 24px;
        font-size: 34px;
        line-height: 1.18;
    }

    .currency-section__text {
        font-size: 16px;
        line-height: 1.4;
    }

    .currency-section__image {
        max-width: 430px;
    }
}

@media (max-width: 520px) {
    .currency-section {
        padding: 42px 16px 30px;
    }

    .currency-section__title {
        font-size: 29px;
        line-height: 1.22;
        letter-spacing: -0.055em;
    }

    .currency-section__text {
        font-size: 15px;
    }

    .currency-section__image {
        max-width: 350px;
    }
}

.security-section {
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
    color: #ffffff;
    padding: 58px 24px 86px;
}

.security-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1320px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 18%,
            rgba(255, 255, 255, 0.14) 50%,
            rgba(255, 255, 255, 0.08) 82%,
            rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.security-section__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.security-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.security-card {
    min-height: 190px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111111;
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    padding: 30px 46px 30px 36px;
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
    transform-style: preserve-3d;
}

.security-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
    background: #131313;
}

.security-card__icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-card__icon svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-card__content {
    min-width: 0;
}

.security-card__title {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 25px;
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.security-card__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.055em;
}

@media (max-width: 1100px) {
    .security-section {
        padding: 54px 20px 72px;
    }

    .security-section::before {
        width: calc(100% - 40px);
    }

    .security-section__grid {
        gap: 22px;
    }

    .security-card {
        grid-template-columns: 150px 1fr;
        padding: 28px 30px;
    }

    .security-card__icon {
        width: 104px;
        height: 104px;
    }

    .security-card__icon svg {
        width: 56px;
        height: 56px;
    }

    .security-card__title {
        font-size: 23px;
    }

    .security-card__text {
        font-size: 15px;
    }
}

@media (max-width: 820px) {
    .security-section__grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .security-card {
        min-height: 170px;
        grid-template-columns: 130px 1fr;
    }
}

@media (max-width: 520px) {
    .security-section {
        padding: 42px 16px 58px;
    }

    .security-section::before {
        width: calc(100% - 32px);
    }

    .security-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 22px;
        padding: 30px 22px;
    }

    .security-card__icon {
        width: 98px;
        height: 98px;
    }

    .security-card__icon svg {
        width: 52px;
        height: 52px;
    }

    .security-card__title {
        margin-bottom: 18px;
        font-size: 23px;
        line-height: 1;
    }

    .security-card__text {
        font-size: 15px;
        line-height: 1.3;
    }
}

.app-promo-section {
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
    color: #ffffff;
    padding: 66px 24px 72px;
}

.app-promo-section__inner {
    width: 100%;
    max-width: 1240px;
    min-height: 690px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 54px;
}

.app-promo-section__content {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.app-promo-section__title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 3.35vw, 45px);
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.app-promo-section__text {
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.app-promo-section__stores {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.app-promo-section__store {
    width: 150px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    transition: border-color 220ms ease, color 220ms ease, background 220ms ease, transform 220ms ease;
}

.app-promo-section__store:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.app-promo-section__store-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #ffffff;
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.app-promo-section__store-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-promo-section__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-promo-section__button {
    min-width: 138px;
    height: 44px;
    border-radius: 999px;
    padding: 0 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.app-promo-section__button:hover {
    transform: translateY(-2px);
}

.app-promo-section__button--primary {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.app-promo-section__button--primary:hover {
    background: #f2f2f2;
}

.app-promo-section__button--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.app-promo-section__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.04);
}

.app-promo-section__visual {
    position: relative;
    z-index: 1;
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-promo-section__phone {
    position: relative;
    width: min(100%, 335px);
    aspect-ratio: 770 / 1628;
    overflow: visible;
}

.app-promo-section__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.48));
}

@media (max-width: 1100px) {
    .app-promo-section {
        padding: 60px 20px 66px;
    }

    .app-promo-section__inner {
        grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.72fr);
        min-height: 620px;
        gap: 36px;
    }

    .app-promo-section__visual {
        min-height: 620px;
    }

    .app-promo-section__phone {
        width: min(100%, 300px);
    }

    .app-promo-section__stores {
        gap: 14px;
    }

    .app-promo-section__store {
        width: 142px;
    }
}

@media (max-width: 860px) {
    .app-promo-section__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 46px;
        text-align: center;
    }

    .app-promo-section__content {
        padding-top: 0;
    }

    .app-promo-section__stores,
    .app-promo-section__actions {
        justify-content: center;
    }

    .app-promo-section__visual {
        min-height: auto;
    }

    .app-promo-section__phone {
        width: min(100%, 280px);
    }
}

@media (max-width: 560px) {
    .app-promo-section {
        padding: 48px 16px 54px;
    }

    .app-promo-section__title {
        font-size: 31px;
        line-height: 1.25;
    }

    .app-promo-section__text {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .app-promo-section__stores {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 36px;
    }

    .app-promo-section__store {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }

    .app-promo-section__actions {
        flex-direction: column;
        gap: 12px;
    }

    .app-promo-section__button {
        width: 100%;
        max-width: 280px;
    }

    .app-promo-section__phone {
        width: min(100%, 245px);
    }
}

.final-cta-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #111111;
    padding: 90px 24px 92px;
}

.final-cta-section__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-section__title {
    margin: 0 0 28px;
    font-size: clamp(34px, 3.7vw, 48px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.055em;
    background: linear-gradient(90deg, #9f6735 0%, #c68f57 50%, #f0bf83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta-section__subtitle {
    margin: 0;
    color: #000000;
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.final-cta-section__icon {
    width: 38px;
    height: 38px;
    margin: 38px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-section__icon svg {
    width: 38px;
    height: 38px;
    fill: url("#finalCtaGradient");
}

.final-cta-section__icon svg path {
    fill: url("#finalCtaHeartGradient");
}

.final-cta-section__button {
    min-width: 124px;
    height: 45px;
    padding: 0 28px;
    border-radius: 999px;
    background: #1f1f1f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.final-cta-section__button:hover {
    transform: translateY(-2px);
    background: #111111;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 72px 18px 76px;
    }

    .final-cta-section__title {
        margin-bottom: 22px;
        font-size: 33px;
    }

    .final-cta-section__subtitle {
        font-size: 30px;
    }

    .final-cta-section__icon {
        margin-top: 32px;
        margin-bottom: 26px;
    }
}

@media (max-width: 520px) {
    .final-cta-section {
        padding: 60px 16px 64px;
    }

    .final-cta-section__title {
        font-size: 29px;
        line-height: 1.18;
    }

    .final-cta-section__subtitle {
        font-size: 26px;
        line-height: 1.18;
    }

    .final-cta-section__button {
        min-width: 132px;
        height: 44px;
    }
}