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

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #ffd700;
    --color-gold-dark: #eecf08;
    --color-gold-hover: #F0C800;
    --color-gold-primary: #FFDD2D;
    --color-dark: #1a1a1a;
    --color-gray-dark: #212121;
    --color-gray-medium: #575757;
    --color-gray-light: #868686;
    --color-gray-lighter: #BABABA;
    --color-border-light: #EBEBEB;
    --color-bg-dark: #20282D;
    --color-text-muted: #5D666F;
    --color-badge-bg: #e0e0e0;
    --color-slider-track: #E2E8F0;
    --color-slider-thumb-bg: #000000;
    --color-gray-cards:#D9D9D9;
    --color-slider-thumb-border: white;
    --color-card-badge: #0D0C0D;
    --color-disclaimer: #F59E0B;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 80px;

    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 20px;
    --radius-round: 100px;
    --radius-circle: 50%;

    --container-max: 1440px;
    --container-padding: 86px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #1a1a1a;
    background-color: var(--color-white);
    overflow-x: hidden;
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

ul, ol {
    list-style: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
}

.text-small {
    font-size: 14px;
}

.text-large {
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-lg {
    max-width: 1200px;
    padding: 0 var(--space-lg);
}

.container-md {
    max-width: 960px;
    padding: 0 var(--space-md);
}

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

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.grid {
    display: grid;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 8px;
}

.btn--primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn--primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn--outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn--dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn--dark:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn--invest {
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 12px;
    font-weight: 600;
}

.btn--invest:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn--small {
    padding: 8px 20px;
    font-size: 13px;
}

.btn--large {
    padding: 16px 40px;
    font-size: 16px;
}

.header {
    background-color: var(--color-black);
    height: 110px;
    padding: 35px 0;
    top: 0;
    z-index: 1000;
}

.header .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 40px;
    flex-shrink: 0;
}

.header__logo-image {
    width: 143px;
    height: 36px;
    object-fit: contain;
}

.header__nav {
    display: flex;
    gap: 50px;
    padding: 0 24px;
    max-width: 504px;
    height: 21px;
    align-items: center;
    justify-content: center;
}

.nav__link {
    color: #EFEFEF;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 23.94px;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--color-gold-primary);
}

.header__auth {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-shrink: 0;
}

.auth__btn {
    border-radius: var(--radius-md);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.auth__btn--login {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-gold-primary);
    width: 86px;
    height: 40px;
    padding: 10px 0;
}

.auth__btn--login:hover {
    background-color: var(--color-dark);
}

.auth__btn--primary {
    background-color: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    color: var(--color-black);
    width: 126px;
    height: 40px;
    padding: 10px 14px;
    gap: 8px;
}

.auth__btn--primary:hover {
    background-color: var(--color-gold-hover);
}

.hero {
    background-color: var(--color-black);
    color: var(--color-white);
    height: 606px;
    position: relative;
}

.hero__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.hero__text {
    width: 652px;
    margin-top: 129px;
    margin-left: 13px;
    position: relative;
}

.hero__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.13px;
    height: 130px;
    background-color: var(--color-white);
}

.hero__content-text {
    width: 567px;
    margin-left: 85px;
    display: flex;
    flex-direction: column;
    gap: 17.04px;
}

.hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 63.88px;
    line-height: 147%;
    letter-spacing: 0.02em;
    margin: 0;
}

.hero__title-second {
    letter-spacing: 0.01em;
}

.hero__description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    text-transform: capitalize;
    color: var(--color-gray-lighter);
    margin: 0;
}

.hero .btn--outline {
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 11.36px;
    line-height: 20px;
    letter-spacing: 0.085em;
    width: 54px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
    margin-top: 10px;
}

.hero__image {
    position: absolute;
    left: 862px;
    top: 11px;
    width: 383px;
    height: 525px;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.funding {
    background-color: var(--color-white);
    padding: 180px 0;
}

.funding__inner {
    max-width: 1290px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.funding__header {
    width: 487px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 56px;
}

.funding__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 128%;
    color: #1E1E1E;
    margin: 0;
    text-align: left;
}

.funding__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    text-transform: capitalize;
    color: var(--color-gray-light);
    margin: 0;
    text-align: left;
}

