/* Глобальные переменные */
:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --neon: #06b6d4;
    --light: #f8fafc;
    --text: #e2e8f0;
    --text-secondary: #94a3b8;
    --success: #10b981;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --glass: rgba(15, 23, 42, 0.7);
    --radius: 16px;
    --radius-lg: 24px;
    --border: 1px solid rgba(148, 163, 184, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, #0c1220 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--light);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--accent) 0%, var(--neon) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn:hover:after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
}

section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 48px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title span {
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    border-radius: 2px;
}

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

/* Глобальные анимации */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: var(--border);
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    color: var(--neon);
}

.logo-tagline {
    font-size: 14px;
    margin-left: 10px;
    color: var(--neon);
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--neon);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light);
    z-index: 1001;
}

.header-contacts {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contacts a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.header-contacts a:hover {
    color: var(--neon);
}

.header-contacts a i {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 200px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
    z-index: -1;
}

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

.hero h1 {
    font-size: 64px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 50px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    justify-content: center;
}

.hero-image-inner {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-inner:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%),
            repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(59, 130, 246, 0.05) 10px,
                    rgba(59, 130, 246, 0.05) 20px
            );
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.hero-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
}

.data-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.data-point {
    text-align: center;
}

.data-point-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.data-point-label {
    font-size: 18px;
    color: var(--text-secondary);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Наш подход Section */
.approach {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
    overflow: hidden;
}

.approach:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.approach-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

.approach-image {
    flex: 1;
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border);
}

.approach-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.approach-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.approach-image-content i {
    font-size: 80px;
    color: var(--neon);
    margin-bottom: 20px;
    animation: pulse-icon 2s infinite;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.approach-stat {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius);
    padding: 30px;
    border: var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.approach-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.approach-stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    z-index: -1;
}

.approach-stat i {
    font-size: 40px;
    color: var(--neon);
    margin-bottom: 20px;
}

.approach-stat h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.approach-features {
    margin-top: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: var(--radius);
    border: var(--border);
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Services */
.services {
    position: relative;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,70 Q50,10 100,70 L100,100 L0,100 Z" fill="rgba(30,41,59,0.3)"/></svg>');
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    z-index: -1;
}

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

.service-header {
    padding: 40px 30px 30px;
    border-bottom: var(--border);
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--neon);
    border: var(--border);
}

.service-content {
    padding: 30px;
}

.service-content ul {
    list-style: none;
    margin: 25px 0;
}

.service-content ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: center;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--neon);
    position: absolute;
    left: 0;
    top: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 25px 0;
}

.service-price span {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: normal;
}

.service-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Databases Section */
.databases {
    position: relative;
}

.databases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.database-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.database-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.database-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}

.database-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.database-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.database-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.database-image-content i {
    font-size: 60px;
    color: var(--neon);
    margin-bottom: 20px;
}

.database-content {
    padding: 30px;
}

.database-stats {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    padding-top: 25px;
    border-top: var(--border);
}

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

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.database-footer {
    padding: 0 30px 30px;
}

/* Cases Section */
.cases {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.case-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.case-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.case-image-content i {
    font-size: 60px;
    color: var(--neon);
    margin-bottom: 20px;
}

.case-content {
    padding: 30px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    padding-top: 25px;
    border-top: var(--border);
}

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

.case-stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.case-stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.case-footer {
    padding: 0 30px 30px;
}

/* Blog Section */
.blog {
    position: relative;
}

.blog:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,30 Q50,100 100,30 L100,100 L0,100 Z" fill="rgba(30,41,59,0.3)"/></svg>');
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;

}

.blog-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-meta i {
    margin-right: 8px;
    color: var(--neon);
}

.blog-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    min-height: auto;
}

.blog-excerpt {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.blog-footer {
    padding: 0 30px 30px;
}

/* FAQ Section */
.faq {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius);
    border: var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
}

.faq-question i {
    transition: var(--transition);
    color: var(--neon);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer-content {
    padding: 0 0 25px;
    color: var(--text-secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Form */
.contact {
    position: relative;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    box-shadow: var(--shadow);
}

.contact .section-title {
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(15, 23, 42, 0.5);
    border: var(--border);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    transition: var(--transition);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-note {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-secondary);
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius);
    border: var(--border);
}

.timer i {
    color: var(--neon);
    font-size: 24px;
}

.timer span {
    font-size: 18px;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--secondary);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--neon);
}

