/* Remote Proof-Reading Network Template - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-color: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  
  --secondary-color: #ec4899;
  --secondary-light: #f9a8d4;
  --secondary-dark: #be185d;
  
  --accent-color: #10b981;
  --accent-light: #6ee7b7;
  --accent-dark: #047857;
  
  --warning-color: #f59e0b;
  --warning-light: #fcd34d;
  --warning-dark: #d97706;
  
  --info-color: #06b6d4;
  --info-light: #67e8f9;
  --info-dark: #0891b2;
  
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
    overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header */
#header {
  background: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-light) 100%);
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 20%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  background: var(--secondary-light);
}

/* Services Section */
#services {
  padding: 80px 0;
  background: var(--bg-light);
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* About Section */
#about {
  padding: 80px 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Features Section */
#features {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
}

.price-card {
  background: var(--bg-white);
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team Section */
#team {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
}

.review-card {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  padding: 80px 0;
  background: var(--bg-light);
}

.case-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

/* Process Section */
#process {
  padding: 80px 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background: var(--bg-light);
}

.timeline-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color);
}

/* Career Section */
#career {
  padding: 80px 0;
}

.career-card {
  background: var(--bg-white);
  border: 1px solid var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background: var(--bg-light);
}

.info-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 100%;
}

/* Contact Section */
#contact {
  padding: 80px 0;
}

.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background: var(--bg-light);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  margin-top: 40px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Additional Pages Breadcrumb */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--bg-light);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: glass
 * Toggle: 3
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * OptimizedCookieManager Styles
 * Уникальные классы с префиксом ocm- для избежания конфликтов
 * Все стили с !important для гарантированного применения
 */

/* ===== БАЗОВЫЕ СТИЛИ ===== */
.ocm-banner {
    position: fixed !important;
    z-index: 999999 !important;
    max-width: 400px !important;
    min-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    transform: translateY(100px) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden !important;
}

.ocm-banner.ocm-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ ===== */
.ocm-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-position-bottom-center {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(100px) !important;
}

.ocm-position-bottom-center.ocm-show {
    transform: translateX(-50%) translateY(0) !important;
}

.ocm-position-top-right {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(-100px) !important;
}

.ocm-position-top-right.ocm-show {
    transform: translateY(0) !important;
}

/* ===== СОДЕРЖИМОЕ БАННЕРА ===== */
.ocm-banner-content,
.ocm-settings {
    padding: 24px !important;
}

.ocm-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.ocm-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.ocm-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #666666 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ocm-close:hover {
    background: #f5f5f5 !important;
    color: #333333 !important;
}

.ocm-description {
    margin: 0 0 20px 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

.ocm-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ocm-btn {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.ocm-btn-accept {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-accept:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-reject {
    background: #6c757d !important;
    color: #ffffff !important;
}

.ocm-btn-reject:hover {
    background: #545b62 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-customize {
    background: transparent !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
}

.ocm-btn-customize:hover {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-save {
    background: #28a745 !important;
    color: #ffffff !important;
}

.ocm-btn-save:hover {
    background: #1e7e34 !important;
    transform: translateY(-1px) !important;
}

.ocm-back {
    background: none !important;
    border: none !important;
    color: #007bff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
}

.ocm-back:hover {
    background: #f8f9fa !important;
}

/* ===== НАСТРОЙКИ COOKIE ===== */
.ocm-category {
    margin-bottom: 20px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.ocm-category-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.ocm-category-title {
    font-weight: 500 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
}

.ocm-category-desc {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* ===== ПЕРЕКЛЮЧАТЕЛИ ===== */
.ocm-switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 24px !important;
}

.ocm-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.ocm-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.ocm-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

input:checked + .ocm-slider {
    background-color: #007bff !important;
}

input:checked + .ocm-slider:before {
    transform: translateX(26px) !important;
}

input:disabled + .ocm-slider {
    background-color: #28a745 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ - БАЗОВЫЕ СТИЛИ ===== */
.ocm-toggle {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ TOGGLE КНОПКИ ===== */
.ocm-toggle.ocm-toggle-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-center-left {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
}

.ocm-toggle.ocm-toggle-position-center-right {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
}

/* ===== TOGGLE СТИЛЬ 3: НЕОМОРФНЫЙ ДИЗАЙН ===== */
.ocm-toggle.ocm-toggle-style-3 {
    border-radius: 25px !important;
    background: #e0e5ec !important;
    color: #333 !important;
    box-shadow: 9px 9px 16px #a3b1c6, -9px -9px 16px #ffffff !important;
    width: 60px !important;
    height: 40px !important;
}

.ocm-toggle.ocm-toggle-style-3:hover {
    box-shadow: inset 9px 9px 16px #a3b1c6, inset -9px -9px 16px #ffffff !important;
    transform: scale(0.98) !important;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.ocm-settings-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ocm-policy-link {
    color: #007bff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-bottom: 1px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.ocm-policy-link:hover {
    border-bottom-color: #007bff !important;
}

/* ===== ТЕМА: GLASS ===== */
.ocm-theme-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
}

.ocm-theme-glass .ocm-btn {
    backdrop-filter: blur(10px) !important;
    border-radius: 10px !important;
}

.ocm-theme-glass .ocm-btn-accept {
    background: rgba(0, 123, 255, 0.9) !important;
}

.ocm-theme-glass .ocm-category {
    background: rgba(248, 249, 250, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 480px) {
    .ocm-banner {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-buttons {
        flex-direction: column !important;
    }
    
    .ocm-settings-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ocm-category-header {
        flex-wrap: wrap !important;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes ocm-slideUp {
    from {
        transform: translateY(100%) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes ocm-fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

/* ===== ТЕМНАЯ ТЕМА (медиазапрос) ===== */
@media (prefers-color-scheme: dark) {
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
}