.funding .btn--primary {
    width: 161px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
    background-color: var(--color-gold-primary);
    color: var(--color-gray-dark);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: background-color 0.2s ease;
}

.funding .btn--primary:hover {
    background-color: var(--color-gold-hover);
}

.funding__features {
    display: flex;
    gap: 55px;
    margin-top: 0;
}

.features__item {
    width: 385px;
    height: 109px;
    padding: 3px 0;
    background-color: transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

.features__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 33px;
    height: 33px;
    color: #1E1E1E;
    margin: 0 0 16px 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.features__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--color-gray-medium);
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.investments {
    background-color: var(--color-white);
    margin-bottom: 180px;
}

.investments__inner {
    max-width: 1388px;
    margin: 0 auto;
    box-sizing: border-box;
}

.investments__title {
    width: 487px;
    height: 51px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 128%;
    color: #1E1E1E;
    margin: 0 0 56px 0;
    text-align: left;
    margin-left: 49px;
}

.investments__cards {
    width: 1388px;
    height: 550px;
    overflow-x: auto;   
    overflow-y: hidden; 
    
}

.investments__cards {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
.investments__cards::-webkit-scrollbar {
    display: none; 
}

.investments__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px; 
}

.investments__pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gold-primary); 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.investments__pagination-dot:hover {
    background-color: var(--color-gold-hover); 
    transform: scale(1.2);
}

.investments__pagination-dot.active {
    background-color: var(--color-gold-dark); 
}

.investments__track {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: max-content; 
    height: 100%;
    margin-left: 49px; 
}

.investments .card {
    width: 335px;
    height: 542px;
    background-color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.investments .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.investments .card__content {
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.investments .card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

.investments .card__info-block {
    width: 100%;
    height: 140px;
    gap: 6px;
    padding: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.investments .card__header {
    width: 100%;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.investments .card__property {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: var(--color-card-badge);
    display: flex;
    align-items: center;
    height: 100%;
}

.investments .card__badge {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: var(--color-card-badge);
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.investments .card__progress {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.investments .progress-bar {
    width: 262px;        
    height: 5px;
    background-color: var(--color-gray-cards);  
    border-radius: 2px;
    overflow: hidden;
}

.investments .progress-fill {
    height: 100%;
    background-color: var(--color-gold-dark); 
    border-radius: 2px;
    width: 0%; 
}

.investments .progress-percent {
    width: 36px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: var(--color-black);
}

.investments .card__stats {
    width: 100%;
    height: 96px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.investments .card__stat {
    width: 100%;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.investments .card__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-black);
}

.investments .card__value {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-black);
    margin-top: 4px;
}

.investments .card__divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
}

.investments .card__meta {
    width: 154px;
    height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.investments .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: var(--color-black);
    white-space: nowrap;
}

.investments .meta-icon {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: auto;
}

.investments .icon--clock,
.investments .icon--calendar {
    width: 16px;
    height: 16px;
}

.investments .icon--person {
    width: 12px;
    height: 12px;
}

.investments .card__buttons {
    width: 100%;
    height: 40px;
    display: flex;
    gap: 11px;
    justify-content: space-between;
}

.investments .btn--invest {
    width: 146px;
    height: 40px;
    padding: 10px 24px;
    background-color: var(--color-gold-primary);
    border-radius: var(--radius-md);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.investments .btn--invest:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 45, 0.3);
}

.support {
    background-color: var(--color-white);
    padding: 0;
    margin-bottom: 180px;
}

.support .container {
    max-width: 1304px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.support__content {
    display: flex;
    gap: 82px;
    align-items: center;
    width: 100%;
}

.support__text {
    width: 563px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.support__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 128%;
    color: #1E1E1E;
    height: 122px;
    margin: 0 0 50px 0;
    display: flex;
    align-items: center;
    word-break: break-word;
}

.support__description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 175%;
    color: var(--color-gray-medium);
    width: 100%;
    height: 70px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    word-break: break-word;
}

.support__disclaimer {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: var(--color-disclaimer);
    width: 100%;
    height: 56px;
    margin: 0 0 60px 0;
    word-break: break-word;
    overflow: hidden;
}

.support .btn--primary {
    width: 173px;
    height: 40px;
    padding: 10px 24px;
    background-color: var(--color-gold-primary);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.support .btn--primary:hover {
    background-color: var(--color-gold-hover);
}

.calculator {
    flex: none;
    width: 659px;
    height: 728px;
    background-color: var(--color-gold-dark);
    border-radius: var(--radius-lg);
    padding: 27px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.calculator__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 128%;
    color: #1E1E1E;
    text-align: center;
    width: 100%;
    height: 46px;
    margin: 0 0 31px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.calculator__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    height: 68px;
}

.calculator__field--currency {
    height: 72px;
}

.calculator__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-dark);
    height: 20px;
    display: flex;
    align-items: center;
}

.calculator__input {
    width: 100%;
    height: 43px;
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: var(--color-gray-dark);
    background: transparent;
    box-sizing: border-box;
    outline: none;
    transition: background-color 50000s ease-in-out 0s;
}

.calculator__input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--color-gold-dark) inset !important;
    -webkit-text-fill-color: var(--color-gray-dark) !important;
}