.footer-col ul li a i {
    width: 24px;
    color: var(--neon);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 50%;
    color: var(--text);
    font-size: 20px;
    transition: var(--transition);
    border: var(--border);
}

.social-links a:hover {
    background: linear-gradient(90deg, var(--accent), var(--neon));
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    border-top: var(--border);
    font-size: 16px;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .blog-hero h1 {
        font-size: 56px;
    }
    .hero h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 42px;
    }

    .approach-container {
        flex-direction: column;
    }

    .approach-image {
        width: 100%;
        height: 400px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .blog-hero {
        padding: 180px 0 80px;
    }

    .blog-hero h1 {
        font-size: 48px;
    }

    .blog-hero p {
        font-size: 20px;
    }
    .hero {
        padding: 180px 0 100px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .data-point-value {
        font-size: 36px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    nav ul.active {
        right: 0;
    }

    .header-container {
        padding: 15px 0;
    }

    .header-contacts {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .blog-hero {
        padding: 150px 0 60px;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-hero p {
        font-size: 18px;
    }
    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 40px 30px;
    }

    .hero-image-inner {
        height: 300px;
    }

    .data-points {
        gap: 30px;
    }

    .approach-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 36px;
    }
    .blog-content-inner,
    .blog-footer,
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .databases-grid,
    .cases-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-header,
    .service-content,
    .service-footer,
    .database-content,
    .database-footer,
    .case-content,
    .case-footer,
    .blog-content,
    .blog-footer {
        padding: 25px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }
}












/* Основные стили блока */
.hero-image {
    margin-top: 40px;
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    justify-content: center;
    height: 500px; /* Фиксированная высота для всего блока */
}

.hero-image-inner {
    width: 100%;
    height: 100%; /* Заполняем родительский контейнер */
    border-radius: var(--radius);
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Распределяем пространство между элементами */
}

/* Стили для живой статистики - подняты выше */
.live-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0; /* Уменьшен отступ */
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: var(--radius);
    padding: 25px 30px;
    text-align: center;
    min-width: 180px;
    border: var(--border);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Контейнер для графика - не выходит за границы */
.graph-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px; /* Добавлен отступ снизу */
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius);
    border: var(--border);
    backdrop-filter: blur(5px);
    flex-shrink: 0; /* Предотвращает сжатие */
}

.live-graph {
    width: 100%;
    height: 120px;
}

.graph-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-in-out;
}

.pulsating-dot {
    transition: all 1s ease;
}

/* Анимация обновления значений */
.value-updating {
    animation: valuePulse 0.5s ease;
}

@keyframes valuePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Новая анимация фона */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    filter: blur(1px);
    animation: floatParticle 15s infinite linear;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
    background: rgba(59, 130, 246, 0.4);
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: 2s;
    background: rgba(6, 182, 212, 0.4);
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 40%;
    animation-duration: 25s;
    animation-delay: 5s;
    background: rgba(59, 130, 246, 0.3);
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 7s;
    background: rgba(6, 182, 212, 0.3);
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 60%;
    animation-duration: 22s;
    animation-delay: 10s;
    background: rgba(59, 130, 246, 0.4);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

/* Анимированная сетка */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.3;
    animation: gridMove 20s infinite linear;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* Пульсирующая сфера */
.bg-orb {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: orbPulse 8s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(0, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(0, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Обновляем стиль основного фона */
.hero-image-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
            linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
    z-index: 0;
    animation: bgPulse 10s infinite ease-in-out;
}

@keyframes bgPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-image {
        height: 450px; /* Уменьшаем высоту на мобильных */
        padding: 20px;
    }

    .live-stats {
        gap: 20px;
        margin: 20px 0;
    }

    .stat-card {
        padding: 20px;
        min-width: 140px;
    }

    .stat-value {
        font-size: 28px;
    }

    .graph-container {
        padding: 15px;
        margin-bottom: 10px;
    }

    .live-graph {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .hero-image {
        height: 500px; /* Увеличиваем высоту для вертикального расположения */
    }

    .live-stats {
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .stat-card {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }

    .hero-image-content {
        justify-content: flex-start; /* Изменяем выравнивание для мобильных */
    }
}
