.seo-text-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    padding: 120px 60px;
    overflow: hidden;
    box-sizing: border-box;
}

.seo-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.seo-text-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.seo-text-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.seo-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.seo-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--text-dark) 0%, transparent 100%);
    animation: expandLine 1s ease-out 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.seo-text-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #444;
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.seo-text-content p:nth-child(2) {
    animation-delay: 0.4s;
}

.seo-text-content p:nth-child(3) {
    animation-delay: 0.6s;
}

.seo-text-content p:nth-child(4) {
    animation-delay: 0.8s;
}

.seo-text-content p:nth-child(5) {
    animation-delay: 1s;
}

.seo-text-content p:nth-child(6) {
    animation-delay: 1.2s;
}

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

/* Декоративные элементы */
.seo-text-content::before {
    content: 'BLOG';
    position: absolute;
    top: -60px;
    left: -100px;
    font-size: 200px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: -8px;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.seo-text-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Эффект при наведении на параграфы */
.seo-text-content p {
    transition: transform 0.3s ease, color 0.3s ease;
    padding-left: 0;
    position: relative;
}

.seo-text-content p::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--text-dark);
    transition: height 0.3s ease;
    opacity: 0;
}

.seo-text-content p:hover {
    transform: translateX(10px);
    color: var(--text-dark);
}

.seo-text-content p:hover::before {
    height: 100%;
    opacity: 0.3;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .seo-text-section {
        padding: 100px 40px;
    }
    
    .seo-title {
        font-size: 42px;
    }
    
    .seo-text-content::before {
        font-size: 150px;
        left: -50px;
        top: -40px;
    }
    
    .seo-text-content::after {
        right: -100px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .seo-text-section {
        padding: 80px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .seo-title {
        font-size: 32px;
        margin-bottom: 40px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .seo-text-content p {
        font-size: 16px;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .seo-text-content::before {
        font-size: 100px;
        left: -30px;
        top: -20px;
    }
    
    .seo-text-content::after {
        display: none;
    }
    
    .seo-text-content p:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .seo-text-section {
        padding: 60px 15px;
    }
    
    .seo-title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .seo-text-content p {
        font-size: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .seo-text-content::before {
        font-size: 80px;
    }
}