.calculator__input::placeholder {
    color: rgba(33, 33, 33, 0.5);
}

.calculator__select-wrapper {
    position: relative;
    width: 100%;
    height: 48px;
}

.calculator__select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-md);
    padding: 10px 40px 10px 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: var(--color-gray-dark);
    background: transparent;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.calculator__select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 7.41px;
    pointer-events: none;
    opacity: 1;
}

.calculator__select option {
    background-color: var(--color-white);
    color: var(--color-gray-dark);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    padding: 8px 12px;
}

.calculator__select option:hover {
    background-color: #f0f0f0;
}

.calculator__select option:checked {
    background-color: var(--color-badge-bg);
    font-weight: 500;
}

.calculator__slider-field {
    width: 588px;
    height: 84px;
    background-color: var(--color-gold-dark);
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.calculator__slider-header {
    width: 588px;
    height: 45px;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 4px 0;
    flex-shrink: 0;
}

.calculator__slider-label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 17.5px;
    line-height: 120%;
    color: #334155;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin: 0;
}

.calculator__slider-wrapper {
    width: 568px;
    height: 3px;
    margin: 0 auto 12px auto;
    flex-shrink: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.calculator__range {
    width: 100%;
    height: 3px;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, black, black var(--fill-percent, 0%), var(--color-slider-track) var(--fill-percent, 0%), var(--color-slider-track));
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    display: block;
}

.calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-slider-thumb-bg);
    border: 2px solid var(--color-slider-thumb-border);
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0px 1px 1px 0px #00000024, 0px 0.5px 0px 0px #00000014;
    margin-top: -2.5px;
}

.calculator__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-slider-thumb-bg);
    border: 2px solid var(--color-slider-thumb-border);
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0px 1px 1px 0px #00000024, 0px 0.5px 0px 0px #00000014;
    transform: translateY(-2.5px);
}

.calculator__range::-moz-range-track {
    width: 100%;
    height: 3px;
    background: transparent;
    border-radius: 2px;
}

.calculator__slider-labels {
    width: 566px;
    height: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-dark);
    flex-shrink: 0;
}

.calculator__divider {
    width: 560px;
    height: 0;
    border: none;
    border-top: 1px solid var(--color-black);
    margin: 0 auto 31px auto;
    box-sizing: border-box;
}

.calculator__results {
    width: 578px;
    height: 124px;
    margin: 0 auto 31px auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calculator__result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 28px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    color: var(--color-black);
}

.calculator__result strong {
    font-weight: 400;
}

