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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, #957A61 0%, #B8956B 100%);
    color: #000000;
    min-width: 280px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(149, 122, 97, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

.header__strip {
    width: 100%;
    height: 47px;
    margin-top: 81px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__strip-img {
    width: 1908px;
    height: 47px;
    object-fit: cover;
}

.header__nav {
    padding: 20px 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    width: 220px;
    height: 35px;
    object-fit: contain;
}

.header__menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu li a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.002em;
    color: #ffffff;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #957A61;
}

.header__auth {
    display: flex;
    align-items: center;
    gap: 30px;
}

.auth-link {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #957A61;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Popup */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-popup {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-left: 1px solid rgba(149, 122, 97, 0.3);
    backdrop-filter: blur(15px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-popup {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(149, 122, 97, 0.2);
}

.mobile-menu-logo-img {
    width: 140px;
    height: 22px;
    object-fit: contain;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(149, 122, 97, 0.2);
}

.close-icon {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: block;
}

.mobile-menu-content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
}

.mobile-menu-nav {
    flex: 1;
}

.mobile-menu-list {
    padding: 0 25px;
}

.mobile-menu-item {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(149, 122, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link:hover {
    background: rgba(149, 122, 97, 0.15);
    transform: translateX(5px);
    color: #957A61;
}

.menu-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
    display: none;
}

.menu-text {
    flex: 1;
}

.mobile-menu-auth {
    padding: 25px;
    border-top: 1px solid rgba(149, 122, 97, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-auth-btn--login {
    background: transparent;
    border-color: rgba(149, 122, 97, 0.5);
    color: #ffffff;
}

.mobile-auth-btn--login:hover {
    background: rgba(149, 122, 97, 0.1);
    border-color: #957A61;
    color: #957A61;
}

.mobile-auth-btn--signup {
    background: linear-gradient(135deg, #957A61 0%, #B8956B 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(149, 122, 97, 0.3);
}

.mobile-auth-btn--signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 122, 97, 0.4);
}

.auth-icon {
    font-size: 16px;
}

.mobile-menu-footer {
    padding: 25px;
    text-align: center;
    border-top: 1px solid rgba(149, 122, 97, 0.1);
}

.mobile-menu-copyright {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.mobile-menu-tagline {
    color: #957A61;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

/* Main Background */
.main {
    background: url('../assets/images/bg-main.png') no-repeat center top;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 500px;
}

.hero__text {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.0015em;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero__description {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 0.9;
}

.hero__btn {
    margin-left: 0;
}

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

.hero__logo-3d {
    width: 400px;
    height: 400px;
    object-fit: contain;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: float3D 6s ease-in-out infinite, gentleRotate3D 12s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(148, 122, 97, 0.4));
    transition: all 0.3s ease;
}

.hero__logo-3d:hover {
    transform: scale(1.1) rotateY(15deg) rotateX(5deg);
    filter: drop-shadow(0 30px 60px rgba(148, 122, 97, 0.6));
    animation-play-state: paused;
}

/* 3D Animation Keyframes */
@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg);
    }
    75% {
        transform: translateY(-15px) rotateX(3deg) rotateY(8deg);
    }
}

@keyframes gentleRotate3D {
    0% {
        transform: rotateY(-15deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(15deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(10deg) rotateX(-3deg);
    }
    75% {
        transform: rotateY(-10deg) rotateX(3deg);
    }
    100% {
        transform: rotateY(-15deg) rotateX(0deg);
    }
}

/* Глубина и перспектива */
.hero__logo-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(148, 122, 97, 0.15) 0%, 
        rgba(148, 122, 97, 0.08) 50%, 
        rgba(148, 122, 97, 0.15) 100%);
    border-radius: 20px;
    z-index: -1;
    transform: translateZ(-50px);
    filter: blur(20px);
    opacity: 0.6;
}

/* Дополнительные световые эффекты */
.hero__logo-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(148, 122, 97, 0.4) 60deg,
        transparent 120deg,
        rgba(148, 122, 97, 0.25) 180deg,
        transparent 240deg,
        rgba(148, 122, 97, 0.4) 300deg,
        transparent 360deg
    );
    border-radius: 50%;
    z-index: -2;
    animation: shimmer 8s linear infinite;
    opacity: 0.4;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 320px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.feature-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.feature-card__icon {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    margin-bottom: 25px;
}

.feature-card__icon-img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 0 25px;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    position: relative;
}

.why-choose__content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.why-choose__bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 600px;
    z-index: 1;
}

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

.why-choose__text {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: 0;
    padding: 80px 40px;
}

.why-choose__label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.018em;
    color: #957A61;
    margin-bottom: 15px;
}

.why-choose__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.021em;
    color: #ffffff;
    margin-bottom: 30px;
}

.why-choose__description h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.015em;
    color: #ffffff;
    margin-bottom: 20px;
}

.why-choose__description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.015em;
    color: #ffffff;
    opacity: 0.9;
}

/* Process Section */
.process {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

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

.process__text {
    text-align: center;
    max-width: 800px;
}

.process__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.008em;
    color: #957A61;
    margin-bottom: 30px;
}

.process__description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.9;
}

.process__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


.process__steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 40px; */
    margin-bottom: 50px;
    width: 100%;
    max-width: 900px;
}

.process__step {
    text-align: center;
}
.process__step:nth-child(2) {
    border-left: 2px solid #957A61;
    border-right: 2px solid #957A61;
}

.process__step-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(148, 122, 97);
    margin-bottom: 15px;
}

.process__step-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #957A61;
    opacity: 0.9;
}

.process__btn {
    background: linear-gradient(135deg, #957A61 0%, #B8956B 100%);
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.012em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(149, 122, 97, 0.3);
    align-self: center;
}

/* Partners Section */
.partners {
    padding-bottom: 100px;
    text-align: center;
}

.partners__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.partners__logos {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.partners__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.001em;
    color: #957A61;
    max-width: 800px;
    margin: 100px auto 0;

}
.partners__title .light {
    color: #ffffff;
}
.partners__title .big {
    font-size: 50px;
    font-weight: 700;
}
/* Contact Section */
.contact {
    padding: 120px 0 140px;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.96) 0%, rgba(0, 0, 0, 0.98) 100%);
}

.contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: stretch;
}

.contact__intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.contact__title {
    margin: 0;
    font-size: clamp(2.3rem, 3.8vw, 3.1rem);
    font-weight: 700;
    color: #957A61;
    line-height: 1.2;
}

.contact__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.contact__benefits {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.6;
}

.contact__benefits strong {
    color: #ffffff;
}

.contact__steps {
    display: grid;
    gap: 18px;
    margin-top: 12px;
}

.contact-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-step__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(149, 122, 97, 0.95) 0%, rgba(184, 149, 107, 1) 100%);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
}

.contact-step__content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #ffffff;
}

.contact-step__content p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
}

.contact__form-card {
    position: relative;
    border-radius: 20px;
    padding: 48px 42px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(0, 0, 0, 0.96) 100%);
    border: 1px solid rgba(149, 122, 97, 0.28);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__form-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.contact__form-subtitle {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(149, 122, 97, 0.3);
    border-radius: 10px;
    color: #ffffff;
    transition: border 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(149, 122, 97, 0.9);
    box-shadow: 0 0 0 3px rgba(149, 122, 97, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.contact-form__submit {
    align-self: flex-start;
    padding: 16px 34px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact__support {
    margin-top: 8px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.75);
}

.contact__support h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 16px;
}

.contact__support a {
    color: #957A61;
}

.contact__support--intro {
    margin-top: 24px;
}

.contact__support--intro div {
    min-width: 220px;
}

/* Form Validation States */
.form-input.error,
.form-select.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.form-input.success,
.form-select.success {
    border-color: #00aa44;
    background: rgba(0, 170, 68, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.8);
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__logo-img {
    width: 220px;
    height: 35px;
    object-fit: contain;
}

.footer__text h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.013em;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer__text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.013em;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Trusted Section */
.trusted {
    margin-bottom: 60px;
    padding: 48px 36px;
    border-radius: 24px;
    border: 1px solid rgba(149, 122, 97, 0.22);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(0, 0, 0, 0.96) 100%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
}

.trusted__stats {
    display: grid;
    gap: 24px;
}

.trusted__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.trusted__value {
    font-size: 36px;
    font-weight: 700;
    color: #957A61;
}

.trusted__label {
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trusted__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trusted__title {
    margin: 0;
    font-size: clamp(1.9rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
}

.trusted__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.6;
}

.trusted__list span {
    color: #ffffff;
}

.trusted__steps {
    display: grid;
    gap: 18px;
}

.trusted-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.trusted-step__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(149, 122, 97, 0.95) 0%, rgba(184, 149, 107, 1) 100%);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    flex-shrink: 0;
}

.trusted-step__content h4 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #ffffff;
}

