/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up.animated.delay-1 {
    animation-delay: 0.1s;
}

.fade-in-up.animated.delay-2 {
    animation-delay: 0.2s;
}

.fade-in-up.animated.delay-3 {
    animation-delay: 0.3s;
}

.fade-in-up.animated.delay-4 {
    animation-delay: 0.4s;
}

/* Color Variables */
:root {
    --color-basic-dark: #000000;
    --color-basic-light: #FFFFFF;
    --color-primary: #5462EB;
    --color-secondary: #FF9C10;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--color-basic-dark);
    background-color: var(--color-basic-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Typography Styles */
h1 {
    font-size: 68px;
    line-height: 100%;
    letter-spacing: -3.4px;
    font-weight: 500;
}

h2 {
    font-size: 50px;
    line-height: 100%;
    letter-spacing: -2px;
    font-weight: 500;
}

h3 {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.96px;
    font-weight: 600;
}

.opacity-05 {
    opacity: 0.5;
}

.body-01 {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.4px;
    font-weight: 500;
}

.body-02 {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    font-weight: 400;
}

.body-03 {
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    font-weight: 400;
}

.button-rg {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.4px;
    font-weight: 500;
    white-space: nowrap;
}

.button-sm {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.32px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-bg-mobile {
    display: none;
}

.nav {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.32px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-basic-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav:hover {
    color: var(--color-primary);
}

.header-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

.hero {
    padding: 36px 0;
}

.title {
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 17.6px */
letter-spacing: -0.32px;
}

.tab {
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 28.8px */
letter-spacing: -0.96px;
}

.benefits-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.light-txt {
    color: var(--color-basic-light);
}


.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    position: relative;
}


.hero-bg-left {
    position: absolute;
    top: -340px;
    left: -440px;
    width: 915.394px;
    height: 598.463px;
    transform: rotate(142.404deg);
    flex-shrink: 0;
    filter: blur(75px);
    z-index: -1;
}

.hero-bg-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-right {
    position: absolute;
    bottom: -180px;
    right: -260px;
    width: 744.414px;
    height: 501.15px;
    transform: rotate(145.184deg);
    flex-shrink: 0;
    fill: conic-gradient(from 135deg at 52.72% 30.87%, rgba(98, 132, 255, 0.40) 20.769230872392654deg, rgba(255, 114, 182, 0.40) 122.88461208343506deg, rgba(249, 229, 232, 0.40) 211.15383625030518deg, rgba(199, 237, 255, 0.40) 360deg);
filter: blur(75px);
z-index: -1;
}

.hero-bg-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.hero-title h1 {
    text-align: center;
    width: 1035px;
}

.hero-title p {
    width: 642px;
    text-align: center;
}


.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 50px;
    padding-right: 50px;
}

.header-wrapper {
    display: flex;
    padding: 16px 0;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.burger-menu {
    display: none;
}

.btn-sm-primary {
    display: inline-flex;
    padding: 14px 24px 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: var(--color-primary);
    color: var(--color-basic-light);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.32px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-sm-primary:hover {
    background: var(--color-basic-dark);
    color: var(--color-basic-light);
}

.btn-sm-primary:disabled {
    background: var(--color-primary);
    color: var(--color-basic-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-rg-primary {
    display: inline-flex;
    padding: 18px 30px 21px 30px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 14px;
    background: var(--color-primary);
    color: var(--color-basic-light);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.4px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.btn-rg-primary:hover {
    background: var(--color-basic-dark);
    color: var(--color-basic-light);
}

.btn-rg-primary:disabled {
    background: var(--color-primary);
    color: var(--color-basic-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-rg-basic {
    display: inline-flex;
    padding: 18px 30px 21px 30px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 14px;
    background: var(--color-basic-dark);
    color: var(--color-basic-light);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.4px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.btn-rg-basic:hover {
    background: var(--color-secondary);
    color: var(--color-basic-light);
}

.btn-rg-basic:disabled {
    background: var(--color-basic-dark);
    color: var(--color-basic-light);
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hero Chat Styles */
.hero-chat {
    width: 100%;
    max-width: 800px;
}

.chat-text-box {
    position: relative;
    margin-bottom: 24px;
}

.chat-input-wrapper {
    display: flex;
    height: 170px;
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.white-box_hiding {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: 20px; */
    background: var(--color-basic-light);
    z-index: 1;
    pointer-events: none;
    border-radius: 24px;
}

.chat-input {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: var(--color-basic-dark);
    background: transparent;
    min-height: 40px;
    max-height: 200px;
    overflow-y: auto;
}

.chat-input::placeholder {
    color: #999;
}

.submit_icon_real {
    position: absolute;
    right: 24px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-basic-dark);
    color: var(--color-basic-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.submit_icon_real:hover:not(.is-disabled) {
    background: var(--color-basic-dark);
}

.submit_icon_real.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit_icon_real:not(.is-disabled) {
    opacity: 1;
}

.submit_icon_hide {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.arrow_up_icon {
    width: 20px;
    height: 20px;
}

/* Pills Styles */
.pills_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.query_pill {
    display: flex;
    padding: 6px 10px 8px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid;
}

/* Задачи */
.query_pill[data-query-type="tasks"] {
    border: 1px solid #DACEFF;
    background: #FBFAFF;
    color: var(--primary, #5462EB);
}

/* Напоминания */
.query_pill[data-query-type="reminders"] {
    border: 1px solid #B0EBEF;
    background: #EEFFFE;
    color: #0086A3;
}

/* Календарь */
.query_pill[data-query-type="calendar"] {
    border: 1px solid #D4EB97;
    background: #FAFFEB;
    color: #679600;
}

/* Документы */
.query_pill[data-query-type="documents"] {
    border: 1px solid #FFCAE7;
    background: #FFF2FA;
    color: #FC2382;
}

/* Загрузить файл */
.query_pill[data-query-type="upload"] {
    border: 1px solid #B7CDFF;
    background: #F2F3FF;
    color: #3874FF;
}

/* E-mail */
.query_pill[data-query-type="email"] {
    border: 1px solid #B7CDFF;
    background: #F2F3FF;
    color: #3874FF;
}

/* Hover для всех пилюль */
.query_pill:hover {
    transform: scale(1.03);
    background: transparent;
}

.icon_wrap_pill {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.icon_wrap_pill svg {
    width: 100%;
    height: 100%;
}

.icon_wrap_pill svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}

.pill_text {
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
    white-space: nowrap;
    color: inherit;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-basic-light);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #F5F5F5;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-title {
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -1.6px;
}

.modal-text {
    font-size: 16px;
    line-height: 130%;
    color: var(--color-basic-dark);
    margin-bottom: 24px;
}

.how {
    padding-top: 120px;
}

.how-top .title.opacity-05 {
    margin-bottom: 8px;
}

.how-wrapper {
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 48px;
}

.how-top-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
gap: 12px;
align-self: stretch;
}

.how-top-right {
    padding-top: 11px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    flex: 1 0 0;
}

.how-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: flex-start;
    align-self: stretch;
}

.how-card {
    display: flex;
    height: 405px;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 24px;
    background-image: url(../media/steps-card.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.how-card-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.how-card-animated-bg.loaded {
    opacity: 1;
}

.how-card .card-content {
    position: relative;
    z-index: 1;
}

.how-card.step-2 {
    background-image: url(../media/steps-card-1.webp);
    color: var(--color-basic-light);
}

.how-card.step-3 {
    background-image: url(../media/steps-card-2.webp);
    color: var(--color-basic-light);
}

.how-card.step-2 .step-number,
.how-card.step-3 .step-number {
    color: var(--color-basic-dark);
}

.how-card .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.how-card .step-number {
    display: flex;
    width: 28px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 8px;
background: #FFF;
}

.step-content {
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
align-self: stretch;
}

.functions {
    padding-top: 120px;
}

.functions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.functions-top {
    text-align: center;
    display: flex;
padding: 0 40px;
flex-direction: column;
align-items: center;
gap: 8px;
align-self: stretch;
}

.functions-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: flex-start;
    align-self: stretch;
}

.functions-card {
    display: flex;
    height: 176px;
    min-width: 252px;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #F2F4F7;
    position: relative;
    text-align: center;
}

.functions-card-mark {
    position: absolute;
    right: -12.352px;
    top: -11px;
    display: flex;
    transform: rotate(18.093deg);
    padding: 2px 10px 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    background: var(--basic-dark, #000);
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}

.benefits {
    padding-top: 120px;
}

.benefits-wrapper {
    display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}

.benefits-top {
    text-align: center;
    display: flex;
padding: 0 40px;
flex-direction: column;
align-items: center;
gap: 8px;
align-self: stretch;
}

.benefits-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: flex-start;
    align-self: stretch;
}

.benefits-card {
    display: flex;
height: 479px;
min-width: 304px;
padding: 40px 24px;
flex-direction: column;
justify-content: space-between;
align-items: center;
flex: 1 0 0;
border-radius: 24px;
background: #F2F4F7;
}

.partners {
    padding-top: 120px;
}

.partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.partners-top {
    display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
align-self: stretch;
}

.partners-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.partners-tab-bar {
    display: flex;
justify-content: center;
align-items: center;
gap: 16px;
align-self: stretch;
}

.tab:hover {
    color: var(--color-secondary);
}

.tab.active {
    color: var(--color-secondary);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-color: #FF9C10;
    text-decoration-thickness: auto;
}

.partners-content {
    display: grid;
    grid-template-columns: minmax(0, 335px) 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    align-items: flex-start;
    align-self: stretch;
}

.partners-content-left {
    grid-row: 1 / 3;
    display: flex;
padding: 24px;
flex-direction: column;
align-items: center;
gap: 10px;
flex: 1 0 0;
align-self: stretch;
border-radius: 24px;
background: var(--primary, #5462EB);
color: #FFF;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 24px */
letter-spacing: -0.4px;
}

.partners-content-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 24px;
    background: #F2F4F7;
}

.partners-content-card p {
    color: var(--basic-dark, #000);
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 19.2px */
}

.partners-content-card:last-child {
    grid-column: 2 / 4;
}

.partners-content-wrap {
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
align-self: stretch;
}
.partners-content-wrap a {
    width: 100%;
    text-align: center;
}

.partners-content:not(.active) {
    display: none;
}

.investors-btn,
.partners-btn,
.developers-btn {
    display: none;
}

.investors-btn.active,
.partners-btn.active,
.developers-btn.active {
    display: inline-flex;
}

.banner {
    padding-top: 33px;
}

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.banner-left {
    display: flex;
    align-items: flex-start;
    margin-right: 40px;
}

.banner-left video {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

.banner-right {
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
flex: 1 0 0;
}

.banner-title {
    display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 8px;
align-self: stretch;
}

.banner-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
    align-self: stretch;
}

.banner-text .body-01 {
    grid-column: 1 / 3;
}

.form {
    padding-top: 34px;
}

.form-wrapper {
    display: flex;
padding: 24px 32px 40px 32px;
align-items: flex-start;
align-content: flex-start;
gap: 12px;
border-radius: 24px;
background: var(--primary, #5462EB);
flex-direction: row;
}

.form-left {
    display: flex;
min-width: 460px;
padding: 4px 40px 0 0;
flex-direction: column;
align-items: flex-start;
gap: 16px;
flex: 1 0 0;
}

.form-right {
    display: flex;
/* height: 325px; */
min-width: 460px;
flex-direction: column;
align-items: flex-start;
gap: 48px;
flex: 1 0 0;
}

.form-right form {
    width: 100%;
}

.form-right form button {
    width: 100%;
    margin-top: 48px;
    border: none;
    cursor: pointer;
}

.form-right form button:disabled {
opacity: 0.5;
background: var(--basic-dark, #000);
border: none;
cursor: not-allowed;
}

.form-right form .checkbox-wrapper {
    width: 100%;
}

.input-wrapper {
    display: flex;
align-items: center;
gap: 20px;
align-self: stretch;
margin-bottom: 12px;
position: relative;
}

.form-right form .body-3 {
    position: absolute;
    bottom: -24px;
    left: 120px;
    color: var(--color-basic-light);
}

.input-wrapper label {
    width: 100px;
    text-align: left;
}
.input-wrapper input {
    width: 100%;
    display: flex;
padding: 15px 0;
align-items: center;
gap: 10px;
flex: 1 0 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.40);
border-top: none;
border-left: none;
border-right: none;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 24px */
letter-spacing: -0.4px;
background: transparent;
outline: none;
color: var(--color-basic-light);
opacity: 0.5;
&::placeholder {
    color: var(--color-basic-light);
    opacity: 0.5;
}
}   
.input-wrapper input:focus {
    border-bottom: 1px solid var(--color-basic-light);
    opacity: 1;
&::placeholder {
    color: var(--color-basic-light);
    opacity: 1;
}
}

.partners-tab-bar .tab {
    white-space: nowrap;
}

.input-wrapper input:not(:placeholder-shown) {
    color: var(--color-basic-light);
    opacity: 1;
}

label a {
    color: var(--color-basic-light);
    font-family: Inter;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-color: rgba(255, 255, 255, 0.20);
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.checkbox-wrapper {
    display: flex;
align-items: center;
gap: 6px;
margin-top: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
    border-radius: 2px;
    border: 1px solid #FFF;
    opacity: 0.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    background: transparent;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    opacity: 1;
    background: #FFF;
    border: 1px solid #FFF;
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 7px;
    border: solid var(--primary, #5462EB);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.footer-wrapper {
    display: flex;
padding: 40px 0 20px 0;
justify-content: space-between;
align-items: center;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 120%;
}
.footer-right {
    display: flex;
align-items: center;
gap: 24px;
}

.dnt {
    display: flex;
align-items: center;
gap: 8px;
}

.mobile-menu-overlay {
    display: none;
}

@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 1024px) {
 .how-card {
min-width: 385px;
height: 405px;
 }



 .how-card .card-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

 .how-bottom {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    height: 405px;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
}

 .how-bottom::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

 .how-bottom:active {
    cursor: grabbing;
}

 .functions-bottom {
    grid-template-columns: 1fr 1fr 1fr;
}

 .functions-card:last-child {
    grid-column: 1 / -1;
}

 .partners-content {
    grid-template-columns: 1fr 1fr;
}

 .partners-content-left {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}
.partners-content-card {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
}
.partners-content-card._2 {
    grid-column: 2 / 1;
        grid-row: 3 / 2;
}
.partners-content-card._3 {
    grid-column: 2 / -1;
        grid-row: 3 / 2;
}
.partners-content-card:last-child {
    grid-column: 1 / -1;
    grid-row: 3 / 3;
}

.form-wrapper {
    flex-direction: column;
    gap: 12px;
}

.form-right {
    min-width: 100%;
}

.benefits-card {
    min-width: 100%;
}
}

@media (max-width: 991px) {

    .hero-title h1 {
      width: 100%;
    }
    .hero-title p {
      width: 100%;
      padding: 0 54px;
    }
    .nav {
       font-size: 32px;
       line-height: 100%;
       letter-spacing: -1.28px;
    }

    .benefits-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .benefits-card {
        min-width: 100%;
        display: grid;
        grid-template-columns: 111px 1fr;
        grid-template-rows: auto auto;
        column-gap: 24px;
        row-gap: 12px;
        padding: 40px 24px;
        align-items: start;
    }
    .benefits-card img {
        grid-column: 1 / 2;
        grid-row: 1 / -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .benefits-card h3 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin: 0;
    }
    .benefits-card p {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin: 0;
    }

    .partners-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        grid-template-columns: 1fr !important;
    }

    .hero-bg-left,
    .hero-bg-right,
    .m-bg2
     {
        display: none;
    }

  
    /* Hide desktop navigation */
    .header-nav {
       display: none;
    }
  
    .btn-sm-primary:not(.mobile-menu-btn) {
       display: none;
    }
  
    /* Burger menu button */
    .burger-menu {
       display: flex;
       flex-direction: column;
       gap: 4px;
       background: none;
       border: none;
       cursor: pointer;
       padding: 8px;
       z-index: 1002;
       position: relative;
    }
    
    .burger-menu.active span {
       background: var(--color-basic-dark);
    }
  
    .burger-menu span {
       width: 48px;
       height: 2px;
       background: var(--color-basic-dark);
       transition: all 0.3s ease;
    }
  
    .burger-menu.active span:nth-child(1) {
       transform: rotate(20deg) translate(-2px, 2px);
    }
  
    .burger-menu.active span:nth-child(2) {
       opacity: 0;
    }
  
    .burger-menu.active span:nth-child(3) {
       transform: rotate(-20deg) translate(1px, -11px);
    }
  
    /* Mobile menu overlay */
    .mobile-menu-overlay {
       display: block;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       z-index: 999;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.3s ease, visibility 0.3s ease;
       pointer-events: none;
    }
    
    .mobile-menu-overlay.is-open {
       pointer-events: auto;
    }
  
    .mobile-menu-overlay.is-open {
       opacity: 1;
       visibility: visible;
    }
  
    /* Mobile menu */
    .mobile-menu {
       position: fixed;
       top: 0;
       right: 0;
       width: 70%;
       max-width: 400px;
       background: #FFF;
       padding: 64px 20px 20px 20px;
       display: flex;
       flex-direction: column;
       transform: translateX(100%);
       transition: transform 0.3s ease;
       z-index: 1000;
       overflow-y: auto;
       border-radius: 24px 0 24px 24px;
    }
  
    .mobile-menu-overlay.is-open .mobile-menu {
       transform: translateX(0);
    }
  
    .hero-bg-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .hero-bg-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Mobile navigation */
    .mobile-nav ul {
       list-style: none;
       display: flex;
       flex-direction: column;
       gap: 20px;
       margin: 0;
       padding: 0;
    }
  
    .mobile-nav .nav {
       display: block;
    }
    .functions-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .partners-tab-bar {
        text-align: center;
        justify-content: flex-start;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .functions-card:last-child {
        grid-column: 2 / 2;
    }

    .banner-text {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .hero {
        overflow-x: hidden;
        margin-top: -62px;
        padding-top: 128px;
      }

      .banner-text .body-01 {
        margin-bottom: 4px;
      }
  
    /* Mobile menu button */
    .mobile-menu-btn {
       margin-top: auto;
       width: 100%;
       justify-content: center;
       margin-top: 48px;
    }
   }

 @media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
  h1 {
     font-size: 40px;
     line-height: 100%;
     letter-spacing: -2px;
  }
  h2 {
     font-size: 32px;
     line-height: 100%;
     letter-spacing: -1.28px;
  }

  .how-bottom {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .banner-left {
    margin-right: 0px;
    order: 2;
  }
  .banner-right {
    order: 1;
  }

  .hero-wrapper {
    gap: 40px;
  }

  .hero-title p {
    width: 100%;
    padding: 0px;
  }

  .how-top-sides {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .form-left {
    min-width: 100%;
  }

  .footer-wrapper {
    white-space: nowrap;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
    justify-content: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .how-top-right {
    padding-top: 0px;
  }

  .how-top-right .btn-rg-primary {
    width: 100%;
  }

  .form-right {
    min-width: 100%;
    height: 100%;
  }
 }

 @media (max-width: 576px) {

    .form-wrapper {
        padding: 20px 20px 40px 20px;
        gap: 32px;
    }

    .m-bg {
        display: none;
    }
    .m-bg2 {
        display: block;
    }


    .input-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 0px;
        align-self: stretch;
        margin-bottom: 12px;
        position: relative;
        flex-direction: column;
    }

    .form-right form .body-3 {
        left: 0px;
    }

    .functions-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .functions-card {
        min-width: 100%;
        height: 100%;
        text-align: center;
    }

    .hero-title {
        gap: 24px;
    }

    .functions-top {
        padding: 0px;
    }

    .benefits-top {
        padding: 0px;
    }

    .mobile-menu {
        width: 85%;
    }

    .btn-sm-primary,
    .btn-rg-primary,
    .btn-rg-basic {
        font-size: 18px;
        padding: 18px 16px 21px 16px;
    }


    /* .benefits-card {
        grid-template-columns: 111px 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 24px;
        row-gap: 12px;
    }
    .benefits-card img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 12px;
    }
    .benefits-card h3 {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        margin: 0;
    }
    .benefits-card p {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        margin: 0;
    } */

    .benefits-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .benefits-card img {
        order: 1;
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 12px;
    }
    .benefits-card h3 {
        order: 2;
    }
    .benefits-card p {
        order: 3;
    }

    .partners-content {
        grid-template-columns: 1fr !important;
    }

    .partners-content-left,
    .partners-content-card {
        grid-column: 1 / -1 !important;
    }

}

@media (max-width: 300px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .how-bottom {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
      }

    .partners-content {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .partners-content-left,
    .partners-content-card {
        padding: 16px;
    }
}