.calculator__invest-btn {
    width: 123px;
    height: 40px;
    padding: 10px 14px;
    background-color: var(--color-gray-dark);
    border-radius: var(--radius-md);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
    text-align: center;
    transition: background-color 0.2s ease;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

.calculator__invest-btn:hover {
    background-color: #3a3a3a;
}

.calculator__slider-value-badge {
    width: 49px;
    height: 26px;
    border-radius: var(--radius-lg);
    padding: 3px 6px 6px 6px;
    background: #FFFFFF8C;
    border: 1px solid var(--color-border-light);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator__slider-value-number {
    width: 37px;
    height: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact {
    background-color: var(--color-white);
    text-align: center;
    height: 355px;
    margin-bottom: 180px;
    padding: 0;
}

.impact .container {
    max-width: 1305px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}

.impact__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 128%;
    color: #1E1E1E;
    width: 830px;
    height: 61px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 175%;
    color: var(--color-gray-medium);
    width: 833px;
    height: 70px;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.impact__stats {
    width: 1284px;
    height: 100px;
    margin: 100px auto 0;
    display: flex;
    gap: 100px;
    padding: 0 18px;
    box-sizing: border-box;
    align-items: center;
}

.stats__item {
    width: 282px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.stats__icon {
    width: 100px;
    height: 100px;
    background-color: #F2F2F2;
    border-radius: var(--radius-round);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__content {
    width: 132px;
    height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.stats__number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 52.8px;
    color: var(--color-black);
    width: 132px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 25.5px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    width: 132px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.stats__divider {
    width: 1px;
    height: 100px;
    background-color: var(--color-gray-dark);
    flex-shrink: 0;
}

.stats__icon-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.stats__icon-img--handshake {
    width: 50px;
    height: 50px;
}

.stats__icon-img--rocket {
    width: 50px;
    height: 48px;
}

.stats__icon-img--award {
    width: 40px;
    height: 65px;
}

.why {
    background-color: var(--color-black);
    height: 460px;
}

.why .container {
    max-width: 1290px;
    height: 380px;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why__header {
    text-align: left;
}

.why__title {
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 190%;
    letter-spacing: 0.02em;
    color: var(--color-white);
    width: 372px;
    height: 76px;
    margin: 0;
    padding: 0;
}

.why__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 1px;
    background-color: var(--color-white);
}

.why__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 175%;
    color: var(--color-gray-medium);
    width: 267px;
    height: 35px;
    margin: 18px 0 0 0;
    text-align: left;
}

.why__cards {
    position: relative;
    width: 1290px;
    height: 235px;
    margin: 16px auto 0;
    padding-left: 357px;
    display: flex;
    gap: 24px;
    box-sizing: border-box;
    align-items: stretch;
}

.why__cards::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 127.41px;
    background-color: var(--color-white);
    border-radius: 2px;
}

.why-card {
    width: 295px;
    height: 235px;
    flex-shrink: 0;
    background-color: var(--color-white);
    padding: 28px 13px 23px 13px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 20px),
        calc(100% - 30px) 100%,
        0 100%
    );
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card__icon {
    width: 76px;
    height: 76px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0 100%
    );
}

.why-card__icon-img {
    width: 35px;
    height: 35px;
    display: block;
    object-fit: contain;
}

.why-card__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    white-space: nowrap;
    color: #1C2539;
    margin: 0;
    padding: 0;
    max-width: 244px;
}

.why-card__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0;
    max-width: 274px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feedbacks {
    background-color: var(--color-white);
    margin-top: 100px;
    margin-bottom: 180px;
}

.feedbacks .container {
    max-width: 1305px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.feedbacks__read-more {
    display: block;
    width: 122px;
    height: 40px;
    margin: 0 0 40px 0;
    background-color: var(--color-gold-primary);
    border-radius: var(--radius-md);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-dark);
    text-align: center;
    transition: background-color 0.2s;
    align-self: flex-end;
    padding: 10px 0;
}

.feedbacks__read-more:hover {
    background-color: var(--color-gold-hover);
}

.feedbacks__title {
    width: 807px;
    height: 65px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 64.8px;
    color: #1C2539;
    margin: 0;
    padding: 0;
    text-align: left;
}

.feedbacks__list {
    width: 1305px;
    height: 359px;
    display: flex;
    gap: 30px;
}

.feedback {
    position: relative;
    width: 637.5px;
    height: 359px;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid #E9ECF1;
    flex-shrink: 0;
    box-sizing: border-box;
}

.feedback__avatar {
    position: absolute;
    top: 34px;
    left: 40px;
    width: 247px;
    height: 290px;
    object-fit: cover;
}

.feedback__name {
    position: absolute;
    top: 48px;
    left: 320.5px;
    width: 155px;
    height: 29px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #1C2539;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feedback__role {
    position: absolute;
    top: 86px;
    left: 320.5px;
    width: 68px;
    height: 21px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-text-muted);
}

.feedback__text {
    position: absolute;
    top: 132.72px;
    left: 320.5px;
    width: 292.12px;
    height: 144px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-text-muted);
    overflow: hidden;
    word-wrap: break-word;
    text-align: left;
}

.feedback__stars {
    position: absolute;
    top: 300px;
    left: 523.5px;
    width: 90.34px;
    height: 16px;
    display: block;
}

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

.cta {
    height: 264px;
    background-color: var(--color-gold-dark);
    padding: 0;
}

.cta .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    box-sizing: border-box;
}

.cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
    height: 100%;
}

.cta__text {
    width: 698px;
    height: 198px;
    flex-shrink: 0;
    transform: translateY(25px);
}

.cta__title {
    width: 522px;
    height: 129px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #1C2539;
    margin: 0 0 16px 0;
    padding: 0;
}

.cta__description {
    width: 698px;
    height: 53px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    transform: translateY(-10px);
}

.cta__actions {
    position: relative;
    width: 683px;
    height: 59px;
    background-color: transparent;
    border: 1px solid #E3E3E3;
    border-radius: var(--radius-md);
    box-sizing: border-box;
    flex-shrink: 0;
}

.cta__input {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 0 170px 0 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-md);
    transition: background-color 50000s ease-in-out 0s;
    border: none;
}

.cta__input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--color-bg-dark) inset !important;
    -webkit-text-fill-color: var(--color-white) !important;
}

.cta__input::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

.cta .btn--outline {
    position: absolute;
    top: 7.81px;
    left: 512px;
    width: 163px;
    height: 44px;
    background-color: #F2F2F2;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: var(--color-black);
    text-align: center;
    padding: 0;
    transition: background-color 0.2s;
    border: none;
}

