﻿/*
 * ОСНОВНЫЕ СТИЛИ ДЛЯ САЙТА TEAMPEAK.PRO
 * Версия: 2.0 (Объединенная)
 * Описание: Этот файл содержит все стили для сайта, объединенные из 
 * styles.css, services-styles.css, benefits-styles.css и policy-styles.css.
 */

/* 1. ПЕРЕМЕННЫЕ И ОСНОВНЫЕ СТИЛИ (из teampeak-styles.css) */
:root {
  --primary-color: #00D4FF;
  --secondary-color: #0066FF;
  --dark-bg: #0A0E1A;
  --light-bg: #0F1525;
  --text-light: #E0E6ED;
  --text-muted: #8892A6;
  --gradient: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
  --shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-light);
}

/* 2. ШАПКА И НАВИГАЦИЯ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 15px 0;
  background: rgba(10, 14, 26, 0.98);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
}

.main-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    border-left: 1px solid rgba(0, 212, 255, 0.1);
}
.mobile-menu.active { right: 0; }
.mobile-nav-link {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
}
.mobile-nav-link.active { color: var(--primary-color); }

/* 3. ОБЩИЕ ЭЛЕМЕНТЫ: КНОПКИ, ЗАГОЛОВКИ, ФОРМЫ */
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}
.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
}
.page-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-button, .submit-button, .back-home {
    display: inline-block;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}
.cta-button:hover, .submit-button:hover, .back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 16px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}
.contact-form textarea { resize: vertical; }
.submit-button { align-self: flex-start; }
.submit-button:disabled { opacity: 0.7; cursor: not-allowed; }


/* 4. СТИЛИ ГЛАВНОЙ СТРАНИЦЫ (index.html) */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-title { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.hero-subtitle { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.hero-visual svg { width: 100%; height: auto; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.services, .contact { padding: 100px 0; background: var(--light-bg); }
.benefits { padding: 100px 0; background: var(--dark-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.service-icon { margin-bottom: 24px; }
.service-card h3 { font-size: 24px; margin-bottom: 16px; color: var(--text-light); }
.service-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}
.benefit-item:hover { transform: scale(1.05); border-color: var(--primary-color); }
.benefit-number { font-size: 48px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.benefit-item h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-light); }
.benefit-item p { color: var(--text-muted); font-size: 16px; }

.cta-section { padding: 80px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%); text-align: center; }
.cta-section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta-section p { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-info h3 { font-size: 28px; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }


/* 5. СТИЛИ СТРАНИЦЫ УСЛУГ (iz services-styles.css) */
.services-hero { padding: 150px 0 80px; background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%); text-align: center; }
.main-services { padding: 80px 0; background: var(--dark-bg); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse .service-content { direction: ltr; }
.service-icon-large { margin-bottom: 32px; }
.service-content h2 { font-size: 36px; margin-bottom: 24px; color: var(--text-light); }
.service-description { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin-bottom: 32px; }
.service-content h3 { font-size: 24px; margin-bottom: 20px; color: var(--primary-color); }
.feature-list { list-style: none; padding: 0; margin-bottom: 40px; }
.feature-list li { position: relative; padding-left: 32px; margin-bottom: 16px; color: var(--text-muted); line-height: 1.6; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 20px; height: 2px; background: var(--gradient); }
.service-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 32px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.service-visual svg { width: 100%; height: auto; filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3)); }

.additional-services { padding: 80px 0; background: var(--light-bg); }
.service-card-extended { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; transition: all 0.3s; }
.service-card-extended:hover { transform: translateY(-5px); border-color: var(--primary-color); background: rgba(255, 255, 255, 0.04); }
.service-card-extended h3 { font-size: 24px; margin: 24px 0 16px; color: var(--text-light); }
.service-card-extended p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.service-features { list-style: none; padding: 0; }
.service-features li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-muted); font-size: 14px; }
.service-features li::before { content: '→'; position: absolute; left: 0; color: var(--primary-color); }

.process-section { padding: 80px 0; background: var(--dark-bg); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; top: 50%; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); opacity: 0.3; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; align-items: start; margin-top: 60px; position: relative; z-index: 1; }
.process-step { text-align: center; padding: 20px; }
.process-step .step-number { font-size: 48px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.process-step h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-light); }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.process-connector { display: none; } /* Скрываем коннекторы для упрощенной верстки */
.services-cta { padding: 80px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%); text-align: center; }
.services-cta h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.services-cta p { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; }

