/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #D3D7DC;
    background-color: #2F3C47;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(47, 60, 71, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap:5px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1); /* Делает SVG белым */
}

.logo-icon svg,
.footer-logo .logo-icon svg {
    stroke-width: 2;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D3D7DC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E24F44;
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #E24F44;
    color: white;
}

.btn-primary:hover {
    background-color: #c43d32;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: #2F3C47;
    color: white;
    border: 2px solid #E24F44;
}

.btn-accent:hover {
    background-color: #E24F44;
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.accent-text {
    color: #E24F44;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-left: -60px;
}

.main-image {
    width: 65vh;
    height: 70vh;
    min-width: 500px;
    min-height: 550px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-lynx {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Info Cards Section */
.info-cards {
    padding: 40px 0;
    margin-top: -120px;
    background: transparent;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #E24F44, #c43d32);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(226, 79, 68, 0.4);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin: 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Sections */
.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: left;
}



/* Offers Section */
.offers {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2127 0%, #2F3C47 50%, #4A5D6B 100%);
}

.offers-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.offers-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.offers-track .offer-card {
    min-width: 320px;
    flex: 0 0 320px;
}

.offer-card {
    background: linear-gradient(135deg, rgba(226, 79, 68, 0.1) 0%, rgba(74, 93, 107, 0.2) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E24F44, #FF6B5A, #E24F44);
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:hover::before {
    opacity: 0.1;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(226, 79, 68, 0.3);
    border-color: #E24F44;
}



.icon-placeholder {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #E24F44, #FF6B5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.offer-card .icon-placeholder {
    font-size: 56px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E24F44, #FF6B5A, #FFD700);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.offer-card:hover .icon-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.offer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.offer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #D3D7DC;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-offer {
    background: linear-gradient(135deg, #E24F44, #FF6B5A);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 79, 68, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-offer:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(226, 79, 68, 0.6);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(226, 79, 68, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #E24F44;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(226, 79, 68, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

/* Стрелки для партнеров */
.partners-carousel .carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(226, 79, 68, 0.6);
    backdrop-filter: blur(10px);
    z-index: 20;
}

.partners-carousel .carousel-btn:hover {
    background: rgba(226, 79, 68, 0.9);
    border-color: #E24F44;
}

.partners-carousel .carousel-btn-prev {
    left: 10px;
}

.partners-carousel .carousel-btn-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #E24F44;
    transform: scale(1.2);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F3C47 0%, #4A5D6B 100%);
}

/* Partners Gallery Section */
.partners-gallery {
    background: linear-gradient(135deg, #1a2127 0%, #2F3C47 100%);
    border-top: 2px solid rgba(226, 79, 68, 0.3);
}

.partners-gallery .section-title {
    color: #E24F44;
    text-shadow: 0 2px 10px rgba(226, 79, 68, 0.3);
}

.partners-gallery .partner-card {
    background: rgba(226, 79, 68, 0.05);
    border: 2px solid rgba(226, 79, 68, 0.2);
}

.partners-gallery .partner-card:hover {
    background: rgba(226, 79, 68, 0.1);
    border-color: #E24F44;
    box-shadow: 0 15px 40px rgba(226, 79, 68, 0.4);
}

.partners-gallery .partner-logo {
    filter: none; /* Показываем оригинальные цвета логотипов */
    transition: all 0.3s ease;
}

.partners-gallery .partner-card:hover .partner-logo {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.1);
}

.partners-gallery .partner-name {
    color: #E24F44;
    font-weight: 700;
}

.partners-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 80px;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 20px 0;
}

.partner-card {
    min-width: 200px;
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(226, 79, 68, 0.3);
    border-color: #E24F44;
    background: rgba(255, 255, 255, 0.1);
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
    transform: scale(1.1);
}

.partner-logo-placeholder {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E24F44, #FF6B5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-placeholder {
    transform: scale(1.2) rotate(5deg);
}

.partner-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.9;
}

.partner-card:hover .partner-name {
    color: #E24F44;
    opacity: 1;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background-color: #4A5D6B;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step-card {
    background-color: #E24F44;
    padding: 40px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.step-title {
    font-size: 1.2rem;
    color: white;
    line-height: 1.3;
    text-align: center;
}

/* Registration Section */
.registration {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F3C47 0%, #1a2127 100%);
}

.registration-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.registration-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #E24F44;
}

.registration-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #D3D7DC;
    line-height: 1.6;
}

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

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #4A5D6B;
    border-radius: 10px;
    background-color: #3A4B57;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #E24F44;
}

.form-input::placeholder {
    color: #D3D7DC;
    opacity: 0.7;
}

.form-input option {
    background-color: #3A4B57;
    color: white;
}

.form-submit {
    margin-top: 20px;
    padding: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-submit:disabled,
.form-submit.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.form-submit.enabled {
    opacity: 1;
    cursor: pointer;
    background-color: #E24F44;
    border-color: #E24F44;
}

.form-submit.enabled:hover {
    background-color: #d63384;
    border-color: #d63384;
    transform: translateY(-2px);
}

.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Checkbox Styles */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #D3D7DC;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #4A5D6B;
    border-radius: 4px;
    background-color: #3A4B57;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.form-checkbox:checked + .checkbox-custom {
    background-color: #E24F44;
    border-color: #E24F44;
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    flex: 1;
}

.policy-link {
    color: #E24F44;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #FF6B5A;
    text-decoration: underline;
}

/* Form validation styles */
.form-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-input:focus.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-input:focus.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

/* Error message styles */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Character counter */
.char-counter {
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 12px;
    color: #6c757d;
    background: #3A4B57;
    padding: 2px 8px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.char-counter.show {
    opacity: 1;
}

.char-counter.warning {
    color: #ffc107;
}

.char-counter.danger {
    color: #dc3545;
}

/* Checkbox error styling */
.checkbox-group .error-message {
    margin-top: 8px;
    margin-left: 35px;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background: linear-gradient(135deg, #2F3C47 0%, #4A5D6B 100%);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(226, 79, 68, 0.3);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #E24F44;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.contact-link {
    color: #E24F44;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF6B5A;
}

.requisites p {
    margin: 8px 0;
    font-size: 0.95rem;
    text-align: left;
}

.req-label {
    color: #E24F44;
    font-weight: 600;
    margin-right: 10px;
}

/* Modern Contacts Section */
.modern-contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2127 0%, #2F3C47 100%);
}

.modern-contacts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 79, 68, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E24F44, #FF6B5A);
    border-radius: 20px 20px 0 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(226, 79, 68, 0.2);
    border-color: #E24F44;
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E24F44, #FF6B5A);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(226, 79, 68, 0.3);
}

.contact-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #D3D7DC;
    margin-bottom: 10px;
}

.modern-contact-link {
    color: #E24F44;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-contact-link:hover {
    color: #FF6B5A;
    text-shadow: 0 0 10px rgba(226, 79, 68, 0.5);
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: #8A9BA8;
    font-style: italic;
    margin-top: 8px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #D3D7DC;
    padding: 8px 15px;
    background: rgba(226, 79, 68, 0.1);
    border-radius: 8px;
    border-left: 3px solid #E24F44;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(226, 79, 68, 0.15);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: #1a2127;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1); /* Делает SVG белым */
}

.footer-logo .logo-text {
    color: white;
    font-size: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #D3D7DC;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E24F44;
}

.footer-bottom {
    border-top: 1px solid #4A5D6B;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #4A5D6B;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .info-cards {
        margin-top: -80px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offers-track .offer-card {
        min-width: 280px;
        flex: 0 0 280px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .carousel-btn-prev {
        left: -22px;
    }
    
    .carousel-btn-next {
        right: -22px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2F3C47 0%, #1a2127 100%);
    z-index: 1000;
    padding: 120px 40px 40px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 15px 30px;
    border-bottom: 2px solid transparent;
}

.mobile-nav-link:hover {
    color: #E24F44;
    border-bottom-color: #E24F44;
}

.mobile-cta {
    margin-top: 20px;
    padding: 20px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    /* Показываем гамбургер и скрываем обычное меню */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
    
         /* Адаптация партнеров для мобильных */
     .partners, .partners-gallery {
         padding: 60px 0;
     }
     
     .partners-track {
         gap: 20px;
         padding: 15px 0;
     }
     
     .partner-card {
         min-width: 160px;
         flex: 0 0 160px;
         padding: 20px 15px;
         min-height: 120px;
     }
     
     .partner-logo {
         max-width: 80px;
         max-height: 40px;
     }
     
     .partner-logo-placeholder {
         font-size: 32px;
         margin-bottom: 10px;
     }
     
     .partner-name {
         font-size: 12px;
         margin-top: 8px;
     }
     
     /* Специальная адаптация для галереи партнеров */
     .partners-gallery .partner-card {
         background: rgba(226, 79, 68, 0.08);
         border: 1px solid rgba(226, 79, 68, 0.3);
     }
     
     .partners-gallery .section-title {
         font-size: 1.6rem;
         margin-bottom: 30px;
     }
     
     /* Адаптация стрелок партнеров для мобильных */
     .partners-carousel {
         padding: 0 60px;
     }
     
     .partners-carousel .carousel-btn {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }
     
     .partners-carousel .carousel-btn-prev {
         left: 5px;
     }
     
     .partners-carousel .carousel-btn-next {
         right: 5px;
     }
    
         /* Оптимизированный хиро блок для мобильных */
     .hero {
         min-height: auto;
         padding: 100px 0 40px;
         background: linear-gradient(135deg, #2F3C47 0%, #1a2127 100%);
     }
     
     .hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }
     
     .hero-title {
         font-size: 2.2rem;
         margin-bottom: 20px;
         line-height: 1.1;
     }
     
     .hero-description {
         font-size: 16px;
         line-height: 1.5;
         margin-bottom: 25px;
         max-width: 95%;
         margin-left: auto;
         margin-right: auto;
     }
     
     .hero-actions {
         justify-content: center;
         flex-wrap: wrap;
         gap: 15px;
         margin-bottom: 30px;
     }
     
     .hero-image {
         height: 40vh;
         min-height: 280px;
         margin-left: 0;
         margin-top: 0;
     }
     
     .main-image {
         width: 75vw;
         height: 40vh;
         min-width: 260px;
         min-height: 280px;
         max-width: 320px;
     }
     
     .hero-lynx {
         width: 100%;
         height: 100%;
         object-fit: contain;
         filter: drop-shadow(0 8px 20px rgba(226, 79, 68, 0.3));
     }
     
     /* Адаптированные инфо карточки для мобильных */
     .info-cards {
         padding: 30px 0;
         margin-top: 0;
     }
    
         .info-cards-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }
     
     .info-card {
         padding: 20px 15px;
         border-radius: 12px;
     }
     
     .info-card h3 {
         font-size: 15px;
         margin-bottom: 12px;
     }
     
     .info-card p {
         font-size: 13px;
         line-height: 1.4;
     }
     
     /* Оптимизированные секции для мобильных */
     .offers {
         padding: 60px 0;
     }
     
     .how-it-works {
         padding: 60px 0;
     }
     
     .registration {
         padding: 60px 0;
     }
     
     .modern-contacts {
         padding: 60px 0;
     }
     
     .section-title {
         font-size: 1.8rem;
         text-align: center;
         margin-bottom: 40px;
     }
     
     .registration-title {
         font-size: 1.8rem;
         margin-bottom: 15px;
     }
     
     .registration-description {
         font-size: 16px;
         margin-bottom: 30px;
     }
    
         .contacts-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: 30px;
     }

     .contact-item {
         padding: 20px 15px;
     }

     .contact-title {
         font-size: 1.1rem;
         margin-bottom: 15px;
     }

     .contact-info {
         font-size: 0.85rem;
     }

     .modern-contacts-wrapper {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: 30px;
     }

     .contact-card {
         padding: 25px 15px;
     }

     .icon-bg {
         width: 45px;
         height: 45px;
         font-size: 18px;
         margin-right: 12px;
     }

     .contact-content h3 {
         font-size: 1rem;
         margin-bottom: 10px;
     }

     .contact-content p {
         font-size: 0.85rem;
         margin-bottom: 8px;
     }

     .modern-contact-link {
         font-size: 0.9rem;
     }

     .footer {
         padding: 40px 0 15px;
     }

     .footer-content {
         flex-direction: column;
         gap: 20px;
         margin-bottom: 25px;
     }
     
     .footer-links {
         flex-wrap: wrap;
         justify-content: center;
         gap: 20px;
     }
    
         .offers-track .offer-card {
         min-width: 240px;
         flex: 0 0 240px;
     }
     
     .carousel-btn {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }
     
     .carousel-btn-prev {
         left: -20px;
     }
     
     .carousel-btn-next {
         right: -20px;
     }
     
     /* Мобильные стрелки для партнеров */
     .partners-carousel .carousel-btn {
         width: 35px;
         height: 35px;
         font-size: 16px;
         z-index: 15;
         box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
     }
     
     .partners-carousel .carousel-btn-prev {
         left: 10px;
     }
     
     .partners-carousel .carousel-btn-next {
         right: 10px;
     }
     
     .offer-card {
         padding: 25px 15px;
     }
     
     .offer-title {
         font-size: 0.9rem;
         margin-bottom: 12px;
         margin-top: 8px;
     }
     
     .offer-description {
         font-size: 12px;
         margin-bottom: 20px;
     }
     
           .btn-offer {
          font-size: 11px;
          padding: 10px 15px;
          text-decoration: none;
          display: inline-block;
          text-align: center;
      }
     
     .offer-card .icon-placeholder {
         font-size: 38px;
         margin-bottom: 10px;
     }
     
     /* Оптимизация формы регистрации */
     .registration-form {
         gap: 15px;
     }
     
     .form-input {
         padding: 12px 15px;
         font-size: 15px;
     }
     
     .form-submit {
         margin-top: 15px;
         padding: 15px;
         font-size: 14px;
     }
     
     /* Оптимизация шагов */
     .step-card {
         padding: 25px 20px;
         min-height: 120px;
     }
     
     .step-title {
         font-size: 1rem;
     }
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 14px;
    line-height: 1.4;
    backdrop-filter: blur(10px);
}

.notification-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left: 4px solid #155724;
}

.notification-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border-left: 4px solid #721c24;
}

.notification-info {
    background: linear-gradient(135deg, #007bff, #17a2b8);
    border-left: 4px solid #0c5460;
}

.notification button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.8;
    padding: 0;
    transition: opacity 0.3s ease;
}

.notification button:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