.cta .btn--outline:hover {
    background-color: #e0e0e0;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .header__nav {
        gap: 30px;
    }
    .hero__content {
        justify-content: center;
        gap: 40px;
    }
    .hero__text {
        width: 550px;
        margin-left: 0;
        text-align: center;
    }
    .hero__text::before {
        display: none;
    }
    .hero__content-text {
        width: 100%;
        margin-left: 0;
        align-items: center;
    }
    .hero__image {
        position: static;
        width: 300px;
        max-width: 300px;
        margin: 0 auto;
        height: auto;
    }
    .funding__header {
        margin: 0 auto;
        text-align: center;
    }
    .funding__title,
    .funding__subtitle {
        text-align: center;
    }
    .funding__features {
        justify-content: center;
        gap: 30px;
    }
    .features__item {
        text-align: center;
        align-items: center;
        width: 300px;
    }
    .investments__title {
        margin: 0 auto 40px;
        text-align: center;
    }
    .investments__cards {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
        height: auto;
    }
    .investments__track {
        margin: 0 auto;
        padding-left: 0;
        justify-content: center;
        width: max-content;
    }
    .investments .progress-percent {
        width: auto;
        min-width: 36px;
        padding-left: 4px;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .why__cards::before {
        display: none !important;
    }
    .why__cards {
        width: 100%;
        padding-left: 0;
        overflow-x: auto;
        justify-content: center;
        gap: 20px;
    }
    .why-card {
        width: 280px;
    }
    .feedbacks__list {
        gap: 20px;
        justify-content: center;
    }
    .feedback {
        width: calc(50% - 10px);
        max-width: 500px;
        margin: 0 auto;
    }
    .cta {
        height: auto;
        padding: 40px 0 60px;
    }
    .cta__actions {
        max-width: 600px;
        background-color: transparent;
        border: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px; 
    }
    .cta__input {
        flex: 1 1 200px;
        min-width: 200px;
        height: 50px;
        border-radius: 8px;
        background-color: #20282D;
        padding: 0 20px;
    }
    .cta .btn--outline {
        flex: 0 0 auto;
        width: auto;
        min-width: 140px;
        height: 50px;
        border-radius: 8px;
        margin: 0;
        background-color: #F2F2F2;
        position: static;
    }
}
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    h1 { font-size: 42px; }
    h2 { font-size: 32px; }

    .header {
        height: auto;
        padding: 20px 0;
    }
    .header__inner {
        flex-wrap: wrap;
    }
    .header__nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
        height: auto;
    }
    .hero {
        height: auto;
        padding: 40px 0;
    }
    .hero__content {
        flex-direction: column;
        align-items: center;
    }
    .hero__text {
        width: 100%;
        margin: 0 0 30px 0;
        text-align: center;
    }
    .hero__text::before {
        display: none;
    }
    .hero__content-text {
        margin-left: 0;
        align-items: center;
    }
    .hero__image {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        height: auto;
    }
    .funding {
        padding: 80px 0;
    }
    .funding__header {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .funding__title {
        text-align: center;
    }
    .funding__subtitle {
        text-align: center;
    }
    .funding__features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .features__item {
        width: 100%;
        max-width: 500px;
        height: auto;
        text-align: center;
        align-items: center;
    }
    .features__title {
        text-align: center;
        white-space: normal;
    }
    .features__text {
        text-align: center;
    }
    .investments {
        margin-bottom: 100px;
    }
    .investments__title {
        width: 100%;
        margin-left: 0;
        text-align: center;
        height: auto;
    }
    .investments__cards {
        height: auto;
        overflow: visible;
    }
    .investments__track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 20px;
        margin: 0;
        width: auto;
        scrollbar-width: thin;
    }
    .investments .card {
        flex-shrink: 0;
        width: 300px;
        max-width: 335px;
        height: auto;
    }
    .investments .card__content {
        height: auto;
    }
    .investments .card__info-block {
        height: auto;
    }
    .investments .card__stats {
        height: auto;
    }
    .investments .progress-percent {
        width: auto;
        min-width: 36px;
        padding-left: 4px;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .support {
        margin-bottom: 100px;
    }
    .support__content {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }
    .support__text {
        width: 100%;
        height: auto;
        text-align: center;
        align-items: center;
    }
    .support__title {
        height: auto;
        margin-bottom: 30px;
    }
    .support__description {
        height: auto;
        margin-bottom: 30px;
    }
    .calculator {
        width: 100%;
        max-width: 600px;
        height: auto;
        padding: 30px;
    }
    .impact {
        height: auto;
        padding: 40px 0;
    }
    .impact__title {
        width: 100%;
        font-size: 36px;
        height: auto;
        white-space: normal;
    }
    .impact__subtitle {
        width: 100%;
        height: auto;
    }
    .impact__stats {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 40px;
        padding: 0;
        margin-top: 40px;
    }
    .stats__item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .stats__divider {
        display: none;
    }
    .why {
        height: auto;
        padding: 40px 0;
    }
    .why .container {
        height: auto;
    }
    .why__header {
        text-align: center;
        margin-bottom: 30px;
    }
    .why__title {
        width: 100%;
        margin: 0 auto;
        height: auto;
    }
    .why__subtitle {
        margin: 18px auto 0;
    }
    .why__cards {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        margin-top: 30px;
        gap: 20px;
    }
    .why__cards::before {
        display: none;
    }
    .why-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        clip-path: none;
    }
    .why-card__text {
        height: auto;
        line-height: 1.5;
    }
    .feedbacks {
        margin: 60px 0;
    }
    .feedbacks .container {
        align-items: center;
    }
    .feedbacks__read-more {
        align-self: center;
        margin: 0 auto 30px;
    }
    .feedbacks__title {
        width: 100%;
        text-align: center;
        height: auto;
    }
    .feedbacks__list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        gap: 30px;
    }
    .feedback {
        width: 100%;
        max-width: 500px;
        height: auto;
        position: static;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .feedback__avatar {
        position: static;
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    .feedback__name {
        position: static;
        width: auto;
        text-align: center;
        margin-bottom: 5px;
    }
    .feedback__role {
        position: static;
        width: auto;
        text-align: center;
        margin-bottom: 10px;
    }
    .feedback__text {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        text-align: center;
    }
    .feedback__stars {
        position: static;
        margin: 0 auto;
    }
    .cta {
        height: auto;
        padding: 40px 0 60px;
    }
    .cta__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: auto;
    }
    .cta__text {
        width: 100%;
        height: auto;
        transform: none;
    }
    .cta__title {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .cta__description {
        width: 100%;
        height: auto;
        transform: none;
    }
    .cta__actions {
        width: 100%;
        max-width: 500px;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: transparent;
        border: none;
        gap: 20px; 
    }
    .cta__input {
        flex: 1 1 200px;
        min-width: 200px;
        height: 50px;
        border-radius: 8px;
        background-color: #20282D;
        padding: 0 20px;
    }
    .cta .btn--outline {
        flex: 0 0 auto;
        width: auto;
        min-width: 140px;
        height: 50px;
        border-radius: 8px;
        margin: 0;
        background-color: #F2F2F2;
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }

    .header {
        height: auto;
        padding: 15px 0;
    }
    .header__inner {
        flex-direction: column;
        gap: 15px;
    }
    .header__nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Hero */
    .hero__title {
        font-size: 42px;
    }
    .hero__description {
        font-size: 14px;
    }
    .hero__image {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Funding */
    .funding {
        padding: 60px 0;
    }
    .funding__title {
        font-size: 32px;
    }
    .funding__subtitle {
        font-size: 16px;
    }

    /* Investments */
    .investments__title {
        font-size: 32px;
        height: auto;
        margin-bottom: 30px;
    }
    .investments .card {
        max-width: 335px;
    }
    .investments .progress-percent {
        width: auto;
        min-width: 36px;
        padding-left: 4px;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .support__title {
        font-size: 36px;
        height: auto;
        line-height: 1.3;
    }
    .support__description {
        font-size: 18px;
        height: auto;
    }
    .calculator {
        padding: 20px;
    }
    .calculator__title {
        font-size: 24px;
    }
    .impact__title {
        font-size: 32px;
    }
    .impact__subtitle {
        font-size: 18px;
    }
    .stats__number {
        font-size: 36px;
    }
    .stats__label {
        font-size: 14px;
    }
    .why__title {
        font-size: 32px;
        height: auto;
        line-height: 1.3;
    }
    .why__subtitle {
        font-size: 18px;
    }
    .why-card__title {
        font-size: 18px;
    }
    .why-card__text {
        font-size: 16px;
    }
    .why__cards::before {
        display: none;
    }
    .feedbacks__title {
        font-size: 32px;
        line-height: 1.3;
        height: auto;
    }
    .feedback__name {
        font-size: 18px;
    }
    .feedback__role,
    .feedback__text {
        font-size: 16px;
    }
    .cta__title {
        font-size: 32px;
        line-height: 1.3;
    }
    .cta__description {
        font-size: 16px;
    }
    .cta__input {
        font-size: 16px;
    }
    .cta .btn--outline {
        font-size: 14px;
    }
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px; 
    }
    .cta__input {
        width: 100%;
        flex: none;
    }
    .cta .btn--outline {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero__title {
        font-size: 36px;
    }
    .hero__image {
        max-width: 250px;
    }

    .funding__title {
        font-size: 28px;
    }

    .investments__title {
        font-size: 28px;
    }
    .investments .progress-percent {
        width: auto;
        min-width: 36px;
        padding-left: 4px;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .support__title {
        font-size: 30px;
    }

    .impact__title {
        font-size: 28px;
    }
    .impact__subtitle {
        font-size: 16px;
    }

    .why__title {
        font-size: 28px;
    }
    .why__cards::before {
        display: none;
    }

    .feedbacks__title {
        font-size: 28px;
    }

    .cta__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero__title {
        font-size: 32px;
    }
    .hero__image {
        max-width: 220px;
    }

    .header__auth {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .auth__btn {
        width: 100%;
    }

    .investments .progress-percent {
        width: auto;
        min-width: 36px;
        padding-left: 4px;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .why__cards::before {
        display: none;
    }
}