/* 6. СТИЛИ СТРАНИЦЫ ПРЕИМУЩЕСТВ (из benefits-styles.css) */
.benefits-hero { padding: 150px 0 80px; background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%); text-align: center; }
.key-metrics { padding: 80px 0; background: var(--dark-bg); }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; }
.metric-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.metric-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.metric-icon { margin-bottom: 24px; }
.metric-card h3 { font-size: 24px; margin-bottom: 16px; color: var(--text-light); }
.metric-card p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.metric-details ul { list-style: none; padding: 0; text-align: left; }
.metric-details li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-muted); font-size: 14px; }
.metric-details li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); }
.business-impact { padding: 80px 0; background: var(--light-bg); }
.impact-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; }
.impact-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; transition: all 0.3s; }
.impact-card:hover { transform: scale(1.02); border-color: var(--primary-color); }
.impact-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.impact-header h3 { font-size: 24px; color: var(--text-light); }
.impact-card p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat .stat-value { display: block; font-size: 28px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.stat .stat-label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.roi-calculator { padding: 80px 0; background: var(--dark-bg); }
.calculator-wrapper { max-width: 800px; margin: 60px auto 0; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; }
.calculator-inputs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.input-group { display: flex; flex-direction: column; }
.input-group label { color: var(--text-muted); margin-bottom: 8px; font-size: 14px; }
.input-group input { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 212, 255, 0.2); border-radius: 10px; padding: 12px 16px; color: var(--text-light); font-size: 16px; transition: all 0.3s; }
.input-group input:focus { outline: none; border-color: var(--primary-color); background: rgba(255, 255, 255, 0.08); }
.calculator-results { background: rgba(0, 212, 255, 0.05); border-radius: 15px; padding: 30px; }
.calculator-results h3 { font-size: 20px; margin-bottom: 24px; color: var(--primary-color); }
.result-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(0, 212, 255, 0.1); }
.result-label { color: var(--text-muted); }
.result-value { font-size: 20px; font-weight: 600; color: var(--text-light); }
.result-total { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 2px solid var(--primary-color); }
.result-total .result-label { font-size: 18px; font-weight: 600; color: var(--text-light); }
.result-total .result-value { font-size: 28px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.success-stories { padding: 80px 0; background: var(--light-bg); }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; }
.story-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; transition: all 0.3s; }
.story-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.story-header { display: flex; justify-content: space-between; margin-bottom: 24px; }
.company-type { color: var(--primary-color); font-weight: 600; }
.company-size { color: var(--text-muted); font-size: 14px; }
.story-card blockquote { font-size: 18px; line-height: 1.6; color: var(--text-light); margin: 0 0 24px 0; font-style: italic; }
.story-results { display: flex; flex-direction: column; gap: 12px; }
.story-results .result { color: var(--text-muted); font-size: 14px; padding: 8px 12px; background: rgba(0, 212, 255, 0.1); border-radius: 20px; text-align: center; }
.long-term-benefits { padding: 80px 0; background: var(--dark-bg); }
.timeline-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; position: relative; }
.timeline-item { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; position: relative; margin-top: 20px;}
.timeline-marker { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: white; padding: 8px 20px; border-radius: 20px; font-weight: 600; font-size: 14px; }
.timeline-item h3 { font-size: 24px; margin-bottom: 20px; color: var(--text-light); }
.timeline-item ul { list-style: none; padding: 0; }
.timeline-item li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-muted); }
.timeline-item li::before { content: '→'; position: absolute; left: 0; color: var(--primary-color); }
.benefits-cta { padding: 80px 0; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%); text-align: center; }
.benefits-cta h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.benefits-cta p { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; }

