/* Основные стили Tiger Partners 3.0 */

:root {
    --primary-color: #fcb600;
    --primary-dark: #e0a400;
    --primary-light: #ffcc33;
    --secondary-color: #4a4f55;
    --secondary-dark: #3a3e43;
    --secondary-light: #5a5f66;
    --accent-color: #2ecc71;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #eaeaea;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px; /* Отступ для якорных ссылок чтобы не перекрывалось меню */
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .feature-title, .service-title, .cta-title, .footer-widget-title, .site-description {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* Герой секция */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 79, 85, 0.9) 0%, rgba(74, 79, 85, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Преимущества */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.125rem; /* Уменьшено на 10% от 1.25rem */
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    word-wrap: break-word;
    hyphens: auto;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.5;
}

/* Услуги */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    background-image: url('http://обрвеб.рф/files-for-theme/fon-3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(252, 182, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Востребованные услуги */
.in-demand-section {
    padding: 100px 0;
    background-color: #4a4f55; /* Изменено согласно требованию */
    color: white;
}

.in-demand-section .section-title,
.in-demand-section .section-description {
    color: white;
}

.demand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.demand-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.demand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.demand-number {
    background-color: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.demand-content {
    flex: 1;
}

.demand-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.demand-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Услуги в цифрах */
.stats-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
    background-image: url('http://обрвеб.рф/files-for-theme/fon-3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    word-wrap: break-word;
}

.stat-label {
    font-size: 1.125rem;
    color: white;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    line-height: 1.4;
}

/* Процесс */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--border-color);
    z-index: -1;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(252, 182, 0, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-description {
    color: var(--text-light);
}

/* Представители */
.representatives-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    background-image: url('http://обрвеб.рф/files-for-theme/fon-6.jpg'); /* Изменено согласно требованию */
    background-size: cover;
    background-position: center;
    position: relative;
}

.representatives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.representatives-section .container {
    position: relative;
    z-index: 1;
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.representative-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow);
}

.representative-country {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.representative-contacts {
    text-align: left;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.contact-line i {
    color: var(--primary-color);
    width: 20px;
}

/* Новости карусель */
.news-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    background-image: url('http://обрвеб.рф/files-for-theme/fon-5.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.news-slide {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.news-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.news-read-more:hover {
    gap: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* CTA секция */
.cta-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    background-image: url('http://обрвеб.рф/files-for-theme/fon-4.jpg'); /* Изменено согласно требованию */
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    margin-bottom: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cta-feature i {
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.form-agreement {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
}

.form-agreement a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-agreement a:hover {
    text-decoration: underline;
}

/* Хедер */
.site-header {
    position: relative; /* Изменено с fixed на relative для мобильной версии */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 234, 234, 0.8);
    transition: var(--transition);
}

.header-top {
    background-color: #4a4f55;
    color: white;
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-contacts {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
}

.header-contact-item:hover {
    color: var(--bg-white);
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-social a:hover {
    background-color: var(--bg-white);
    color: #4a4f55;
    transform: translateY(-2px);
}

.header-main {
    padding: 20px 0;
    background-color: #fcb600;
    transition: var(--transition);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.site-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
}

.site-description {
    font-size: 1rem;
    color: white;
    max-width: 300px;
    line-height: 1.4;
    border-left: 2px solid white;
    padding-left: 20px;
    font-weight: 500;
}

.main-navigation {
    flex-grow: 1;
    position: relative;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
}

.main-navigation a:hover {
    color: #4a4f55;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a4f55;
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Футер */
.site-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-widget {
    min-width: 0;
}

.footer-widget-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contacts .contact-item i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-contacts .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contacts .contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Основные стили для заголовков и отступов на страницах */
.site-main {
    padding-top: 0;
    padding-bottom: 100px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2 {
    font-size: 2rem;
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--secondary-color);
}

.entry-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: var(--secondary-color);
}

.entry-content ul, .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.entry-content li {
    margin-bottom: 0.5em;
}

/* Cookie notice внизу страницы */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

/* Адаптивность */
@media (min-width: 769px) {
    /* Для десктопа возвращаем фиксированное меню */
    .site-header {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    body {
        padding-top: 160px; /* Фиксированный отступ чтобы меню не перекрывало контент */
    }
    
    .hero-section {
        margin-top: -160px; /* Компенсируем padding-top body */
        padding-top: 160px; /* Добавляем обратно для контента */
    }
    
    .site-header.scrolled {
        box-shadow: var(--shadow);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .site-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .site-description {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid white;
        padding-top: 10px;
        margin-top: 10px;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: static;
    }
    
    .main-navigation ul {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .main-navigation.active ul {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation a {
        display: block;
        padding: 12px 0;
        color: var(--text-color);
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a:hover {
        color: var(--primary-color);
    }
    
    .main-navigation li:last-child a {
        border-bottom: none;
    }
    
    .header-top .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::before {
        display: none;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .demand-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .site-main {
        padding-top: 0;
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .services-grid,
    .stats-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-wrapper {
        padding: 40px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
}

/* Утилиты */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }