/* Базовые стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0a2540;
    --primary-dark: #071a2d;
    --primary-light: #1a365d;
    --secondary-color: #0072ce;
    --secondary-dark: #0056a3;
    --accent-color: #ff6b35;
    --accent-dark: #e55a2b;
    --light-color: #f8fafc;
    --light-gray: #e2e8f0;
    --dark-color: #2d3748;
    --text-color: #2d3748;
    --text-light: #718096;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
}

/* Улучшенный фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 114, 206, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(10, 37, 64, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    z-index: -1;
    pointer-events: none;
}

/* Контейнеры */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Улучшенная шапка */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.logo-title {
font-size: 1.3rem;
color: var(--primary-color);
font-weight: 700;
line-height: 1.2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Улучшенная навигация */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--secondary-color);
    background: rgba(0, 114, 206, 0.05);
}

nav ul li a.active {
    color: var(--secondary-color);
    background: rgba(0, 114, 206, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Герой секция */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, 
        rgba(10, 37, 64, 0.92) 0%, 
        rgba(0, 114, 206, 0.85) 100%),
        url('проектирование электрики.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 1s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Улучшенные секции */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #3f4d62;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Улучшенный блок "О нас" */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, transparent 60%, var(--primary-color) 150%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 11px);
}

/* Улучшенные услуги */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    color: #3f4d62;
    line-height: 1.7;
}

/* Улучшенные проекты - ИСПРАВЛЕНА АДАПТИВНОСТЬ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    justify-items: center;
}

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    width: 100%;
    max-width: 400px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 28px;
}

.project-category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.project-content p {
    color: #3f4d62;
    line-height: 1.6;
}

/* Улучшенное сотрудничество */
.cooperation {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.cooperation .section-title {
    color: #f2f3f4;
}

.cooperation .section-subtitle {
    color: #f2f3f4;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.8rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.benefit p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Улучшенные контакты */
.contact {
    background: white;
}

.social-buttons-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.social-buttons-contact .social-button {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.social-buttons-contact .social-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-buttons-contact .social-button.telegram {
    background: linear-gradient(135deg, #0088cc, #006da3);
}

.social-buttons-contact .social-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-buttons-contact .social-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.contact-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 12px;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Стили для карты */
.map-content {
    display: none;
}

.map-content.active {
    display: block;
}

.map-toggle {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
    border: 2px solid var(--light-gray) !important;
    transition: var(--transition);
}

.map-toggle.active {
    background: var(--secondary-color) !important;
    color: white !important;
    border-color: var(--secondary-color) !important;
}

.map-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e9ecef;
    position: relative;
}

/* Улучшенный футер */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
}

.footer-contact h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-contact p {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--accent-color);
    width: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Улучшенные цены */
.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.pricing-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Стили для страницы статей */
.articles-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 60px 24px;*/
	padding: 60px 4px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

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

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #eaeaea;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-meta i {
    margin-right: 4px;
}

.article-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--accent-color);
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
    gap: 12px;
}

.coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 40px;
}

.coming-soon i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Стили для навигации между статьями */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 114, 206, 0.05);
    transform: translateX(-5px);
}

.nav-link.next:hover {
    transform: translateX(5px);
}

.nav-link i {
    font-size: 0.9rem;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для раздела цен */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Адаптивность для статей */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav-link {
        justify-content: center;
    }
}

/* Общая адаптивность */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: var(--transition);
        z-index: 999;
        padding: 40px 24px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 16px 20px;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* В МОБИЛЬНОЙ ВЕРСИИ */
    .projects-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .project-card {
        width: 100%;
        max-width: 400px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .map-container {
        height: 400px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-top: 40px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 16px;
        display: block;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-buttons-contact {
        gap: 16px;
    }
    
    .social-buttons-contact .social-button {
        width: 50px;
        height: 50px;
    }

    /* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ ПРОЕКТОВ */
    .projects-grid {
        max-width: 100%;
        gap: 20px;
    }
    
    .project-card {
        max-width: 100%;
    }
}

	.section-subtitle {
        line-height: 1.5;
    }
	
/* для страницы с проектами */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card-link:hover .project-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Для мобильной версии */
@media (max-width: 768px) {
    .project-card-link {
        width: 100%;
    }
    
    .project-card-link .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
}	