/* 7. СТИЛИ СТРАНИЦ ПОЛИТИК (из policy-styles.css) */
.policy-page { padding: 120px 0 80px; min-height: 100vh; background: var(--dark-bg); }
.policy-content { max-width: 800px; margin: 0 auto; background: var(--light-bg); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 60px; }
.policy-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 16px; }
.policy-date { color: var(--text-muted); font-size: 16px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0, 212, 255, 0.1); }
.policy-section { margin-bottom: 48px; }
.policy-section h2 { font-size: 28px; font-weight: 600; margin-bottom: 20px; color: var(--text-light); position: relative; padding-left: 20px; }
.policy-section h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 24px; background: var(--gradient); border-radius: 2px; }
.policy-section h3 { font-size: 20px; font-weight: 600; margin-top: 24px; margin-bottom: 12px; color: var(--primary-color); }
.policy-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.policy-section ul { list-style: none; padding-left: 0; margin-bottom: 20px; }
.policy-section ul li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text-muted); line-height: 1.6; }
.policy-section ul li::before { content: '▸'; position: absolute; left: 0; color: var(--primary-color); font-size: 18px; }
.policy-section a { color: var(--primary-color); }
.contact-info-box { background: rgba(0, 212, 255, 0.05); border: 1px solid rgba(0, 212, 255, 0.2); border-radius: 12px; padding: 24px; margin-top: 20px; }
.cookie-table { margin-top: 24px; overflow-x: auto; border-radius: 12px; border: 1px solid rgba(0, 212, 255, 0.2); }
.cookie-table table { width: 100%; border-collapse: collapse; }
.cookie-table th, .cookie-table td { padding: 16px; text-align: left; border-bottom: 1px solid rgba(0, 212, 255, 0.1); }
.cookie-table th { background: rgba(0, 212, 255, 0.05); color: var(--primary-color); font-weight: 600; font-size: 14px; text-transform: uppercase; }
.cookie-table td { color: var(--text-muted); font-size: 15px; }

/* 8. СТИЛИ СТРАНИЦЫ "СПАСИБО" (thank-you.html) */
.thank-you-page { min-height: calc(100vh - 125px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.thank-you-container { max-width: 600px; text-align: center; animation: fadeInScale 0.6s ease; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.success-icon { margin-bottom: 40px; animation: successPulse 2s ease infinite; }
@keyframes successPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.thank-you-title { font-size: clamp(32px, 5vw, 48px); font-weight: 700; margin-bottom: 24px; }
.thank-you-message { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.next-steps { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 20px; padding: 40px; margin-bottom: 40px; }
.next-steps h3 { font-size: 24px; margin-bottom: 20px; }
.step-list { list-style: none; text-align: left; padding: 0; }
.step-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; color: var(--text-muted); }
.step-number { flex-shrink: 0; width: 30px; height: 30px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; }
.contact-reminder { margin-top: 40px; font-size: 16px; color: var(--text-muted); }


/* 9. ПОДВАЛ */
.footer { padding: 40px 0; background: var(--dark-bg); border-top: 1px solid rgba(0, 212, 255, 0.1); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.footer-brand .logo { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover, .footer-links a.active { color: var(--primary-color); }


/* 10. УВЕДОМЛЕНИЯ И АНИМАЦИИ */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(15, 21, 37, 0.98); backdrop-filter: blur(10px); border-top: 1px solid rgba(0, 212, 255, 0.2); padding: 20px; z-index: 1000; transform: translateY(100%); transition: transform 0.3s ease; }
.cookie-consent.show { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content p { flex: 1; margin: 0; color: var(--text-muted); }
.btn-accept { background: var(--gradient); color: white; border: none; padding: 10px 24px; border-radius: 30px; cursor: pointer; font-weight: 600; }
.cookie-link { color: var(--primary-color); text-decoration: none; margin-left: 10px; }

.notification { position: fixed; top: 90px; right: 20px; background: var(--light-bg); color: var(--text-light); padding: 16px 24px; border-radius: 10px; border: 1px solid var(--primary-color); transform: translateX(calc(100% + 20px)); transition: transform 0.3s ease; z-index: 1001; max-width: 300px; }
.notification.show { transform: translateX(0); }
.notification-error { border-color: #ff4444; background: rgba(255, 68, 68, 0.1); }

.animate-in { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* 11. АДАПТИВНЫЙ ДИЗАЙН */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .service-detail { grid-template-columns: 1fr; gap: 40px; }
    .service-detail.reverse { direction: ltr; }
    .service-visual { max-width: 400px; margin: 0 auto; }
    .process-timeline { grid-template-columns: 1fr; gap: 20px; }
    .process-section::before { display: none; }
}
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { max-width: 300px; margin: 0 auto; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .benefits-hero, .services-hero { padding: 120px 0 60px; }
    .metrics-grid, .impact-areas, .stories-grid, .timeline-benefits { grid-template-columns: 1fr; }
    .cookie-table thead { display: none; }
    .cookie-table tr { display: block; margin-bottom: 20px; border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 8px; padding: 16px; }
    .cookie-table td { display: block; border: none; position: relative; padding-left: 50%; text-align: right; }
    .cookie-table td::before { content: attr(data-label); position: absolute; left: 16px; width: 45%; padding-right: 10px; white-space: nowrap; text-align: left; color: var(--primary-color); font-weight: 600; }
}
