/* ========== ОБЩИЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ШАПКА ========== */
header {
    background: linear-gradient(135deg, #0a2540 0%, #1a4a6e 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* ЛОГОТИП В ШАПКЕ (ТЕКСТОВЫЙ) */
.logo-text-header {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.logo-desc {
    font-size: 11px;
    font-weight: 400;
    color: #7bc5d9;
    letter-spacing: 1px;
    margin-top: -2px;
}

/* ПРАВАЯ ЧАСТЬ ШАПКИ */
.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ТЕЛЕФОН */
.header-phone {
    font-size: 16px;
    font-weight: 700;
    color: #ff8c00;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 18px;
    background: rgba(255,140,0,0.12);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: rgba(255,140,0,0.25);
    color: #ffaa44;
}

/* НАВИГАЦИЯ */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

nav a:hover {
    color: #7bc5d9;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
}

@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }
    
    .header-phone {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-desc {
        font-size: 9px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #0a2540;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-height: 40px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .header-phone {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a2540;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}
/* ========== ГЛАВНЫЙ ЭКРАН ========== */
.hero {
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 50%, #0f3b5c 100%);
    color: white;
    text-align: center;
    padding: 180px 20px 100px;
    margin-top: 68px;
    position: relative;
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.highlight {
    color: #7bc5d9;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #7bc5d9;
    border-radius: 2px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #7bc5d9;
    color: #0a2540;
}

.btn-primary:hover {
    background: #5bb5ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123,197,217,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #7bc5d9;
}

.btn-outline:hover {
    background: #7bc5d9;
    color: #0a2540;
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ========== СЕКЦИИ ========== */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 38px;
    color: #0a2540;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #7bc5d9;
    border-radius: 2px;
}

.section-header p {
    color: #5a7c9e;
    font-size: 18px;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0a2540;
}

/* ========== УСЛУГИ ========== */
.services {
    background: white;
}

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

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
    border: 1px solid rgba(123,197,217,0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10,37,64,0.15);
    border-color: #7bc5d9;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #5a7c9e;
    line-height: 1.5;
}

/* ========== НАПРАВЛЕНИЯ ========== */
.directions {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

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

.direction-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(123,197,217,0.2);
}

.direction-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.direction-card h3 {
    color: #0a2540;
    margin-bottom: 10px;
}

.direction-card p {
    color: #5a7c9e;
    font-size: 14px;
}

/* ========== СТАТИСТИКА ========== */
.stats {
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #7bc5d9;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.advantages {
    background: white;
    padding: 80px 0;
}

.advantages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок блока */
.advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ЭМБЛЕМА */
.advantages-logo {
    height: 100px;
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
    animation: logoPulse 3s ease-in-out infinite;
    display: inline-block;
}

.advantages-header h2 {
    font-size: 36px;
    color: #0a2540;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff8c00;
    border-radius: 2px;
}

.advantages-header p {
    color: #5a7c9e;
    font-size: 18px;
    margin-top: 20px;
}

/* СЕТКА - 4 В РЯД */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.adv-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8fcff 0%, #fff 100%);
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(123,197,217,0.2);
}

.adv-card:hover {
    transform: translateY(-8px);
    border-color: #7bc5d9;
    box-shadow: 0 15px 30px rgba(10,37,64,0.1);
}

.adv-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.adv-card h3 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 20px;
}

.adv-card p {
    color: #5a7c9e;
    line-height: 1.5;
    font-size: 14px;
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(123,197,217,0.3));
    }
    50% { 
        transform: scale(1.03);
        filter: drop-shadow(0 8px 25px rgba(123,197,217,0.6));
    }
}

/* АДАПТАЦИЯ ДЛЯ РАЗНЫХ ЭКРАНОВ */
@media (max-width: 1100px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .advantages {
        padding: 50px 0;
    }
    
    .advantages-logo {
        height: 70px;
    }
    
    .advantages-header h2 {
        font-size: 28px;
    }
    
    .advantages-header p {
        font-size: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .adv-card {
        padding: 25px 20px;
    }
}
/* Адаптация для телефонов */
@media (max-width: 768px) {
    .advantages .container {
        padding-left: 20px;
        padding-right: 20px;
        margin: 0;
    }
    
    .advantages-logo {
        height: 80px;
    }
    
    .advantages-header h2 {
        font-size: 28px;
    }
    
    .advantages-header p {
        font-size: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .adv-card {
        text-align: left;
    }
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .advantages-logo {
        height: 80px;
    }
    
    .advantages-header h2 {
        font-size: 28px;
    }
    
    .advantages-header p {
        font-size: 15px;
    }
}
/* ========== КЕЙСЫ С ФОТОГРАФИЯМИ ========== */
.cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

/* ФИЛЬТРЫ */
.cases-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #7bc5d9;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #0a2540;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #7bc5d9;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white;
}

/* СЕТКА */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* КАРТОЧКА */
.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* ИЗОБРАЖЕНИЕ */
.case-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 100%);
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img {
    transform: scale(1.08);
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff8c00, #ff5500);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* КОНТЕНТ */
.case-content {
    padding: 20px;
}

.case-content h3 {
    font-size: 18px;
    color: #0a2540;
    margin-bottom: 10px;
    font-weight: 700;
}

.case-desc {
    color: #5a7c9e;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* СТАТИСТИКА */
.case-stats {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eef3f8;
}

.case-stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ff5500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #8aa4bc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* АДАПТАЦИЯ */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cases-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 7px 16px;
        font-size: 12px;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-content h3 {
        font-size: 16px;
    }
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        max-width: 100%;
    }
    
    .case-result {
        gap: 10px;
    }
    
    .result-number {
        font-size: 18px;
    }
}

/* ========== КОНТАКТЫ ========== */
.contact {
    background: linear-gradient(135deg, #e8f4fd 0%, #dbeef7 100%);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10,37,64,0.1);
}

/* ЛЕВАЯ ЧАСТЬ - СИНЯЯ С КОНТАКТАМИ */
.contact-info {
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 100%);
    color: white;
    padding: 50px 40px;
}

.contact-info h2 {
    color: white;
    text-align: left;
    margin-bottom: 15px;
}

.contact-info h2::after {
    left: 0;
    transform: none;
    background: #ff8c00;
    width: 80px;
}

.contact-subtitle {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 16px;
}

.info-block {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.info-item p {
    opacity: 0.9;
    font-size: 16px;
}

/* ПРАВАЯ ЧАСТЬ - ФОРМА */
.contact-form {
    padding: 50px 40px;
    background: white;
}

.contact-form h3 {
    font-size: 28px;
    color: #0a2540;
    margin-bottom: 30px;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff8c00;
    border-radius: 2px;
}

/* ========== КРАСИВЫЕ ПОЛЯ ВВОДА ========== */
.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1eef5;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fcfd;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff8c00;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #7bc5d9;
}

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

/* Плейсхолдеры */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a8c4d4;
    font-size: 15px;
}

/* КНОПКА ОТПРАВКИ В ФОРМЕ */
.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff3300 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.4);
}

.form-note {
    font-size: 12px;
    color: #8aa4bc;
    text-align: center;
    margin-top: 20px;
}

/* ========== АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ ========== */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 35px 25px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ========== ПОДВАЛ ========== */
footer {
    background: #0a2540;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-logo .logo {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 12px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #7bc5d9;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 1;
    color: #7bc5d9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* ========== АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ ========== */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a2540;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    nav.active {
        display: flex;
    }
    
    .hero {
        padding: 150px 20px 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .directions-grid,
    .advantages-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
/* ========== СОЦИАЛЬНЫЕ СЕТИ - НЕОБЫЧНЫЙ ДИЗАЙН ========== */
.social-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.social-block h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 60px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link .social-icon-bg {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.social-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover .social-hover-effect {
    left: 100%;
}

/* VK */
.social-link.vk:hover {
    background: #4c75a3;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(76,117,163,0.4);
}
.social-link.vk:hover .social-icon-bg {
    background: white;
    color: #4c75a3;
    transform: scale(1.1);
}

/* Telegram */
.social-link.telegram:hover {
    background: #29a9e1;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(41,169,225,0.4);
}
.social-link.telegram:hover .social-icon-bg {
    background: white;
    color: #29a9e1;
    transform: scale(1.1);
}

/* WhatsApp */
.social-link.whatsapp:hover {
    background: #25d366;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}
.social-link.whatsapp:hover .social-icon-bg {
    background: white;
    color: #25d366;
    transform: scale(1.1);
}

/* ========== ИКОНКИ В ПОДВАЛЕ ========== */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-5px);
}

.footer-social-link.vk:hover {
    background: #4c75a3;
    box-shadow: 0 5px 15px rgba(76,117,163,0.5);
}

.footer-social-link.telegram:hover {
    background: #29a9e1;
    box-shadow: 0 5px 15px rgba(41,169,225,0.5);
}

.footer-social-link.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37,211,102,0.5);
}

/* ========== ЛЕТАЮЩИЕ КРИСТАЛЛЫ НА ГЛАВНОЙ ========== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.crystal-shard {
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: floatShard 6s ease-in-out infinite;
}

.shard1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 40px; }
.shard2 { top: 25%; right: 15%; animation-delay: 1s; font-size: 35px; }
.shard3 { bottom: 20%; left: 20%; animation-delay: 2s; font-size: 45px; }
.shard4 { bottom: 30%; right: 25%; animation-delay: 0.5s; font-size: 30px; }
.shard5 { top: 50%; left: 5%; animation-delay: 1.5s; font-size: 25px; }

@keyframes floatShard {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.5; }
}

/* ========== ПУЛЬСИРУЮЩЕЕ КОЛЬЦО ВОКРУГ ИКОНКИ ========== */
.hero-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-icon span {
    font-size: 70px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    background: rgba(123,197,217,0.3);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== СВЕЧЕНИЕ КАРТОЧЕК ========== */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(123,197,217,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Анимация для карточек при наведении */
.service-card {
    position: relative;
    overflow: hidden;
}
/* ========== КНОПКИ - БОЛЬШИЕ И ЯРКИЕ ========== */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ГЛАВНАЯ КНОПКА - ЯРКО-ОРАНЖЕВАЯ */
.btn-primary {
    background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.5);
    min-width: 220px;
    text-align: center;
}

.btn-arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff3300 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.7);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(8px);
}

/* Эффект мерцания */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ВТОРИЧНАЯ КНОПКА */
.btn-outline {
    background: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    backdrop-filter: blur(5px);
    padding: 16px 40px;
}

.btn-outline:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* КНОПКА В ФОРМЕ */
.contact-form button.btn-primary {
    width: 100%;
    font-size: 18px;
    padding: 18px;
    margin-top: 10px;
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .btn {
        padding: 14px 35px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
/* ========== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ДЛЯ КЕЙСОВ ========== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(10,37,64,0.2);
}

.case-image {
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 100%);
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.case-card:hover .case-image::before {
    opacity: 1;
}

.case-icon {
    font-size: 60px;
    animation: caseIconFloat 3s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.case-card:nth-child(odd) .case-icon {
    animation-delay: 0s;
}

.case-card:nth-child(even) .case-icon {
    animation-delay: 0.5s;
}

@keyframes caseIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.case-content {
    padding: 25px;
    background: white;
}

.case-content h3 {
    font-size: 20px;
    color: #0a2540;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.case-task {
    color: #5a7c9e;
    font-size: 13px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e1eef5;
}

.case-result {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
    flex: 1;
    background: linear-gradient(135deg, #f8fcff 0%, #f0f8ff 100%);
    padding: 12px 8px;
    border-radius: 16px;
    transition: all 0.3s;
}

.case-card:hover .result-item {
    background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
}

.result-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.result-label {
    font-size: 11px;
    color: #5a7c9e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-desc {
    color: #4a6a8a;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

/* Эффект "подробнее" при наведении */
.case-card::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #ff8c00;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.case-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Кнопка "Смотреть все кейсы" */
.cases-more {
    text-align: center;
    margin-top: 50px;
}

.cases-more .btn-outline {
    padding: 14px 35px;
    font-size: 16px;
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-card {
        max-width: 100%;
    }
    
    .case-result {
        gap: 10px;
    }
    
    .result-number {
        font-size: 18px;
    }
    
    .result-item {
        padding: 10px 5px;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .case-content h3 {
        font-size: 18px;
    }
}
/* ========== КРУПНЫЕ КОНТАКТЫ ========== */
.contact-info {
    background: linear-gradient(135deg, #0f3b5c 0%, #1a5a7a 100%);
    padding: 45px 35px;
}

.contact-info h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.contact-info .contact-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    font-size: 15px;
}

/* БОЛЬШИЕ БЛОКИ С КОНТАКТАМИ */
.big-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.big-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.big-contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.3);
}

.big-contact-icon {
    font-size: 48px;
    min-width: 70px;
    text-align: center;
}

.big-contact-content {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.big-contact-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    word-break: break-all;
}

.big-contact-value:hover {
    color: #ff8c00;
}

.contact-hint {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* СОЦИАЛЬНЫЕ СЕТИ В КОНТАКТАХ */
.social-block-contacts {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.social-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-align: center;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-large {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon-large svg {
    width: 20px;
    height: 20px;
}

.social-icon-large:hover {
    transform: translateY(-3px);
}

.social-icon-large.vk:hover {
    background: #4c75a3;
    box-shadow: 0 5px 15px rgba(76,117,163,0.4);
}

.social-icon-large.telegram:hover {
    background: #29a9e1;
    box-shadow: 0 5px 15px rgba(41,169,225,0.4);
}

.social-icon-large.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .big-contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .big-contact-value {
        font-size: 18px;
    }
    
    .big-contact-icon {
        font-size: 36px;
        min-width: auto;
    }
    
    .social-icons-large {
        flex-wrap: wrap;
    }
    
    .social-icon-large {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .contact-info h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-subtitle {
        text-align: center;
    }
}
/* ========== ЛОГОТИП С ЭМБЛЕМОЙ ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-phone-header {
    font-size: 16px;
    font-weight: 700;
    color: #ff8c00;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 15px;
    background: rgba(255,140,0,0.1);
    border-radius: 40px;
    transition: all 0.3s ease;
}

.logo-phone-header:hover {
    background: rgba(255,140,0,0.2);
    color: #ffaa44;
    transform: translateX(3px);
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        max-height: 45px;
    }
    
    .logo-phone-header {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .logo {
        gap: 10px;
    }
}
/* ========== ГЛАВНЫЙ ЭКРАН - УЛУЧШЕННЫЙ ДИЗАЙН ========== */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a4a6e 50%, #0f3b5c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    color: #7bc5d9;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

/* Заголовок */
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero h1 .highlight {
    color: #7bc5d9;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #7bc5d9;
    border-radius: 2px;
}

/* Фишки (мерчандайзинг, промоутеры, промоакции) */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(5px);
}

.feature-icon {
    font-size: 18px;
}

/* Описание */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Статистика */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 5px;
}

.hero-stat .stat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Летающие кристаллы */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.crystal-shard {
    position: absolute;
    font-size: 35px;
    opacity: 0.25;
    animation: floatShard 8s ease-in-out infinite;
}

.shard1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 45px; }
.shard2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 35px; }
.shard3 { bottom: 20%; left: 10%; animation-delay: 2.5s; font-size: 50px; }
.shard4 { bottom: 30%; right: 12%; animation-delay: 1.5s; font-size: 40px; }

@keyframes floatShard {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-25px) rotate(8deg); opacity: 0.35; }
}

/* Волна внизу */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .hero-feature {
        padding: 5px 14px;
        font-size: 12px;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat .stat-number {
        font-size: 24px;
    }
    
    .hero-stat .stat-text {
        font-size: 12px;
    }
    
    .crystal-shard {
        font-size: 25px;
    }
}
.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 45px;
    }
}
/* Стили для Яндекс Формы */
.yandex-form-button {
    text-align: center;
    padding: 20px 0;
}

.yandex-form-button .btn {
    background: linear-gradient(135deg, #fc3f1d, #e61212);
    box-shadow: 0 5px 15px rgba(252,63,29,0.3);
    font-size: 18px;
    padding: 16px 35px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.yandex-form-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252,63,29,0.5);
}

.yandex-form-button .form-note {
    margin-top: 15px;
    font-size: 13px;
    color: #8aa4bc;
}
/* ========== ЭМБЛЕМА В ФОРМЕ ========== */
.form-logo {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eef3f8;
}

.form-logo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.form-logo-img:hover {
    transform: scale(1.05);
}

.form-logo-text {
    font-size: 13px;
    color: #8aa4bc;
    letter-spacing: 0.5px;
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .form-logo {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .form-logo-img {
        height: 55px;
    }
    
    .form-logo-text {
        font-size: 11px;
    }
}