/* Новая цветовая палитра КЦ Логика */
:root {
    --background-color: #F6F3EF;     /* Бумажно-бежевый (газетный) фон */
    --heading-color: #2C2C2C;        /* Чёрный/тёмно-графитовый для заголовков */
    --text-color: #4A4A4A;           /* Тёмно-серый для основного текста */
    --line-color: #D8D8D8;           /* Светло-серый для линий/иконок */
    --accent-color: #C8DF5D;         /* Яблочно-зелёный акцент */
    --accent-secondary: #8C2F39;     /* Бордовый дополнительный акцент */
    --accent-tertiary: #734F2A;      /* Тёплый коричневый дополнительный акцент */
    
    /* Шрифты */
    --font-primary: 'Graphik LCG', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Graphik LCG', sans-serif;
    
    /* Совместимость со старыми переменными */
    --primary-color: var(--accent-color);
    --secondary-color: var(--accent-secondary);
    --dark-blue: var(--heading-color);
    --light-gray: var(--background-color);
    --medium-gray: var(--text-color);
    --success-color: var(--accent-color);
    --white: #FFFFFF;
}

/* Дополнительные стили для Graphik LCG */
@font-face {
    font-family: 'Graphik LCG';
    src: url('https://cdn.rawgit.com/mfd/e7842774e037edf15919037594a79b2b/raw/665bdfc532094318449f1010323c84013d5af953/graphik.css') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Глобальные стили для использования Graphik LCG */
body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, span, div, a, li {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Дополнительные стили для улучшения типографики */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-link, .breadcrumb-item {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section с частицами */
.corporate-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    min-height: 45vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 184, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: var(--text-secondary);
}

.hero-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, #E3F2FD 100%);
    padding: 2rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.horizontal-breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.horizontal-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.horizontal-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin: 0 0.5rem;
    color: var(--medium-gray);
    font-weight: bold;
    font-size: 1.2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--medium-gray);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.corporate-content {
    position: relative;
}

.content-wrapper {
    position: relative;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--heading-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title i {
    margin-right: 1rem;
    font-size: 1.8rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* Key Points Grid */
.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.key-point-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
}

.key-point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.key-point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.key-point-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.key-point-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* Timeline */
.timeline-section {
    background: var(--background-color);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: var(--white);
}

.timeline-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -20px;
    left: auto;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -20px;
}

/* Company Info Cards */
.company-info-section {
    background: var(--light-gray);
    padding: 4rem 0;
    margin: 3rem 0;
}

.info-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.card-header h4 {
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.card-body {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    width: 20px;
}

.info-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.3rem;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.fab-menu.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fab-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.fab-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-slideInUp {
    animation: slideInUp 0.8s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-content::after {
        left: -10px !important;
        right: auto !important;
        border-right-color: var(--white) !important;
        border-left-color: transparent !important;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .key-point-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 3rem !important;
    }
}

/* Print Styles */
@media print {
    .floating-contact,
    .reading-progress {
        display: none !important;
    }
    
    .corporate-content {
        font-size: 12pt;
        line-height: 1.5;
        color: black !important;
    }
    
    .corporate-content h1,
    .corporate-content h2,
    .corporate-content h3 {
        color: black !important;
    }
}

/* ===== НОВЫЕ СТИЛИ ДЛЯ БЛОКОВ СТРАНИЦ ===== */

/* About Company Section */
.about-company-section {
    padding: 2rem 0;
}

.team-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.team-info h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.team-info h5 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-info p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.achievements-section {
    background: linear-gradient(135deg, var(--light-gray), #F1F3F4);
    border-radius: 20px;
    padding: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-text h5 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-text p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.principle-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

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

.principle-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.15);
    border-left-color: var(--accent-color);
}

.partner-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.work-process {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-content {
    flex: 1;
}

.service-content h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.solution-card {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.solution-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-header i {
    font-size: 2rem;
}

.solution-header h4 {
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
}

.solution-body {
    padding: 2rem;
}

.solution-body p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-benefits {
    list-style: none;
    padding: 0;
}

.solution-benefits li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.technologies-section {
    background: var(--background-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item span {
    color: var(--text-color);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-buttons .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Consulting Section */
.consulting-section {
    padding: 2rem 0;
}

.consulting-services {
    margin-top: 2rem;
}

.consulting-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.consulting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

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

.consulting-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.consulting-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.consulting-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.consulting-features li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.consulting-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.alcohol-consulting {
    margin-top: 2rem;
}

.specialty-card {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.specialty-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.specialty-header i {
    font-size: 2rem;
}

.specialty-header h4 {
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.specialty-content {
    padding: 2rem;
}

.specialty-content h5 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.specialty-content ul {
    list-style: none;
    padding: 0;
}

.specialty-content li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.specialty-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.consulting-process {
    margin-top: 2rem;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline .timeline-item {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.3s ease;
}

.process-timeline .timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.process-timeline .timeline-marker {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-timeline .timeline-content h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.process-timeline .timeline-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-details {
    padding: 0.8rem 1.2rem;
    background: var(--background-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timeline-details span {
    color: var(--medium-gray);
    font-style: italic;
    font-size: 0.9rem;
}

.pricing-info {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.pricing-content .lead {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-factors {
    margin: 2rem 0;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.factor-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.factor-item span {
    color: var(--text-color);
}

.pricing-benefits h4 {
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    height: 100%;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.consulting-cta {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.consulting-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.consulting-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-note {
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contacts Section */
.contacts-section {
    padding: 2rem 0;
}

.contact-card {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-header i {
    font-size: 2rem;
}

.contact-header h4 {
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-content {
    padding: 2rem;
}

.contact-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-note i {
    color: var(--primary-color);
}

.contact-note span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-coordinates {
    margin: 1rem 0;
    padding: 0.8rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-family: monospace;
}

.contact-actions {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.requisites-card, .banking-card {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.requisites-card:hover, .banking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.requisites-header, .banking-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.requisites-header i, .banking-header i {
    font-size: 1.5rem;
}

.requisites-header h4, .banking-header h4 {
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
}

.requisites-content, .banking-content {
    padding: 2rem;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.requisite-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.requisite-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.requisite-value {
    color: var(--text-color);
    font-weight: 600;
    font-family: monospace;
}

.management-card {
    background: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.1);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.15);
}

.management-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.management-info h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.management-info h5 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.management-info p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, var(--accent-color), #A8D44A);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-social {
    margin-top: 2rem;
}

.contact-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive для новых блоков */
@media (max-width: 768px) {
    .team-card, .management-card {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline .timeline-marker {
        left: -20px;
        width: 40px;
        height: 40px;
    }
    
    .process-timeline .timeline-item {
        padding-left: 3rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
         .achievement-item {
         flex-direction: column;
         text-align: center;
     }
     
     .partners-grid {
         grid-template-columns: 1fr;
     }
     
     /* Hero Section адаптивность */
     .corporate-hero {
         min-height: 35vh;
         padding: 2rem 0;
     }
     
     .hero-title {
         font-size: 2rem;
         margin-bottom: 0.8rem;
     }
     
     .hero-subtitle {
         font-size: 1.1rem;
         margin-bottom: 1rem;
     }
     
     .hero-intro {
         font-size: 0.95rem;
         margin-bottom: 1rem;
     }
     
     .hero-stats {
         gap: 1.5rem;
         margin-top: 1rem;
         flex-wrap: wrap;
         justify-content: center;
     }
     
     .stat-number {
         font-size: 1.8rem;
     }
     
     .stat-label {
         font-size: 0.8rem;
     }
}

/* About Company Story Styles */
.company-story-section {
    padding: 3rem 0;
}

.story-content {
    padding-right: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.directions-block {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(200, 223, 93, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

.directions-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.direction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: var(--transition);
}

.direction-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.direction-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #A8D44A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(200, 223, 93, 0.3);
}

.direction-item span {
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.customers-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(140, 47, 57, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-secondary);
}

.customers-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Achievements Timeline */
.achievements-timeline {
    margin-top: 3rem;
    position: relative;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color) 0%, var(--accent-secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item.highlighted::before {
    background: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--secondary-color), 0 0 20px rgba(0, 74, 173, 0.4);
    animation: pulse 2s infinite;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item.highlighted .timeline-year {
    color: var(--secondary-color);
}

.timeline-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Visual Elements */
.visual-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 1rem;
}

/* Animated Stats Circle */
.stats-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.circle-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.circle-label {
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

.circle-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring {
    transition: stroke-dashoffset 2s ease-in-out;
    animation: progress-animation 3s ease-in-out infinite;
}

@keyframes progress-animation {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 70; }
    100% { stroke-dashoffset: 283; }
}

/* IT Status Badge */
.it-status-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.2);
    position: relative;
    overflow: hidden;
}

.it-status-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.badge-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Geographic Coverage */
.coverage-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(200, 223, 93, 0.1) 100%);
    padding: 1.2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.coverage-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.coverage-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .visual-elements {
        padding-left: 0;
        align-items: center;
    }
    
    .achievements-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 3px;
        width: 20px;
        height: 20px;
    }
    
    .direction-item {
        padding: 1rem;
    }
    
    .stats-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-number {
        font-size: 2rem;
    }
} 

/* === Креативные анимации для карточек видов деятельности === */
.activity-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* 3D-вращающиеся частицы для IT-консалтинга */
.pulse-dots {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}
.pulse-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    animation: particle-3d 2s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(139, 195, 74, 0.4);
}
.pulse-dots span:nth-child(1) {
    animation-delay: 0s;
    transform: rotateY(0deg);
}
.pulse-dots span:nth-child(2) {
    animation-delay: 0.6s;
    transform: rotateY(120deg);
}
.pulse-dots span:nth-child(3) {
    animation-delay: 1.2s;
    transform: rotateY(240deg);
}
@keyframes particle-3d {
    0%, 100% { 
        transform: rotateY(0deg) scale(1) translateZ(0);
        opacity: 0.8;
    }
    50% { 
        transform: rotateY(180deg) scale(1.5) translateZ(20px);
        opacity: 1;
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
    }
}

/* Градиентные волны для баз данных */
.sparkle-squares {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}
.sparkle-squares span {
    display: block;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-green));
    border-radius: 3px;
    animation: gradient-wave 2.5s infinite;
    box-shadow: 0 0 10px rgba(0, 74, 173, 0.3);
}
.sparkle-squares span:nth-child(1) {
    animation-delay: 0s;
}
.sparkle-squares span:nth-child(2) {
    animation-delay: 0.8s;
}
.sparkle-squares span:nth-child(3) {
    animation-delay: 1.6s;
}
@keyframes gradient-wave {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-green));
    }
    25% { 
        transform: scale(1.3) rotate(90deg);
        background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    }
    50% { 
        transform: scale(1.6) rotate(180deg);
        background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    }
    75% { 
        transform: scale(1.3) rotate(270deg);
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-green));
    }
}

/* Пульсирующие кольца для обслуживания оборудования */
.gear-spin {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    animation: gear-pulse 3s infinite;
}
.gear-spin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: ring-pulse 2s infinite;
}
.gear-spin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-green);
    border-radius: 50%;
    animation: ring-pulse 2s infinite 0.5s;
}
@keyframes gear-pulse {
    0%, 100% { 
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-50%) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}
@keyframes ring-pulse {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Бегущий код с эффектом печатной машинки */
.code-lines {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.code-lines span {
    display: block;
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-color));
    border-radius: 2px;
    animation: typewriter 1.5s infinite;
    box-shadow: 0 0 8px rgba(139, 195, 74, 0.4);
}
.code-lines span:nth-child(1) {
    animation-delay: 0s;
}
.code-lines span:nth-child(2) {
    animation-delay: 0.5s;
}
.code-lines span:nth-child(3) {
    animation-delay: 1s;
}
@keyframes typewriter {
    0% { 
        width: 0;
        opacity: 0;
    }
    50% { 
        width: 25px;
        opacity: 1;
    }
    100% { 
        width: 0;
        opacity: 0;
    }
}

/* Всплывающие пузыри с градиентом */
.bubble-circles {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}
.bubble-circles span {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    animation: bubble-float 3s infinite;
    box-shadow: 0 0 15px rgba(139, 195, 74, 0.3);
}
.bubble-circles span:nth-child(1) {
    animation-delay: 0s;
}
.bubble-circles span:nth-child(2) {
    animation-delay: 1s;
}
.bubble-circles span:nth-child(3) {
    animation-delay: 2s;
}
@keyframes bubble-float {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
        background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    }
    50% { 
        transform: translateY(-25px) scale(1.3);
        opacity: 1;
        background: linear-gradient(45deg, var(--accent-color), var(--primary-green));
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    }
    100% { 
        transform: translateY(-40px) scale(0.8);
        opacity: 0;
        background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    }
}

/* Дополнительные креативные эффекты */
.activity-card {
    position: relative;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.1);
}

.activity-icon {
    text-align: center;
    margin-bottom: 20px;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(139, 195, 74, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.activity-card:hover::before {
    opacity: 1;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .activity-icon-container {
        height: 60px;
    }
    
    .pulse-dots, .sparkle-squares, .code-lines, .bubble-circles {
        left: 50px;
    }
    
    .gear-spin {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .gear-spin::before {
        width: 50px;
        height: 50px;
    }
    
    .gear-spin::after {
        width: 35px;
        height: 35px;
    }
} 

/* Дополнительные креативные фоновые эффекты */

/* Фоновые частицы для IT-консалтинга */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 4s infinite ease-in-out;
}

.bg-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.bg-particles .particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.3s;
}

.bg-particles .particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 2.6s;
}

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.5);
        opacity: 0.8;
    }
}

/* Волновой эффект для баз данных */
.wave-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.wave-effect .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: wave-expand 3s infinite;
}

.wave-effect .wave:nth-child(1) {
    animation-delay: 0s;
}

.wave-effect .wave:nth-child(2) {
    animation-delay: 1s;
}

.wave-effect .wave:nth-child(3) {
    animation-delay: 2s;
}

@keyframes wave-expand {
    0% { 
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% { 
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Вращающиеся кольца для обслуживания */
.rotating-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.rotating-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    animation: ring-rotate 4s linear infinite;
}

.rotating-rings .ring:nth-child(1) {
    animation-delay: 0s;
}

.rotating-rings .ring:nth-child(2) {
    width: 60px;
    height: 60px;
    animation-delay: 1.3s;
    animation-direction: reverse;
}

.rotating-rings .ring:nth-child(3) {
    width: 80px;
    height: 80px;
    animation-delay: 2.6s;
}

@keyframes ring-rotate {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Матричный дождь для разработки ПО */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.matrix-rain .matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    animation: matrix-fall 3s infinite linear;
}

.matrix-rain .matrix-column:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.matrix-rain .matrix-column:nth-child(2) {
    left: 60%;
    animation-delay: 1s;
}

.matrix-rain .matrix-column:nth-child(3) {
    left: 90%;
    animation-delay: 2s;
}

@keyframes matrix-fall {
    0% { 
        top: -100%;
        opacity: 1;
    }
    100% { 
        top: 100%;
        opacity: 0;
    }
}

/* Пульсирующие точки для монтажа */
.pulse-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.pulse-points .point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: point-pulse 2s infinite;
}

.pulse-points .point:nth-child(1) {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.pulse-points .point:nth-child(2) {
    top: -20px;
    right: -20px;
    animation-delay: 0.7s;
}

.pulse-points .point:nth-child(3) {
    bottom: -20px;
    left: 0;
    animation-delay: 1.4s;
}

@keyframes point-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.8);
        opacity: 1;
        box-shadow: 0 0 15px var(--accent-color);
    }
}

/* Геометрические фигуры для инжиниринга */
.geometric-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.geometric-shapes .shape {
    position: absolute;
    animation: shape-float 4s infinite ease-in-out;
}

.geometric-shapes .triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid var(--primary-green);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.geometric-shapes .circle {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1.3s;
}

.geometric-shapes .square {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    animation-delay: 2.6s;
}

@keyframes shape-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Соединительные линии для проектов */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.connection-lines .line {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-color));
    height: 2px;
    animation: line-grow 3s infinite;
}

.connection-lines .line:nth-child(1) {
    width: 30px;
    top: 20px;
    left: 20px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-lines .line:nth-child(2) {
    width: 25px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
    animation-delay: 1s;
}

.connection-lines .line:nth-child(3) {
    width: 35px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 2s;
}

@keyframes line-grow {
    0% { 
        width: 0;
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        width: 100%;
        opacity: 0;
    }
}

/* Дополнительные стили для Graphik LCG */
.container {
    font-family: var(--font-primary);
}

.card {
    font-family: var(--font-primary);
}

.navbar {
    font-family: var(--font-primary);
}

.footer {
    font-family: var(--font-primary);
}

/* Улучшенная типографика для всех текстовых элементов */
.text-muted {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.lead {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.small {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Стили для форм */
.form-control, .form-select {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.form-label {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Стили для таблиц */
.table {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.table th {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Стили для модальных окон */
.modal-title {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.modal-body {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
} 