.trusted-step__content p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero__content {
        gap: 60px;
    }
    
    .hero__logo-3d {
        width: 500px;
        height: 500px;
        animation: float3D 5s ease-in-out infinite, gentleRotate3D 10s ease-in-out infinite;
    }
    
    .features__grid {
        gap: 60px;
    }
    
    .why-choose__bg {
        width: 100%;
        max-width: 1400px;
    }
    
    .partners__logos {
        width: 100%;
        /* max-width: 1400px; */
    }
}

@media (max-width: 1100px) {
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .header__content {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero__content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .hero__title {
        font-size: 48px;
    }
    
    .hero__description {
        font-size: 32px;
    }
    
    .hero__btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 80px;
    }
    
    .why-choose__text {
        margin-left: 0;
        text-align: center;
        padding: 60px 40px;
    }
    
    .why-choose__title {
        font-size: 48px;
    }
    
    .process__content {
        gap: 50px;
    }
    
    .process__steps-grid {
        grid-template-columns: 1fr;
        /* gap: 40px; */
        max-width: 400px;
    }
    .process__step {
        padding: 20px;
    }
    .process__step:nth-child(2) {
        border-top: 2px solid #957A61;
        border-bottom: 2px solid #957A61;
        border-left: none;
        border-right: none;
    }
    .process__title {
        font-size: 48px;
    }
    
    
    .partners__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .header__content {
        flex-direction: row;
    }
    .header__strip-img {
        width: 100%;
    }
    
    .header__logo-img {
        width: 180px;
        height: 28px;
    }
    
    .header__menu,
    .header__auth {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero__title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero__description {
        font-size: 24px;
    }
    
    .btn {
        font-size: 32px;
        padding: 20px 30px;
        min-width: 300px;
        min-height: 80px;
    }
    
    .hero__logo-3d {
        width: 300px;
        height: 300px;
        animation: float3D 4s ease-in-out infinite, gentleRotate3D 8s ease-in-out infinite;
    }
    
    /* Упрощенные эффекты для мобильных */
    .hero__logo-3d::before,
    .hero__logo-3d::after {
        opacity: 0.3;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 40px 20px;
    }
    
    .feature-card__title,
    .feature-card__text {
        font-size: 18px;
    }
    
    .why-choose__label {
        font-size: 24px;
    }
    
    .why-choose__title {
        font-size: 36px;
    }
    
    .why-choose__description h3 {
        font-size: 28px;
    }
    
    .why-choose__description p {
        font-size: 20px;
    }
    
    .process__content {
        gap: 40px;
    }
    
    .process__title {
        font-size: 36px;
    }
    
    .process__step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .process__step-text {
        font-size: 16px;
    }
    

    
    .process__steps-grid {
        max-width: 100%;
        gap: 30px;
    }
    
    .partners__title {
        font-size: 32px;
    }
    
    /* Form responsive */
    .contact-form__content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .contact-form__title {
        font-size: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-input,
    .form-select {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .form-submit {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .footer__text h4,
    .footer__text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }
    
    .hero__description {
        font-size: 18px;
    }
    
    .btn {
        font-size: 24px;
        min-width: 250px;
        min-height: 60px;
    }
    
    .feature-card__icon-img {
        width: 80px;
    }
    
    .why-choose__title {
        font-size: 28px;
    }
    
    .process__title {
        font-size: 28px;
    }
    
    .partners__title {
        font-size: 24px;
    }
    
    /* Mobile menu adjustments for small screens */
    .mobile-menu-popup {
        width: 100%;
        border-left: none;
    }
    
    .mobile-menu-logo-img {
        width: 120px;
        height: 19px;
    }
    
    .mobile-menu-link {
        padding: 15px 18px;
    }
    
    .menu-icon {
        font-size: 16px;
    }
}

@media (max-width: 960px) {
    .trusted {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .trusted {
        padding: 36px 24px;
    }

    .trusted-step {
        flex-direction: column;
        gap: 12px;
    }
}

.header__menu .menu li a.active,
.mobile-menu-link.active {
    color: #957A61;
}
